Implemented the Ritual Diviner and added its recipe. Added unlocalized name to rituals. Removed a few unnecessary imports.
This commit is contained in:
parent
c815960f5e
commit
98ca2fbd16
12 changed files with 553 additions and 88 deletions
|
@ -35,6 +35,7 @@ public class ModItems {
|
|||
public static Item packSelfSacrifice;
|
||||
public static Item packSacrifice;
|
||||
public static Item daggerOfSacrifice;
|
||||
public static Item ritualDiviner;
|
||||
|
||||
public static Item boundSword;
|
||||
public static Item boundPickaxe;
|
||||
|
@ -98,6 +99,8 @@ public class ModItems {
|
|||
packSelfSacrifice = registerItem(new ItemPackSelfSacrifice());
|
||||
daggerOfSacrifice = registerItem(new ItemDaggerOfSacrifice());
|
||||
|
||||
ritualDiviner = registerItem(new ItemRitualDiviner());
|
||||
|
||||
boundSword = registerItem(new ItemBoundSword());
|
||||
boundPickaxe = registerItem(new ItemBoundPickaxe());
|
||||
boundAxe = registerItem(new ItemBoundAxe());
|
||||
|
@ -168,6 +171,8 @@ public class ModItems {
|
|||
renderHelper.itemRender(packSacrifice);
|
||||
renderHelper.itemRender(packSelfSacrifice);
|
||||
renderHelper.itemRender(daggerOfSacrifice);
|
||||
|
||||
renderHelper.itemRender(ritualDiviner, 0);
|
||||
|
||||
renderHelper.itemRender(boundSword, 0);
|
||||
renderHelper.itemRender(boundSword, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue