Jello mob
This commit is contained in:
parent
9a4bfa1698
commit
d37e55b101
15 changed files with 295 additions and 25 deletions
|
@ -2,9 +2,16 @@ package ru.betterend.item;
|
|||
|
||||
import net.minecraft.entity.EntityType;
|
||||
import net.minecraft.item.SpawnEggItem;
|
||||
import ru.betterend.patterns.Patterned;
|
||||
import ru.betterend.patterns.Patterns;
|
||||
|
||||
public abstract class ItemSpawnEgg extends SpawnEggItem {
|
||||
public class ItemSpawnEgg extends SpawnEggItem implements Patterned {
|
||||
public ItemSpawnEgg(EntityType<?> type, int primaryColor, int secondaryColor, Settings settings) {
|
||||
super(type, primaryColor, secondaryColor, settings);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getModelPattern(String name) {
|
||||
return Patterns.createJson(Patterns.ITEM_SPAWN_EGG, name);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue