From 0be052aa2a4a567fdae3a8ba841c7d2e7d6b364d Mon Sep 17 00:00:00 2001 From: Jonas_Jones <91549607+J-onasJones@users.noreply.github.com> Date: Tue, 4 Apr 2023 21:34:27 +0200 Subject: [PATCH] added cobble gen crafting recipe for stone sword --- .../data/nec/recipes/stone_sword.json | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/main/resources/data/nec/recipes/stone_sword.json diff --git a/src/main/resources/data/nec/recipes/stone_sword.json b/src/main/resources/data/nec/recipes/stone_sword.json new file mode 100644 index 0000000..7258609 --- /dev/null +++ b/src/main/resources/data/nec/recipes/stone_sword.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A B", + "A B", + " C " + ], + "key": { + "A": { + "item": "minecraft:lava_bucket" + }, + "B": { + "item": "minecraft:water_bucket" + }, + "C": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "minecraft:stone_sword" + } +} \ No newline at end of file