Nether coral item

Can be obtained using shears. Not using shears will destroy the coral
and set the player on fire
This commit is contained in:
Emmanuel BENOîT 2016-07-21 14:11:12 +02:00
parent 5b31453cec
commit 2ebda1f1a3
7 changed files with 124 additions and 4 deletions
src/resources/assets/mmm
lang
models/item/plant/block/nether_coral

View file

@ -11,6 +11,10 @@ gui.mmm.tech.base.am.disabled=Deactivated
item.mmm.plant.fruit.tomato.name=Tomato
item.mmm.plant.seeds.tomato.name=Tomato Seeds
tile.mmm.plant.block.wild_tomato.name=Wild Tomato Plant
tile.mmm.plant.block.nether_coral.red.name=Red Nether Coral
tile.mmm.plant.block.nether_coral.yellow.name=Yellow Nether Coral
tile.mmm.plant.block.nether_coral.orange.name=Orange Nether Coral
tile.mmm.plant.block.nether_coral.blue.name=Blue Nether Coral
tile.mmm.materials.rock.limestone.name=Limestone

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "mmm:blocks/plant/nether_coral/blue"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "mmm:blocks/plant/nether_coral/orange"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "mmm:blocks/plant/nether_coral/red"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:item/generated",
"textures": {
"layer0": "mmm:blocks/plant/nether_coral/yellow"
}
}