From 8433819ffb170b3172975f79acf2ac4b105dd373 Mon Sep 17 00:00:00 2001 From: Shade Date: Sun, 25 May 2025 14:00:27 +0800 Subject: [PATCH] Loader/Unloader Counterbalance 100% CB for Graphite, Silicon Maintaining 50% CB for Tungsten --- core/src/mindustry/content/Blocks.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/mindustry/content/Blocks.java b/core/src/mindustry/content/Blocks.java index 87927e3d7d..29f0c231c4 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -6421,7 +6421,7 @@ public class Blocks{ }}; payloadLoader = new PayloadLoader("payload-loader"){{ - requirements(Category.units, with(Items.graphite, 100, Items.silicon, 140, Items.tungsten, 180)); + requirements(Category.units, with(Items.graphite, 140, Items.silicon, 220, Items.tungsten, 180)); regionSuffix = "-dark"; hasPower = true; consumePower(2f); @@ -6430,7 +6430,7 @@ public class Blocks{ }}; payloadUnloader = new PayloadUnloader("payload-unloader"){{ - requirements(Category.units, with(Items.graphite, 60, Items.silicon, 100, Items.tungsten, 90)); + requirements(Category.units, with(Items.graphite, 80, Items.silicon, 160, Items.tungsten, 90)); regionSuffix = "-dark"; hasPower = true; consumePower(2f);