Move Revealing upgrade to tc compat class/package
This commit is contained in:
parent
ba601c47b6
commit
65dd24b19b
|
@ -2,8 +2,6 @@ package WayofTime.bloodmagic.compat.thaumcraft;
|
||||||
|
|
||||||
import WayofTime.bloodmagic.api.livingArmour.LivingArmourHandler;
|
import WayofTime.bloodmagic.api.livingArmour.LivingArmourHandler;
|
||||||
import WayofTime.bloodmagic.compat.ICompatibility;
|
import WayofTime.bloodmagic.compat.ICompatibility;
|
||||||
import WayofTime.bloodmagic.compat.thaumcraft.LivingArmourUpgradeThaumRunicShielding;
|
|
||||||
import WayofTime.bloodmagic.compat.thaumcraft.StatTrackerThaumRunicShielding;
|
|
||||||
import WayofTime.bloodmagic.compat.thaumcraft.research.BloodMagicResearch;
|
import WayofTime.bloodmagic.compat.thaumcraft.research.BloodMagicResearch;
|
||||||
|
|
||||||
public class CompatibilityThaumcraft implements ICompatibility
|
public class CompatibilityThaumcraft implements ICompatibility
|
||||||
|
@ -18,6 +16,7 @@ public class CompatibilityThaumcraft implements ICompatibility
|
||||||
LivingArmourHandler.registerStatTracker(StatTrackerThaumRunicShielding.class);
|
LivingArmourHandler.registerStatTracker(StatTrackerThaumRunicShielding.class);
|
||||||
|
|
||||||
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeThaumRunicShielding(0));
|
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeThaumRunicShielding(0));
|
||||||
|
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeThaumRevealing(0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
package WayofTime.bloodmagic.livingArmour.upgrade;
|
package WayofTime.bloodmagic.compat.thaumcraft;
|
||||||
|
|
||||||
import WayofTime.bloodmagic.api.Constants;
|
import WayofTime.bloodmagic.api.Constants;
|
||||||
import WayofTime.bloodmagic.api.livingArmour.LivingArmourUpgrade;
|
import WayofTime.bloodmagic.api.livingArmour.LivingArmourUpgrade;
|
||||||
import net.minecraft.nbt.NBTTagCompound;
|
import net.minecraft.nbt.NBTTagCompound;
|
||||||
|
|
||||||
public class LivingArmourUpgradeRevealing extends LivingArmourUpgrade {
|
public class LivingArmourUpgradeThaumRevealing extends LivingArmourUpgrade {
|
||||||
|
|
||||||
public LivingArmourUpgradeRevealing(int level) {
|
public LivingArmourUpgradeThaumRevealing(int level) {
|
||||||
super(level);
|
super(level);
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@ import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeKnockbackRes
|
||||||
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeMeleeDamage;
|
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeMeleeDamage;
|
||||||
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradePhysicalProtect;
|
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradePhysicalProtect;
|
||||||
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradePoisonResist;
|
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradePoisonResist;
|
||||||
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeRevealing;
|
|
||||||
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSelfSacrifice;
|
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSelfSacrifice;
|
||||||
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSolarPowered;
|
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSolarPowered;
|
||||||
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSpeed;
|
import WayofTime.bloodmagic.livingArmour.upgrade.LivingArmourUpgradeSpeed;
|
||||||
|
@ -53,7 +52,6 @@ public class ModArmourTrackers
|
||||||
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeArrowShot(0));
|
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeArrowShot(0));
|
||||||
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeStepAssist(0));
|
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeStepAssist(0));
|
||||||
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeGrimReaperSprint(0));
|
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeGrimReaperSprint(0));
|
||||||
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeRevealing(0));
|
|
||||||
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeSolarPowered(0));
|
LivingArmourHandler.registerArmourUpgrade(new LivingArmourUpgradeSolarPowered(0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue