diff options
author | Linnea Gräf <nea@nea.moe> | 2024-11-20 19:48:59 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-11-20 19:48:59 +0100 |
commit | ef8a3bc6fd2c9abdf6625d8aabc44382c6456cb4 (patch) | |
tree | 08751e17dd66416c9f654efe7d9f4ab5ba8c212d /src/main/generated/data/funny-teleporters | |
parent | 2e43b831af08beaed320f74cd9a1e537397135d3 (diff) | |
download | funny-teleporters-ef8a3bc6fd2c9abdf6625d8aabc44382c6456cb4.tar.gz funny-teleporters-ef8a3bc6fd2c9abdf6625d8aabc44382c6456cb4.tar.bz2 funny-teleporters-ef8a3bc6fd2c9abdf6625d8aabc44382c6456cb4.zip |
Add crafting recipe
Diffstat (limited to 'src/main/generated/data/funny-teleporters')
-rw-r--r-- | src/main/generated/data/funny-teleporters/advancement/recipes/transportation/coloured_chest.json | 32 | ||||
-rw-r--r-- | src/main/generated/data/funny-teleporters/recipe/coloured_chest.json | 19 |
2 files changed, 51 insertions, 0 deletions
diff --git a/src/main/generated/data/funny-teleporters/advancement/recipes/transportation/coloured_chest.json b/src/main/generated/data/funny-teleporters/advancement/recipes/transportation/coloured_chest.json new file mode 100644 index 0000000..ad3385a --- /dev/null +++ b/src/main/generated/data/funny-teleporters/advancement/recipes/transportation/coloured_chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ender_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:ender_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "funny-teleporters:coloured_chest" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ender_chest" + ] + ], + "rewards": { + "recipes": [ + "funny-teleporters:coloured_chest" + ] + } +}
\ No newline at end of file diff --git a/src/main/generated/data/funny-teleporters/recipe/coloured_chest.json b/src/main/generated/data/funny-teleporters/recipe/coloured_chest.json new file mode 100644 index 0000000..a12c67e --- /dev/null +++ b/src/main/generated/data/funny-teleporters/recipe/coloured_chest.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + { + "item": "minecraft:ender_chest" + }, + { + "item": "minecraft:redstone_block" + }, + { + "item": "minecraft:hopper" + } + ], + "result": { + "count": 1, + "id": "funny-teleporters:coloured_chest" + } +}
\ No newline at end of file |