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