From 273de517970b13d59fd65de4b93e0b14643a4b19 Mon Sep 17 00:00:00 2001 From: Justin Parsell Date: Sun, 24 Oct 2021 22:51:17 -0400 Subject: [PATCH] addition of standard recipes --- .../glowstonewire/recipes/gw_glowstone.json | 15 ++++++++++++++ .../recipes/gw_spectral_arrow.json | 20 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 src/main/resources/data/glowstonewire/recipes/gw_glowstone.json create mode 100644 src/main/resources/data/glowstonewire/recipes/gw_spectral_arrow.json diff --git a/src/main/resources/data/glowstonewire/recipes/gw_glowstone.json b/src/main/resources/data/glowstonewire/recipes/gw_glowstone.json new file mode 100644 index 0000000..287e0ea --- /dev/null +++ b/src/main/resources/data/glowstonewire/recipes/gw_glowstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "glowstonewire:glowstone_dust" + } + }, + "result": { + "item": "minecraft:glowstone" + } + } \ No newline at end of file diff --git a/src/main/resources/data/glowstonewire/recipes/gw_spectral_arrow.json b/src/main/resources/data/glowstonewire/recipes/gw_spectral_arrow.json new file mode 100644 index 0000000..007fc2f --- /dev/null +++ b/src/main/resources/data/glowstonewire/recipes/gw_spectral_arrow.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " # ", + "#X#", + " # " + ], + "key": { + "#": { + "item": "glowstonewire:glowstone_dust" + }, + "X": { + "item": "minecraft:arrow" + } + }, + "result": { + "item": "minecraft:spectral_arrow", + "count": 2 + } + } \ No newline at end of file