Added the Soul Snare renderer and recipe and basically everything soul snare
This commit is contained in:
parent
c015e3421f
commit
74718f5042
18 changed files with 273 additions and 23 deletions
|
@ -48,6 +48,7 @@ import WayofTime.bloodmagic.item.sigil.ItemSigilWater;
|
|||
import WayofTime.bloodmagic.item.sigil.ItemSigilWhirlwind;
|
||||
import WayofTime.bloodmagic.item.soul.ItemMonsterSoul;
|
||||
import WayofTime.bloodmagic.item.soul.ItemSoulGem;
|
||||
import WayofTime.bloodmagic.item.soul.ItemSoulSnare;
|
||||
import WayofTime.bloodmagic.item.soul.ItemSoulSword;
|
||||
import WayofTime.bloodmagic.util.helper.InventoryRenderHelper;
|
||||
|
||||
|
@ -113,6 +114,7 @@ public class ModItems
|
|||
public static Item arcaneAshes;
|
||||
public static Item monsterSoul;
|
||||
public static Item soulGem;
|
||||
public static Item soulSnare;
|
||||
|
||||
public static Item soulSword;
|
||||
|
||||
|
@ -189,6 +191,7 @@ public class ModItems
|
|||
arcaneAshes = registerItem(new ItemArcaneAshes());
|
||||
monsterSoul = registerItem(new ItemMonsterSoul());
|
||||
soulGem = registerItem(new ItemSoulGem());
|
||||
soulSnare = registerItem(new ItemSoulSnare());
|
||||
|
||||
soulSword = registerItem(new ItemSoulSword());
|
||||
}
|
||||
|
@ -291,6 +294,7 @@ public class ModItems
|
|||
renderHelper.itemRender(arcaneAshes);
|
||||
renderHelper.itemRender(monsterSoul, 0);
|
||||
renderHelper.itemRender(soulGem, 0);
|
||||
renderHelper.itemRender(soulSnare);
|
||||
|
||||
renderHelper.itemRender(soulSword, 0);
|
||||
renderHelper.itemRender(soulSword, 1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue