From 19ca24825c5e66b16edf7c1ffc940892b24ed253 Mon Sep 17 00:00:00 2001 From: Epowerj Date: Tue, 30 Aug 2022 14:05:05 -0400 Subject: [PATCH] Tweaks to surge block research costs --- core/src/mindustry/content/Blocks.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index b87623e80c..b0ad28431c 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -1662,6 +1662,7 @@ public class Blocks{ lightningChance = 0.05f; lightningDamage = 30f; armor = 20f; + researchCost = with(Items.surgeAlloy, 20, Items.tungsten, 100); }}; reinforcedSurgeWallLarge = new Wall("reinforced-surge-wall-large"){{ @@ -1671,6 +1672,7 @@ public class Blocks{ lightningDamage = 30f; armor = 20f; size = 2; + researchCost = with(Items.surgeAlloy, 40, Items.tungsten, 200); }}; carbideWall = new Wall("carbide-wall"){{ @@ -2045,6 +2047,7 @@ public class Blocks{ underBullets = true; baseEfficiency = 1f; consumePower(1f / 60f); + researchCost = with(Items.surgeAlloy, 30, Items.tungsten, 80); }}; surgeRouter = new StackRouter("surge-router"){{