From 140ff2f3651b1c0114d4e28da236169dc90063bf Mon Sep 17 00:00:00 2001 From: KnatteAnka Date: Fri, 17 Jul 2020 05:52:03 +0200 Subject: [PATCH] wool > string (extractor), gravel > flint (extractor) and gravel > sand (grinder) closes #2164 (#2165) * Add Flint to Extractor * Add String from Wool * Delete Flint in Grinder moved to Extractor * Update string_from_wool.json Co-authored-by: Justin Vitale <4002351+justinvvitale@users.noreply.github.com> --- .../recipes/{grinder => extractor}/flint.json | 2 +- .../recipes/grinder/string_from_wool.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) rename src/main/resources/data/techreborn/recipes/{grinder => extractor}/flint.json (83%) create mode 100644 src/main/resources/data/techreborn/recipes/grinder/string_from_wool.json diff --git a/src/main/resources/data/techreborn/recipes/grinder/flint.json b/src/main/resources/data/techreborn/recipes/extractor/flint.json similarity index 83% rename from src/main/resources/data/techreborn/recipes/grinder/flint.json rename to src/main/resources/data/techreborn/recipes/extractor/flint.json index d33c43b66..4fe5aa0ad 100644 --- a/src/main/resources/data/techreborn/recipes/grinder/flint.json +++ b/src/main/resources/data/techreborn/recipes/extractor/flint.json @@ -1,5 +1,5 @@ { - "type": "techreborn:grinder", + "type": "techreborn:extractor", "power": 2, "time": 200, "ingredients" : [ diff --git a/src/main/resources/data/techreborn/recipes/grinder/string_from_wool.json b/src/main/resources/data/techreborn/recipes/grinder/string_from_wool.json new file mode 100644 index 000000000..bff3a31fc --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/grinder/string_from_wool.json @@ -0,0 +1,16 @@ +{ + "type": "techreborn:grinder", + "power": 3, + "time": 300, + "ingredients": [ + { + "tag": "minecraft:wool" + } + ], + "results": [ + { + "item": "minecraft:string", + "count": 4 + } + ] +}