Bubble Pipe

This commit is contained in:
Vos
2026-03-14 20:48:02 -05:00
parent 4fc01cc748
commit 327855e057
13 changed files with 183 additions and 24 deletions
@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_birch_planks": {
"conditions": {
"items": [
{
"items": "minecraft:birch_planks"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "acesbs:bubble_pipe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_birch_planks"
]
],
"rewards": {
"recipes": [
"acesbs:bubble_pipe"
]
}
}
@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"#": {
"item": "minecraft:iron_ingot"
},
"P": {
"item": "minecraft:birch_planks"
}
},
"pattern": [
" #",
"PPP",
" "
],
"result": {
"count": 1,
"id": "acesbs:bubble_pipe"
}
}