Whoops, forgot EtherealSlates
This commit is contained in:
parent
96d94721c4
commit
42d6c4b59b
|
@ -40,7 +40,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
deobfCompile "mezz.jei:jei_1.8.8:2.1.2.10"
|
||||
deobfCompile "mezz.jei:jei_1.8.8:2.1.2.11"
|
||||
}
|
||||
|
||||
minecraft {
|
||||
|
|
|
@ -15,7 +15,7 @@ import java.util.List;
|
|||
|
||||
public class ItemSlate extends Item {
|
||||
|
||||
public String[] names = { "blank", "reinforced", "imbued", "demonic" };
|
||||
public String[] names = { "blank", "reinforced", "imbued", "demonic", "ethereal" };
|
||||
|
||||
public ItemSlate() {
|
||||
super();
|
||||
|
|
|
@ -110,6 +110,7 @@ public class ModItems {
|
|||
renderHelper.itemRender(slate, 1);
|
||||
renderHelper.itemRender(slate, 2);
|
||||
renderHelper.itemRender(slate, 3);
|
||||
renderHelper.itemRender(slate, 4);
|
||||
|
||||
renderHelper.itemRender(inscriptionTool, 1);
|
||||
renderHelper.itemRender(inscriptionTool, 2);
|
||||
|
|
|
@ -29,6 +29,7 @@ item.BloodMagic.slate.blank.name=Blank Slate
|
|||
item.BloodMagic.slate.reinforced.name=Reinforced Slate
|
||||
item.BloodMagic.slate.imbued.name=Imbued Slate
|
||||
item.BloodMagic.slate.demonic.name=Demonic Slate
|
||||
item.BloodMagic.slate.ethereal.name=Ethereal Slate
|
||||
|
||||
item.BloodMagic.focus.weak.name=Teleposition Focus
|
||||
item.BloodMagic.focus.enhanced.name=Enhanced Teleposition Focus
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent":"bloodmagic:item/ItemModelBase",
|
||||
"textures": {
|
||||
"layer0":"bloodmagic:items/baseItem_ethereal_slate"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue