Add Torch Recipe, disable dying on Flames. TBC

This commit is contained in:
2022-08-04 23:05:54 +02:00
parent 630014111d
commit 062e9355cf
11 changed files with 129 additions and 15 deletions

View File

@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_the_recipe": {
"conditions": {
"recipe": "hyperlighting:advanced_torch"
},
"trigger": "minecraft:recipe_unlocked"
},
"wool": {
"conditions": {
"items": [
{
"tag": "minecraft:wool"
}
]
},
"trigger": "minecraft:inventory_changed"
}
},
"requirements": [
[
"wool",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"hyperlighting:advanced_torch"
]
}
}

View File

@@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"X": {
"tag": "minecraft:wool"
},
"Y": {
"item": "minecraft:stick"
}
},
"pattern": [
" X ",
" Y ",
" "
],
"result": {
"item": "hyperlighting:advanced_torch"
}
}