From e1c229d16498d418cb6e4ea1f6cc409508e02b11 Mon Sep 17 00:00:00 2001 From: Sunskimmer822 <92886026+Sunskimmer822@users.noreply.github.com> Date: Thu, 17 Mar 2022 14:37:22 -0700 Subject: [PATCH 1/2] gold --- src/main/resources/data/shitmod/recipes/gold_axe.json | 6 ++++++ src/main/resources/data/shitmod/recipes/gold_hoe.json | 6 ++++++ src/main/resources/data/shitmod/recipes/gold_pickaxe.json | 6 ++++++ src/main/resources/data/shitmod/recipes/gold_shovel.json | 6 ++++++ src/main/resources/data/shitmod/recipes/gold_sword.json | 6 ++++++ 5 files changed, 30 insertions(+) create mode 100644 src/main/resources/data/shitmod/recipes/gold_axe.json create mode 100644 src/main/resources/data/shitmod/recipes/gold_hoe.json create mode 100644 src/main/resources/data/shitmod/recipes/gold_pickaxe.json create mode 100644 src/main/resources/data/shitmod/recipes/gold_shovel.json create mode 100644 src/main/resources/data/shitmod/recipes/gold_sword.json diff --git a/src/main/resources/data/shitmod/recipes/gold_axe.json b/src/main/resources/data/shitmod/recipes/gold_axe.json new file mode 100644 index 0000000..e9afca7 --- /dev/null +++ b/src/main/resources/data/shitmod/recipes/gold_axe.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:smithing", + "base": {"item":"minecraft:stone_axe"}, + "addition": {"item":"minecraft:gold_ingot"}, + "result": {"item":"minecraft:gold_axe"} +} \ No newline at end of file diff --git a/src/main/resources/data/shitmod/recipes/gold_hoe.json b/src/main/resources/data/shitmod/recipes/gold_hoe.json new file mode 100644 index 0000000..45d80fe --- /dev/null +++ b/src/main/resources/data/shitmod/recipes/gold_hoe.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:smithing", + "base": {"item":"minecraft:stone_hoe"}, + "addition": {"item":"minecraft:gold_ingot"}, + "result": {"item":"minecraft:gold_hoe"} +} \ No newline at end of file diff --git a/src/main/resources/data/shitmod/recipes/gold_pickaxe.json b/src/main/resources/data/shitmod/recipes/gold_pickaxe.json new file mode 100644 index 0000000..192892d --- /dev/null +++ b/src/main/resources/data/shitmod/recipes/gold_pickaxe.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:smithing", + "base": {"item":"minecraft:stone_pickaxe"}, + "addition": {"item":"minecraft:gold_ingot"}, + "result": {"item":"minecraft:gold_pickaxe"} +} \ No newline at end of file diff --git a/src/main/resources/data/shitmod/recipes/gold_shovel.json b/src/main/resources/data/shitmod/recipes/gold_shovel.json new file mode 100644 index 0000000..28aec71 --- /dev/null +++ b/src/main/resources/data/shitmod/recipes/gold_shovel.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:smithing", + "base": {"item":"minecraft:stone_shovel"}, + "addition": {"item":"minecraft:gold_ingot"}, + "result": {"item":"minecraft:gold_shovel"} +} \ No newline at end of file diff --git a/src/main/resources/data/shitmod/recipes/gold_sword.json b/src/main/resources/data/shitmod/recipes/gold_sword.json new file mode 100644 index 0000000..3811a8d --- /dev/null +++ b/src/main/resources/data/shitmod/recipes/gold_sword.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:smithing", + "base": {"item":"minecraft:stone_sword"}, + "addition": {"item":"minecraft:gold_ingot"}, + "result": {"item":"minecraft:gold_sword"} +} \ No newline at end of file From 96a4bda0bf1eae45f5b327825aec635000158d36 Mon Sep 17 00:00:00 2001 From: D_mon <82187465+Amsg-Two@users.noreply.github.com> Date: Thu, 17 Mar 2022 14:37:30 -0500 Subject: [PATCH 2/2] smithing recipe --- src/main/resources/data/shitmod/recipes/diamond_shovel.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/main/resources/data/shitmod/recipes/diamond_shovel.json diff --git a/src/main/resources/data/shitmod/recipes/diamond_shovel.json b/src/main/resources/data/shitmod/recipes/diamond_shovel.json new file mode 100644 index 0000000..a1caee1 --- /dev/null +++ b/src/main/resources/data/shitmod/recipes/diamond_shovel.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:smithing", + "base": {"item":"minecraft:iron_shovel"}, + "addition": {"item":"minecraft:diamond"}, + "result": {"item":"minecraft:diamond_shovel"} +}