From fa3e7493632aa7099850af73bcb192960c6155f9 Mon Sep 17 00:00:00 2001 From: Sergeant Acoustic Date: Wed, 27 Aug 2025 00:58:53 +0100 Subject: [PATCH] Re-remove redundant stone to copper recipies These are dealt with by the stone_tool_materials tag --- .../data/minecraft/recipes/stone_axe.json | 17 ----------------- .../data/minecraft/recipes/stone_hoe.json | 17 ----------------- .../data/minecraft/recipes/stone_pickaxe.json | 17 ----------------- .../data/minecraft/recipes/stone_shovel.json | 17 ----------------- .../data/minecraft/recipes/stone_sword.json | 17 ----------------- 5 files changed, 85 deletions(-) delete mode 100644 src/main/resources/data/minecraft/recipes/stone_axe.json delete mode 100644 src/main/resources/data/minecraft/recipes/stone_hoe.json delete mode 100644 src/main/resources/data/minecraft/recipes/stone_pickaxe.json delete mode 100644 src/main/resources/data/minecraft/recipes/stone_shovel.json delete mode 100644 src/main/resources/data/minecraft/recipes/stone_sword.json diff --git a/src/main/resources/data/minecraft/recipes/stone_axe.json b/src/main/resources/data/minecraft/recipes/stone_axe.json deleted file mode 100644 index 0549c48..0000000 --- a/src/main/resources/data/minecraft/recipes/stone_axe.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category":"equipment", - "pattern": [ - " 11", - " 21", - " 2 " - ], - "key": { - "1":{"item":"minecraft:copper_ingot"}, - "2":{"item":"minecraft:stick"} - }, - "result": { - "item":"minecraft:stone_axe" - }, - "show_notification":true -} diff --git a/src/main/resources/data/minecraft/recipes/stone_hoe.json b/src/main/resources/data/minecraft/recipes/stone_hoe.json deleted file mode 100644 index 1ded1ac..0000000 --- a/src/main/resources/data/minecraft/recipes/stone_hoe.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category":"equipment", - "pattern": [ - " 11", - " 2 ", - " 2 " - ], - "key": { - "1":{"item":"minecraft:copper_ingot"}, - "2":{"item":"minecraft:stick"} - }, - "result": { - "item":"minecraft:stone_hoe" - }, - "show_notification":true -} diff --git a/src/main/resources/data/minecraft/recipes/stone_pickaxe.json b/src/main/resources/data/minecraft/recipes/stone_pickaxe.json deleted file mode 100644 index 3a42f45..0000000 --- a/src/main/resources/data/minecraft/recipes/stone_pickaxe.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category":"equipment", - "pattern": [ - "111", - " 2 ", - " 2 " - ], - "key": { - "1":{"item":"minecraft:copper_ingot"}, - "2":{"item":"minecraft:stick"} - }, - "result": { - "item":"minecraft:stone_pickaxe" - }, - "show_notification":true -} diff --git a/src/main/resources/data/minecraft/recipes/stone_shovel.json b/src/main/resources/data/minecraft/recipes/stone_shovel.json deleted file mode 100644 index 8432ab1..0000000 --- a/src/main/resources/data/minecraft/recipes/stone_shovel.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category":"equipment", - "pattern": [ - " 1 ", - " 2 ", - " 2 " - ], - "key": { - "1":{"item":"minecraft:copper_ingot"}, - "2":{"item":"minecraft:stick"} - }, - "result": { - "item":"minecraft:stone_shovel" - }, - "show_notification":true -} diff --git a/src/main/resources/data/minecraft/recipes/stone_sword.json b/src/main/resources/data/minecraft/recipes/stone_sword.json deleted file mode 100644 index b34836f..0000000 --- a/src/main/resources/data/minecraft/recipes/stone_sword.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "category":"equipment", - "pattern": [ - " 1 ", - " 1 ", - " 2 " - ], - "key": { - "1":{"item":"minecraft:copper_ingot"}, - "2":{"item":"minecraft:stick"} - }, - "result": { - "item":"minecraft:stone_sword" - }, - "show_notification":true -}