Added Sentient Armour - not fully implemented.

This commit is contained in:
WayofTime 2016-01-09 13:01:05 -05:00
parent 61e6cf2a14
commit 4d835257ab
13 changed files with 315 additions and 1 deletions

View file

@ -27,6 +27,7 @@ import WayofTime.bloodmagic.item.ItemSacrificialDagger;
import WayofTime.bloodmagic.item.ItemSlate;
import WayofTime.bloodmagic.item.ItemTelepositionFocus;
import WayofTime.bloodmagic.item.armour.ItemLivingArmour;
import WayofTime.bloodmagic.item.armour.ItemSentientArmour;
import WayofTime.bloodmagic.item.gear.ItemPackSacrifice;
import WayofTime.bloodmagic.item.gear.ItemPackSelfSacrifice;
import WayofTime.bloodmagic.item.sigil.ItemSigilAir;
@ -110,6 +111,11 @@ public class ModItems
public static Item livingArmourLegs;
public static Item livingArmourBoots;
public static Item sentientArmourHelmet;
public static Item sentientArmourChest;
public static Item sentientArmourLegs;
public static Item sentientArmourBoots;
public static Item altarMaker;
public static Item arcaneAshes;
@ -188,6 +194,11 @@ public class ModItems
livingArmourLegs = registerItem(new ItemLivingArmour(2), "ItemLivingArmourLegs");
livingArmourBoots = registerItem(new ItemLivingArmour(3), "ItemLivingArmourBoots");
sentientArmourHelmet = registerItem(new ItemSentientArmour(0), "ItemSentientArmourHelmet");
sentientArmourChest = registerItem(new ItemSentientArmour(1), "ItemSentientArmourChest");
sentientArmourLegs = registerItem(new ItemSentientArmour(2), "ItemSentientArmourLegs");
sentientArmourBoots = registerItem(new ItemSentientArmour(3), "ItemSentientArmourBoots");
altarMaker = registerItem(new ItemAltarMaker());
arcaneAshes = registerItem(new ItemArcaneAshes());
@ -292,6 +303,11 @@ public class ModItems
renderHelper.itemRender(livingArmourLegs, "ItemLivingArmour2");
renderHelper.itemRender(livingArmourBoots, "ItemLivingArmour3");
renderHelper.itemRender(sentientArmourHelmet, "ItemSentientArmour0");
renderHelper.itemRender(sentientArmourChest, "ItemSentientArmour1");
renderHelper.itemRender(sentientArmourLegs, "ItemSentientArmour2");
renderHelper.itemRender(sentientArmourBoots, "ItemSentientArmour3");
renderHelper.itemRender(altarMaker);
renderHelper.itemRender(arcaneAshes);