diff --git a/src/main/java/WayofTime/bloodmagic/item/armour/ItemLivingArmour.java b/src/main/java/WayofTime/bloodmagic/item/armour/ItemLivingArmour.java index 6add9151..c38c94e3 100644 --- a/src/main/java/WayofTime/bloodmagic/item/armour/ItemLivingArmour.java +++ b/src/main/java/WayofTime/bloodmagic/item/armour/ItemLivingArmour.java @@ -61,6 +61,7 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP super(ItemArmor.ArmorMaterial.IRON, 0, armorType); setUnlocalizedName(Constants.Mod.MODID + ".livingArmour."); // setMaxDamage(250); + setMaxDamage((int) (getMaxDamage() * 1.5)); setCreativeTab(BloodMagic.tabBloodMagic); } @@ -450,8 +451,8 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP tag.setTag(Constants.NBT.LIVING_ARMOUR, livingTag); } - //TODO: Add the ability to have the armour give an upgrade with a higher level - public static LivingArmourUpgrade getUpgrade(String uniqueIdentifier, ItemStack stack) + //TODO: Add the ability to have the armour give an upgrade with a higher level + public static LivingArmourUpgrade getUpgrade(String uniqueIdentifier, ItemStack stack) { if (!armourMap.containsKey(stack)) { diff --git a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPhysicalProtect.java b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPhysicalProtect.java index a99863f3..b24cd1af 100644 --- a/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPhysicalProtect.java +++ b/src/main/java/WayofTime/bloodmagic/livingArmour/tracker/StatTrackerPhysicalProtect.java @@ -18,7 +18,7 @@ public class StatTrackerPhysicalProtect extends StatTracker public int totalDamage = 0; public static HashMap changeMap = new HashMap(); - public static int[] damageRequired = new int[] { 30, 200, 400, 800, 1500, 2500, 3500, 5000, 7000, 15000 }; + public static int[] damageRequired = new int[] { 30, 50, 80, 140, 200, 300, 400, 500, 650, 800 }; public static void incrementCounter(LivingArmour armour, double damage) {