From f2081bc31883c012ce959f01e675b854fa3341ec Mon Sep 17 00:00:00 2001 From: Sollace Date: Wed, 26 Jan 2022 16:31:19 +0100 Subject: [PATCH] Pegasus and Gryphon feathers can be used in vanilla recipes. #51 --- .../data/unicopia/recipes/writable_book.json | 17 ++++++++++++++ .../data/unicopia/tags/items/arrow.json | 23 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 src/main/resources/data/unicopia/recipes/writable_book.json create mode 100644 src/main/resources/data/unicopia/tags/items/arrow.json diff --git a/src/main/resources/data/unicopia/recipes/writable_book.json b/src/main/resources/data/unicopia/recipes/writable_book.json new file mode 100644 index 00000000..49af1f20 --- /dev/null +++ b/src/main/resources/data/unicopia/recipes/writable_book.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:book" + }, + { + "item": "minecraft:ink_sac" + }, + { + "tag": "unicopia:magic_feathers" + } + ], + "result": { + "item": "minecraft:writable_book" + } +} \ No newline at end of file diff --git a/src/main/resources/data/unicopia/tags/items/arrow.json b/src/main/resources/data/unicopia/tags/items/arrow.json new file mode 100644 index 00000000..d5339b04 --- /dev/null +++ b/src/main/resources/data/unicopia/tags/items/arrow.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "X", + "#", + "Y" + ], + "key": { + "#": { + "item": "minecraft:stick" + }, + "X": { + "item": "minecraft:flint" + }, + "Y": { + "tag": "unicopia:magic_feathers" + } + }, + "result": { + "item": "minecraft:arrow", + "count": 4 + } +} \ No newline at end of file