mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-17 10:24:23 +01:00
Added utility recipes for rocks and pebbles
This commit is contained in:
parent
62714f771b
commit
9f33c7d881
3 changed files with 34 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{ "item": "minecraft:gravel" }
|
||||
],
|
||||
"result": { "item": "unicopia:pebbles", "count": 9 }
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"###",
|
||||
"###",
|
||||
"###"
|
||||
],
|
||||
"key": {
|
||||
"#": [
|
||||
{ "item": "unicopia:pebbles" }
|
||||
]
|
||||
},
|
||||
"result": { "item": "minecraft:gravel" }
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
"##",
|
||||
"##"
|
||||
],
|
||||
"key": {
|
||||
"#": [
|
||||
{ "item": "unicopia:rock" }
|
||||
]
|
||||
},
|
||||
"result": { "item": "minecraft:cobblestone" }
|
||||
}
|
Loading…
Reference in a new issue