mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-17 10:24:23 +01:00
Added recipes for water_bottle and water_bucket using dew drops
This commit is contained in:
parent
d433c8a30c
commit
bd10e3ad78
2 changed files with 50 additions and 0 deletions
26
src/main/resources/assets/unicopia/recipes/water_bottle.json
Normal file
26
src/main/resources/assets/unicopia/recipes/water_bottle.json
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"pattern": [
|
||||||
|
"***",
|
||||||
|
" * ",
|
||||||
|
" # "
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"#": [
|
||||||
|
{
|
||||||
|
"item": "minecraft:glass_bottle"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"*": [
|
||||||
|
{
|
||||||
|
"item": "unicopia:dew_drop"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"item": "minecraft:potion",
|
||||||
|
"data": 0,
|
||||||
|
"count": 1,
|
||||||
|
"nbt": { "Potion": "minecraft:water" }
|
||||||
|
}
|
||||||
|
}
|
24
src/main/resources/assets/unicopia/recipes/water_bucket.json
Normal file
24
src/main/resources/assets/unicopia/recipes/water_bucket.json
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shaped",
|
||||||
|
"pattern": [
|
||||||
|
"***",
|
||||||
|
"***",
|
||||||
|
" # "
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"#": [
|
||||||
|
{
|
||||||
|
"item": "minecraft:bucket"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"*": [
|
||||||
|
{
|
||||||
|
"item": "unicopia:dew_drop"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"item": "minecraft:water_bucket",
|
||||||
|
"count": 1
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue