diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 5510523232..141288e202 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -3807,10 +3807,9 @@ public class Blocks{ recoilAmount = 2f; restitution = 0.03f; range = 110; - shootCone = 3f; - scaledHealth = 180; - rotateSpeed = 2f; - researchCostMultiplier = 0.05f; + shootCone = 50f; + scaledHealth = 210; + rotateSpeed = 3f; coolant = consume(new ConsumeLiquid(Liquids.water, 15f / 60f)); limitRange(); diff --git a/core/src/mindustry/content/ErekirTechTree.java b/core/src/mindustry/content/ErekirTechTree.java index 3a9bf7886e..cd32971c71 100644 --- a/core/src/mindustry/content/ErekirTechTree.java +++ b/core/src/mindustry/content/ErekirTechTree.java @@ -249,18 +249,20 @@ public class ErekirTechTree{ }); }); + node(diffuse, Seq.with(new OnSector(two)), () -> { + node(sublimate, () -> { + //TODO implement + node(titan, Seq.with(new OnSector(five)), () -> { - node(sublimate, () -> { - //TODO implement - node(titan, Seq.with(new OnSector(five)), () -> { + }); - }); - - node(disperse, Seq.with(new OnSector(five)), () -> { + node(disperse, Seq.with(new OnSector(five)), () -> { + }); }); }); + node(radar, Seq.with(new Research(beamNode), new Research(turbineCondenser), new Research(tankFabricator), new OnSector(SectorPresets.two)), () -> { });