diff --git a/src/main/resources/data/squaredadditions/recipes/copper_axe.json b/src/main/resources/data/squaredadditions/recipes/copper_axe.json new file mode 100644 index 0000000..1c036ad --- /dev/null +++ b/src/main/resources/data/squaredadditions/recipes/copper_axe.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "CC ", + "CS ", + " S " + ], + "key": { + "C": { + "item": "minecraft:copper_ingot" + }, + "S": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "squaredadditions:copper_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/data/squaredadditions/recipes/copper_hoe.json b/src/main/resources/data/squaredadditions/recipes/copper_hoe.json new file mode 100644 index 0000000..2917e58 --- /dev/null +++ b/src/main/resources/data/squaredadditions/recipes/copper_hoe.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "CC ", + " S ", + " S " + ], + "key": { + "C": { + "item": "minecraft:copper_ingot" + }, + "S": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "squaredadditions:copper_hoe" + } +} \ No newline at end of file diff --git a/src/main/resources/data/squaredadditions/recipes/copper_pickaxe.json b/src/main/resources/data/squaredadditions/recipes/copper_pickaxe.json new file mode 100644 index 0000000..f29c4cb --- /dev/null +++ b/src/main/resources/data/squaredadditions/recipes/copper_pickaxe.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "CCC", + " S ", + " S " + ], + "key": { + "C": { + "item": "minecraft:copper_ingot" + }, + "S": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "squaredadditions:copper_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/data/squaredadditions/recipes/copper_shovel.json b/src/main/resources/data/squaredadditions/recipes/copper_shovel.json new file mode 100644 index 0000000..16b9c34 --- /dev/null +++ b/src/main/resources/data/squaredadditions/recipes/copper_shovel.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "C", + "S", + "S" + ], + "key": { + "C": { + "item": "minecraft:copper_ingot" + }, + "S": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "squaredadditions:copper_shovel" + } +} \ No newline at end of file diff --git a/src/main/resources/data/squaredadditions/recipes/copper_sword.json b/src/main/resources/data/squaredadditions/recipes/copper_sword.json new file mode 100644 index 0000000..3bbda4e --- /dev/null +++ b/src/main/resources/data/squaredadditions/recipes/copper_sword.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "C", + "C", + "S" + ], + "key": { + "C": { + "item": "minecraft:copper_ingot" + }, + "S": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "squaredadditions:copper_sword" + } +} \ No newline at end of file