From 4e1d9998388ac88ebedf67d39a821f27b1727ea6 Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 7 Dec 2020 15:52:50 -0500 Subject: [PATCH] Rounded up lancer requirements --- core/src/mindustry/content/Blocks.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index b71313a231..4f6d8128ec 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -1515,7 +1515,7 @@ public class Blocks implements ContentList{ }}; lancer = new PowerTurret("lancer"){{ - requirements(Category.turret, with(Items.copper, 50, Items.lead, 50, Items.silicon, 50)); + requirements(Category.turret, with(Items.copper, 60, Items.lead, 70, Items.silicon, 50)); range = 165f; chargeTime = 40f; chargeMaxDelay = 30f; @@ -1548,7 +1548,7 @@ public class Blocks implements ContentList{ }}; arc = new PowerTurret("arc"){{ - requirements(Category.turret, with(Items.copper, 35, Items.lead, 50)); + requirements(Category.turret, with(Items.copper, 50, Items.lead, 50)); shootType = new LightningBulletType(){{ damage = 20; lightningLength = 25; @@ -1602,7 +1602,7 @@ public class Blocks implements ContentList{ }}; salvo = new ItemTurret("salvo"){{ - requirements(Category.turret, with(Items.copper, 105, Items.graphite, 95, Items.titanium, 60)); + requirements(Category.turret, with(Items.copper, 100, Items.graphite, 90, Items.titanium, 60)); ammo( Items.copper, Bullets.standardCopper, Items.graphite, Bullets.standardDense,