From d27aaac04e19a05cc6f5bb271ff8a07fd3e9d14d Mon Sep 17 00:00:00 2001 From: Sollace Date: Sun, 13 Aug 2023 10:00:40 +0100 Subject: [PATCH] Added recipes for the basket and balloon --- .../data/unicopia/recipes/giant_balloon.json | 21 +++++++++++++++++++ .../data/unicopia/recipes/oak_basket.json | 18 ++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 src/main/resources/data/unicopia/recipes/giant_balloon.json create mode 100644 src/main/resources/data/unicopia/recipes/oak_basket.json diff --git a/src/main/resources/data/unicopia/recipes/giant_balloon.json b/src/main/resources/data/unicopia/recipes/giant_balloon.json new file mode 100644 index 00000000..25e370e9 --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/giant_balloon.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "basket", + "key": { + "#": { + "item": "minecraft:white_wool" + }, + "-": { + "item": "minecraft:white_carpet" + } + }, + "pattern": [ + "---", + "# #", + "---" + ], + "result": { + "count": 1, + "item": "unicopia:giant_balloon" + } +} \ No newline at end of file diff --git a/src/main/resources/data/unicopia/recipes/oak_basket.json b/src/main/resources/data/unicopia/recipes/oak_basket.json new file mode 100644 index 00000000..dd7710e0 --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/oak_basket.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "basket", + "key": { + "#": { + "item": "minecraft:oak_planks" + } + }, + "pattern": [ + "# #", + "# #", + "###" + ], + "result": { + "count": 1, + "item": "unicopia:oak_basket" + } +} \ No newline at end of file