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:
parent
5b31453cec
commit
2ebda1f1a3
7 changed files with 124 additions and 4 deletions
src/resources/assets/mmm
|
@ -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
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "mmm:blocks/plant/nether_coral/blue"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "mmm:blocks/plant/nether_coral/orange"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "mmm:blocks/plant/nether_coral/red"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "minecraft:item/generated",
|
||||
"textures": {
|
||||
"layer0": "mmm:blocks/plant/nether_coral/yellow"
|
||||
}
|
||||
}
|
Reference in a new issue