From 9ae1ef13ff184758c91c7a9e840cbeed8388951c Mon Sep 17 00:00:00 2001 From: Sollace Date: Fri, 24 Nov 2023 16:13:02 +0000 Subject: [PATCH] Added recipes for the remaining bed sheet patterns --- .../unicopia/recipes/bed_sheets/kelp.json | 18 +++++++++++++ .../recipes/bed_sheets/rainbow_bpw.json | 24 +++++++++++++++++ .../recipes/bed_sheets/rainbow_bpy.json | 24 +++++++++++++++++ .../recipes/bed_sheets/rainbow_pgb.json | 27 +++++++++++++++++++ .../recipes/bed_sheets/rainbow_pwr.json | 24 +++++++++++++++++ 5 files changed, 117 insertions(+) create mode 100644 src/main/resources/data/unicopia/recipes/bed_sheets/kelp.json create mode 100644 src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_bpw.json create mode 100644 src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_bpy.json create mode 100644 src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_pgb.json create mode 100644 src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_pwr.json diff --git a/src/main/resources/data/unicopia/recipes/bed_sheets/kelp.json b/src/main/resources/data/unicopia/recipes/bed_sheets/kelp.json new file mode 100644 index 00000000..31590054 --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/bed_sheets/kelp.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed_sheets", + "pattern": [ + "###", + "# #", + " ##" + ], + "key": { + "#": { + "item": "minecraft:kelp" + } + }, + "result": { + "count": 1, + "item": "unicopia:kelp_bed_sheets" + } +} \ No newline at end of file diff --git a/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_bpw.json b/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_bpw.json new file mode 100644 index 00000000..431b5bad --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_bpw.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed_sheets", + "pattern": [ + "PWP", + "B B", + " WP" + ], + "key": { + "B": { + "item": "minecraft:light_blue_wool" + }, + "P": { + "item": "minecraft:pink_wool" + }, + "W": { + "item": "minecraft:white_wool" + } + }, + "result": { + "count": 1, + "item": "unicopia:rainbow_bpw_bed_sheets" + } +} \ No newline at end of file diff --git a/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_bpy.json b/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_bpy.json new file mode 100644 index 00000000..f67eb380 --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_bpy.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed_sheets", + "pattern": [ + "PBP", + "Y Y", + " BP" + ], + "key": { + "P": { + "item": "minecraft:pink_wool" + }, + "B": { + "item": "minecraft:light_blue_wool" + }, + "Y": { + "item": "minecraft:yellow_wool" + } + }, + "result": { + "count": 1, + "item": "unicopia:rainbow_bpy_bed_sheets" + } +} \ No newline at end of file diff --git a/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_pgb.json b/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_pgb.json new file mode 100644 index 00000000..3e61b550 --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_pgb.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed_sheets", + "pattern": [ + "WGB", + "P G", + " PW" + ], + "key": { + "P": { + "item": "minecraft:purple_wool" + }, + "W": { + "item": "minecraft:white_wool" + }, + "G": { + "item": "minecraft:light_gray_wool" + }, + "B": { + "item": "minecraft:black_wool" + } + }, + "result": { + "count": 1, + "item": "unicopia:rainbow_pbg_bed_sheets" + } +} \ No newline at end of file diff --git a/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_pwr.json b/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_pwr.json new file mode 100644 index 00000000..ba2c76df --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/bed_sheets/rainbow_pwr.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed_sheets", + "pattern": [ + "WRW", + "P P", + " RW" + ], + "key": { + "P": { + "item": "minecraft:pink_wool" + }, + "W": { + "item": "minecraft:white_wool" + }, + "R": { + "item": "minecraft:red_wool" + } + }, + "result": { + "count": 1, + "item": "unicopia:rainbow_pwr_bed_sheets" + } +} \ No newline at end of file