From b8d7c64a5fbfa070ca70ff341f3325529461beac Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 6 Dec 2021 14:39:40 -0500 Subject: [PATCH] PlasmaBore efficiency increase --- 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 496e3e931e..e44118bc3c 100644 --- a/core/src/mindustry/content/Blocks.java +++ b/core/src/mindustry/content/Blocks.java @@ -2199,7 +2199,7 @@ public class Blocks{ plasmaBore = new BeamDrill("plasma-bore"){{ requirements(Category.production, with(Items.graphite, 20, Items.beryllium, 30)); consumes.power(0.2f); - drillTime = 200f; + drillTime = 150f; tier = 4; size = 2; range = 3; //TODO make it 2? @@ -2212,7 +2212,7 @@ public class Blocks{ //TODO requirements requirements(Category.production, with(Items.graphite, 30, Items.oxide, 30, Items.beryllium, 20, Items.carbide, 30)); consumes.power(0.6f); - drillTime = 170f; + drillTime = 110f; tier = 5; size = 3; range = 6;