Eternal Crystal item & model
This commit is contained in:
parent
7192df49d1
commit
3b31532fea
10 changed files with 225 additions and 19 deletions
|
@ -1,11 +1,18 @@
|
|||
package ru.betterend.item;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
import ru.betterend.patterns.Patterned;
|
||||
import ru.betterend.patterns.Patterns;
|
||||
import ru.betterend.registry.EndItems;
|
||||
|
||||
public class EternalCrystal extends Item {
|
||||
public class EternalCrystal extends Item implements Patterned {
|
||||
|
||||
public EternalCrystal() {
|
||||
super(EndItems.makeSettings());
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getModelPattern(String name) {
|
||||
return Patterns.createJson(Patterns.ITEM_GENERATED, name);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue