From 907a0f27e7278583fac2e6f320842bace0c1a916 Mon Sep 17 00:00:00 2001 From: WayofTime Date: Wed, 25 Nov 2020 10:23:00 -0500 Subject: [PATCH] Fixed the repairing for Sentient equipment. WHoopsies, forgot that line was commented out! --- .../common/item/ItemSentientScythe.java | 13 +++++++-- .../common/item/soul/ItemSentientAxe.java | 24 ++++++++------- .../common/item/soul/ItemSentientPickaxe.java | 24 ++++++++------- .../common/item/soul/ItemSentientShovel.java | 24 ++++++++------- .../common/item/soul/ItemSentientSword.java | 29 +++++++++---------- 5 files changed, 65 insertions(+), 49 deletions(-) diff --git a/src/main/java/wayoftime/bloodmagic/common/item/ItemSentientScythe.java b/src/main/java/wayoftime/bloodmagic/common/item/ItemSentientScythe.java index 930507ad..ee04af67 100644 --- a/src/main/java/wayoftime/bloodmagic/common/item/ItemSentientScythe.java +++ b/src/main/java/wayoftime/bloodmagic/common/item/ItemSentientScythe.java @@ -53,6 +53,7 @@ import wayoftime.bloodmagic.api.compat.EnumDemonWillType; import wayoftime.bloodmagic.api.compat.IDemonWill; import wayoftime.bloodmagic.api.compat.IDemonWillWeapon; import wayoftime.bloodmagic.api.compat.IMultiWillTool; +import wayoftime.bloodmagic.common.tags.BloodMagicTags; import wayoftime.bloodmagic.util.Constants; import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.will.PlayerDemonWillHandler; @@ -82,16 +83,22 @@ public class ItemSentientScythe extends HoeItem implements IDemonWillWeapon, IMu public static double[] movementSpeed = new double[] { 0.05, 0.1, 0.15, 0.2, 0.25 }; - public final double baseAttackDamage = 4; - public final double baseAttackSpeed = -3; + public final static double baseAttackDamage = 4; + public final static double baseAttackSpeed = -3; private static Map hitMap = new HashMap(); public ItemSentientScythe() { - super(BMItemTier.SENTIENT, 8, -3.1f, new Item.Properties().maxDamage(520).group(BloodMagic.TAB)); + super(BMItemTier.SENTIENT, (int) baseAttackDamage, (float) baseAttackSpeed, new Item.Properties().maxDamage(520).group(BloodMagic.TAB)); // super(RegistrarBloodMagicItems.SOUL_TOOL_MATERIAL, 8.0F, 3.1F); } + @Override + public boolean getIsRepairable(ItemStack toRepair, ItemStack repair) + { + return BloodMagicTags.CRYSTAL_DEMON.contains(repair.getItem()) || super.getIsRepairable(toRepair, repair); + } + @Override public float getDestroySpeed(ItemStack stack, BlockState state) { diff --git a/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientAxe.java b/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientAxe.java index 6bf3c0c0..6858f553 100644 --- a/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientAxe.java +++ b/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientAxe.java @@ -34,14 +34,15 @@ import net.minecraft.world.World; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; import wayoftime.bloodmagic.BloodMagic; -import wayoftime.bloodmagic.common.item.BMItemTier; -import wayoftime.bloodmagic.common.item.BloodMagicItems; -import wayoftime.bloodmagic.api.compat.IMultiWillTool; -import wayoftime.bloodmagic.util.Constants; -import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.api.compat.EnumDemonWillType; import wayoftime.bloodmagic.api.compat.IDemonWill; import wayoftime.bloodmagic.api.compat.IDemonWillWeapon; +import wayoftime.bloodmagic.api.compat.IMultiWillTool; +import wayoftime.bloodmagic.common.item.BMItemTier; +import wayoftime.bloodmagic.common.item.BloodMagicItems; +import wayoftime.bloodmagic.common.tags.BloodMagicTags; +import wayoftime.bloodmagic.util.Constants; +import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.will.PlayerDemonWillHandler; public class ItemSentientAxe extends AxeItem implements IDemonWillWeapon, IMultiWillTool @@ -91,6 +92,12 @@ public class ItemSentientAxe extends AxeItem implements IDemonWillWeapon, IMulti } } + @Override + public boolean getIsRepairable(ItemStack toRepair, ItemStack repair) + { + return BloodMagicTags.CRYSTAL_DEMON.contains(repair.getItem()) || super.getIsRepairable(toRepair, repair); + } + public void recalculatePowers(ItemStack stack, World world, PlayerEntity player) { EnumDemonWillType type = PlayerDemonWillHandler.getLargestWillType(player); @@ -196,8 +203,7 @@ public class ItemSentientAxe extends AxeItem implements IDemonWillWeapon, IMulti { float absorption = attacker.getAbsorptionAmount(); attacker.addPotionEffect(new EffectInstance(Effects.ABSORPTION, absorptionTime[willBracket], 127)); - attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() - * 0.05f, maxAbsorptionHearts)); + attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() * 0.05f, maxAbsorptionHearts)); } break; case VENGEFUL: @@ -361,9 +367,7 @@ public class ItemSentientAxe extends AxeItem implements IDemonWillWeapon, IMulti { if (i == 0 || attackingEntity.getEntityWorld().rand.nextDouble() < 0.4) { - ItemStack soulStack = soul.createWill(willModifier * (this.getDropOfActivatedSword(stack) - * attackingEntity.getEntityWorld().rand.nextDouble() + this.getStaticDropOfActivatedSword(stack)) - * killedEntity.getMaxHealth() / 20d); + ItemStack soulStack = soul.createWill(willModifier * (this.getDropOfActivatedSword(stack) * attackingEntity.getEntityWorld().rand.nextDouble() + this.getStaticDropOfActivatedSword(stack)) * killedEntity.getMaxHealth() / 20d); soulList.add(soulStack); } } diff --git a/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientPickaxe.java b/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientPickaxe.java index e7c96f3b..93ef29e3 100644 --- a/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientPickaxe.java +++ b/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientPickaxe.java @@ -34,14 +34,15 @@ import net.minecraft.world.World; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; import wayoftime.bloodmagic.BloodMagic; -import wayoftime.bloodmagic.common.item.BMItemTier; -import wayoftime.bloodmagic.common.item.BloodMagicItems; -import wayoftime.bloodmagic.api.compat.IMultiWillTool; -import wayoftime.bloodmagic.util.Constants; -import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.api.compat.EnumDemonWillType; import wayoftime.bloodmagic.api.compat.IDemonWill; import wayoftime.bloodmagic.api.compat.IDemonWillWeapon; +import wayoftime.bloodmagic.api.compat.IMultiWillTool; +import wayoftime.bloodmagic.common.item.BMItemTier; +import wayoftime.bloodmagic.common.item.BloodMagicItems; +import wayoftime.bloodmagic.common.tags.BloodMagicTags; +import wayoftime.bloodmagic.util.Constants; +import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.will.PlayerDemonWillHandler; public class ItemSentientPickaxe extends PickaxeItem implements IDemonWillWeapon, IMultiWillTool @@ -77,6 +78,12 @@ public class ItemSentientPickaxe extends PickaxeItem implements IDemonWillWeapon super(BMItemTier.SENTIENT, (int) baseAttackDamage, (float) baseAttackSpeed, new Item.Properties().maxDamage(520).group(BloodMagic.TAB)); } + @Override + public boolean getIsRepairable(ItemStack toRepair, ItemStack repair) + { + return BloodMagicTags.CRYSTAL_DEMON.contains(repair.getItem()) || super.getIsRepairable(toRepair, repair); + } + @Override public float getDestroySpeed(ItemStack stack, BlockState state) { @@ -195,8 +202,7 @@ public class ItemSentientPickaxe extends PickaxeItem implements IDemonWillWeapon { float absorption = attacker.getAbsorptionAmount(); attacker.addPotionEffect(new EffectInstance(Effects.ABSORPTION, absorptionTime[willBracket], 127)); - attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() - * 0.05f, maxAbsorptionHearts)); + attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() * 0.05f, maxAbsorptionHearts)); } break; case VENGEFUL: @@ -360,9 +366,7 @@ public class ItemSentientPickaxe extends PickaxeItem implements IDemonWillWeapon { if (i == 0 || attackingEntity.getEntityWorld().rand.nextDouble() < 0.4) { - ItemStack soulStack = soul.createWill(willModifier * (this.getDropOfActivatedSword(stack) - * attackingEntity.getEntityWorld().rand.nextDouble() + this.getStaticDropOfActivatedSword(stack)) - * killedEntity.getMaxHealth() / 20d); + ItemStack soulStack = soul.createWill(willModifier * (this.getDropOfActivatedSword(stack) * attackingEntity.getEntityWorld().rand.nextDouble() + this.getStaticDropOfActivatedSword(stack)) * killedEntity.getMaxHealth() / 20d); soulList.add(soulStack); } } diff --git a/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientShovel.java b/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientShovel.java index d17ce52e..581c9c5f 100644 --- a/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientShovel.java +++ b/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientShovel.java @@ -34,14 +34,15 @@ import net.minecraft.world.World; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; import wayoftime.bloodmagic.BloodMagic; -import wayoftime.bloodmagic.common.item.BMItemTier; -import wayoftime.bloodmagic.common.item.BloodMagicItems; -import wayoftime.bloodmagic.api.compat.IMultiWillTool; -import wayoftime.bloodmagic.util.Constants; -import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.api.compat.EnumDemonWillType; import wayoftime.bloodmagic.api.compat.IDemonWill; import wayoftime.bloodmagic.api.compat.IDemonWillWeapon; +import wayoftime.bloodmagic.api.compat.IMultiWillTool; +import wayoftime.bloodmagic.common.item.BMItemTier; +import wayoftime.bloodmagic.common.item.BloodMagicItems; +import wayoftime.bloodmagic.common.tags.BloodMagicTags; +import wayoftime.bloodmagic.util.Constants; +import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.will.PlayerDemonWillHandler; public class ItemSentientShovel extends ShovelItem implements IDemonWillWeapon, IMultiWillTool @@ -77,6 +78,12 @@ public class ItemSentientShovel extends ShovelItem implements IDemonWillWeapon, super(BMItemTier.SENTIENT, (int) baseAttackDamage, (float) baseAttackSpeed, new Item.Properties().maxDamage(520).group(BloodMagic.TAB)); } + @Override + public boolean getIsRepairable(ItemStack toRepair, ItemStack repair) + { + return BloodMagicTags.CRYSTAL_DEMON.contains(repair.getItem()) || super.getIsRepairable(toRepair, repair); + } + @Override public float getDestroySpeed(ItemStack stack, BlockState state) { @@ -195,8 +202,7 @@ public class ItemSentientShovel extends ShovelItem implements IDemonWillWeapon, { float absorption = attacker.getAbsorptionAmount(); attacker.addPotionEffect(new EffectInstance(Effects.ABSORPTION, absorptionTime[willBracket], 127)); - attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() - * 0.05f, maxAbsorptionHearts)); + attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() * 0.05f, maxAbsorptionHearts)); } break; case VENGEFUL: @@ -361,9 +367,7 @@ public class ItemSentientShovel extends ShovelItem implements IDemonWillWeapon, { if (i == 0 || attackingEntity.getEntityWorld().rand.nextDouble() < 0.4) { - ItemStack soulStack = soul.createWill(willModifier * (this.getDropOfActivatedSword(stack) - * attackingEntity.getEntityWorld().rand.nextDouble() + this.getStaticDropOfActivatedSword(stack)) - * killedEntity.getMaxHealth() / 20d); + ItemStack soulStack = soul.createWill(willModifier * (this.getDropOfActivatedSword(stack) * attackingEntity.getEntityWorld().rand.nextDouble() + this.getStaticDropOfActivatedSword(stack)) * killedEntity.getMaxHealth() / 20d); soulList.add(soulStack); } } diff --git a/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientSword.java b/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientSword.java index 8e194b7f..a30995e3 100644 --- a/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientSword.java +++ b/src/main/java/wayoftime/bloodmagic/common/item/soul/ItemSentientSword.java @@ -33,14 +33,15 @@ import net.minecraft.world.World; import net.minecraftforge.api.distmarker.Dist; import net.minecraftforge.api.distmarker.OnlyIn; import wayoftime.bloodmagic.BloodMagic; -import wayoftime.bloodmagic.common.item.BMItemTier; -import wayoftime.bloodmagic.common.item.BloodMagicItems; -import wayoftime.bloodmagic.api.compat.IMultiWillTool; -import wayoftime.bloodmagic.util.Constants; -import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.api.compat.EnumDemonWillType; import wayoftime.bloodmagic.api.compat.IDemonWill; import wayoftime.bloodmagic.api.compat.IDemonWillWeapon; +import wayoftime.bloodmagic.api.compat.IMultiWillTool; +import wayoftime.bloodmagic.common.item.BMItemTier; +import wayoftime.bloodmagic.common.item.BloodMagicItems; +import wayoftime.bloodmagic.common.tags.BloodMagicTags; +import wayoftime.bloodmagic.util.Constants; +import wayoftime.bloodmagic.util.helper.NBTHelper; import wayoftime.bloodmagic.will.PlayerDemonWillHandler; public class ItemSentientSword extends SwordItem implements IDemonWillWeapon, IMultiWillTool @@ -73,12 +74,11 @@ public class ItemSentientSword extends SwordItem implements IDemonWillWeapon, IM super(BMItemTier.SENTIENT, 6, -2.6f, new Item.Properties().maxDamage(520).group(BloodMagic.TAB)); } -// @Override -// public boolean getIsRepairable(ItemStack toRepair, ItemStack repair) -// { -// return RegistrarBloodMagicItems.ITEM_DEMON_CRYSTAL == repair.getItem() -// || super.getIsRepairable(toRepair, repair); -// } + @Override + public boolean getIsRepairable(ItemStack toRepair, ItemStack repair) + { + return BloodMagicTags.CRYSTAL_DEMON.contains(repair.getItem()) || super.getIsRepairable(toRepair, repair); + } public void recalculatePowers(ItemStack stack, World world, PlayerEntity player) { @@ -196,8 +196,7 @@ public class ItemSentientSword extends SwordItem implements IDemonWillWeapon, IM { float absorption = attacker.getAbsorptionAmount(); attacker.addPotionEffect(new EffectInstance(Effects.ABSORPTION, absorptionTime[willBracket], 127, false, false)); - attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() - * 0.05f, maxAbsorptionHearts)); + attacker.setAbsorptionAmount((float) Math.min(absorption + target.getMaxHealth() * 0.05f, maxAbsorptionHearts)); } break; case VENGEFUL: @@ -361,9 +360,7 @@ public class ItemSentientSword extends SwordItem implements IDemonWillWeapon, IM { if (i == 0 || attackingEntity.getEntityWorld().rand.nextDouble() < 0.4) { - ItemStack soulStack = soul.createWill(willModifier * (this.getDropOfActivatedSword(stack) - * attackingEntity.getEntityWorld().rand.nextDouble() + this.getStaticDropOfActivatedSword(stack)) - * killedEntity.getMaxHealth() / 20d); + ItemStack soulStack = soul.createWill(willModifier * (this.getDropOfActivatedSword(stack) * attackingEntity.getEntityWorld().rand.nextDouble() + this.getStaticDropOfActivatedSword(stack)) * killedEntity.getMaxHealth() / 20d); soulList.add(soulStack); } }