Added Arcane Ashes to draw alchemy arrays.
This commit is contained in:
parent
adef7f1ce9
commit
1b9f72b494
11 changed files with 86 additions and 27 deletions
|
@ -74,6 +74,8 @@ public class ModItems
|
|||
|
||||
public static Item altarMaker;
|
||||
|
||||
public static Item arcaneAshes;
|
||||
|
||||
public static Item.ToolMaterial boundToolMaterial = EnumHelper.addToolMaterial("BoundToolMaterial", 4, 0, 12, 8, 50);
|
||||
|
||||
public static void init()
|
||||
|
@ -142,6 +144,8 @@ public class ModItems
|
|||
livingArmourBoots = registerItem(new ItemLivingArmour(3), "ItemLivingArmourBoots");
|
||||
|
||||
altarMaker = registerItem(new ItemAltarMaker());
|
||||
|
||||
arcaneAshes = registerItem(new ItemArcaneAshes());
|
||||
}
|
||||
|
||||
public static void initRenders()
|
||||
|
@ -238,6 +242,8 @@ public class ModItems
|
|||
renderHelper.itemRender(livingArmourBoots);
|
||||
|
||||
renderHelper.itemRender(altarMaker);
|
||||
|
||||
renderHelper.itemRender(arcaneAshes);
|
||||
}
|
||||
|
||||
private static Item registerItem(Item item, String name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue