From a86f62cbe8ffa2edb08914bd38ff04a237e01a42 Mon Sep 17 00:00:00 2001 From: Anuken Date: Fri, 6 May 2022 16:00:47 -0400 Subject: [PATCH] Balancing --- core/src/mindustry/content/Blocks.java | 9 ++++++--- core/src/mindustry/content/UnitTypes.java | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 3a2e039d63..fad05f65af 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -2414,7 +2414,7 @@ public class Blocks{ liquidCapacity = 30f * 5; - liquidOutput = new LiquidStack(Liquids.water, 5f / 60f); + liquidOutput = new LiquidStack(Liquids.water, 10f / 60f); generateEffect = Fx.none; @@ -3919,7 +3919,7 @@ public class Blocks{ }} ); - ammoPerShot = 8; + ammoPerShot = 4; maxAmmo = ammoPerShot * 3; targetAir = false; shootShake = 4f; @@ -3969,7 +3969,7 @@ public class Blocks{ requirements(Category.turret, with(Items.carbide, 50, Items.oxide, 150, Items.silicon, 200, Items.beryllium, 350)); ammo(Items.tungsten, new BasicBulletType(){{ - damage = 55; + damage = 60; speed = 8.5f; width = height = 16; shrinkY = 0.3f; @@ -4044,6 +4044,9 @@ public class Blocks{ range = 270f; size = 4; + coolant = consume(new ConsumeLiquid(Liquids.water, 20f / 60f)); + coolantMultiplier = 2.5f; + limitRange(-5f); }}; diff --git a/core/src/mindustry/content/UnitTypes.java b/core/src/mindustry/content/UnitTypes.java index 8aa45e2f60..6146b33d24 100644 --- a/core/src/mindustry/content/UnitTypes.java +++ b/core/src/mindustry/content/UnitTypes.java @@ -3316,7 +3316,7 @@ public class UnitTypes{ velocityRnd = 0.33f; heatColor = Color.red; - bullet = new MissileBulletType(4.2f, 40){{ + bullet = new MissileBulletType(4.2f, 50){{ homingPower = 0.2f; weaveMag = 4; weaveScale = 4;