From 86b9d9d4ece3cba40dc332eb66c11e5ae6e557a4 Mon Sep 17 00:00:00 2001 From: Calclavia Date: Mon, 5 Aug 2013 12:45:44 -0400 Subject: [PATCH] Tweaked some gameplay balance --- src/resonantinduction/ResonantInduction.java | 2 +- src/resonantinduction/battery/ItemCapacitor.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/resonantinduction/ResonantInduction.java b/src/resonantinduction/ResonantInduction.java index 50a6e902..93a43200 100644 --- a/src/resonantinduction/ResonantInduction.java +++ b/src/resonantinduction/ResonantInduction.java @@ -91,7 +91,7 @@ public class ResonantInduction * Settings */ public static final Configuration CONFIGURATION = new Configuration(new File(Loader.instance().getConfigDir(), NAME + ".cfg")); - public static float POWER_PER_COAL = 8; + public static float POWER_PER_COAL = 5; public static boolean SOUND_FXS = true; /** Block ID by Jyzarc */ diff --git a/src/resonantinduction/battery/ItemCapacitor.java b/src/resonantinduction/battery/ItemCapacitor.java index 502ee23d..e6e4fdb2 100644 --- a/src/resonantinduction/battery/ItemCapacitor.java +++ b/src/resonantinduction/battery/ItemCapacitor.java @@ -25,14 +25,14 @@ public class ItemCapacitor extends ItemBase implements IBattery { super("capacitor", id); this.setMaxStackSize(1); - this.setMaxDamage(1000); + this.setMaxDamage(100); } @Override public void addInformation(ItemStack itemStack, EntityPlayer par2EntityPlayer, List par3List, boolean par4) { double energyStored = this.getEnergyStored(itemStack); - par3List.add("Energy: " + (int) energyStored + " KJ"); + par3List.add("Energy: " + (int) energyStored + "/" + (int) this.getMaxEnergyStored(itemStack) + " KJ"); } @Override @@ -70,7 +70,7 @@ public class ItemCapacitor extends ItemBase implements IBattery @Override public float getMaxEnergyStored(ItemStack itemStack) { - return 10; + return 20; } @Override