Added utility recipes for rocks and pebbles

This commit is contained in:
Sollace 2021-09-03 00:48:11 +02:00
parent 62714f771b
commit 9f33c7d881
3 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{ "item": "minecraft:gravel" }
],
"result": { "item": "unicopia:pebbles", "count": 9 }
}

View file

@ -0,0 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###",
"###",
"###"
],
"key": {
"#": [
{ "item": "unicopia:pebbles" }
]
},
"result": { "item": "minecraft:gravel" }
}

View file

@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"##",
"##"
],
"key": {
"#": [
{ "item": "unicopia:rock" }
]
},
"result": { "item": "minecraft:cobblestone" }
}