Many misc sector fixes

This commit is contained in:
Anuken
2024-09-06 15:07:54 -04:00
parent 5bff681096
commit ac8a38d98d
9 changed files with 12 additions and 12 deletions

View File

@@ -44,7 +44,7 @@ public class SectorPresets{
taintedWoods = new SectorPreset("taintedWoods", serpulo, 221){{
captureWave = 32;
difficulty = 4;
difficulty = 5;
}};
craters = new SectorPreset("craters", serpulo, 18){{

View File

@@ -139,7 +139,7 @@ public class SerpuloTechTree{
});
});
node(plastaniumCompressor, Seq.with(new SectorComplete(windsweptIslands)), () -> {
node(plastaniumCompressor, Seq.with(new SectorComplete(windsweptIslands), new OnSector(tarFields)), () -> {
node(phaseWeaver, Seq.with(new SectorComplete(tarFields)), () -> {
});

View File

@@ -61,12 +61,12 @@ public class StatusEffects{
color = Pal.lightishGray;
speedMultiplier = 0.4f;
init(() -> opposite(fast));
init(() -> opposite(fast));
}};
fast = new StatusEffect("fast"){{
color = Pal.boostTo;
speedMultiplier = 1.6f;
color = Pal.boostTo;
speedMultiplier = 1.6f;
init(() -> opposite(slow));
}};
@@ -89,7 +89,7 @@ public class StatusEffects{
opposite(burning, melting);
});
}};
muddy = new StatusEffect("muddy"){{
color = Color.valueOf("46382a");
speedMultiplier = 0.94f;