From 1c8b8e6e5813e7c1ac8d28ae707e5a53b42daa7d Mon Sep 17 00:00:00 2001 From: drcrazy Date: Mon, 21 Dec 2020 18:05:23 +0300 Subject: [PATCH] Ability to grind whole coal block at once. Closes #2293 --- .../recipes/grinder/coal_dust_from_block.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/main/resources/data/techreborn/recipes/grinder/coal_dust_from_block.json diff --git a/src/main/resources/data/techreborn/recipes/grinder/coal_dust_from_block.json b/src/main/resources/data/techreborn/recipes/grinder/coal_dust_from_block.json new file mode 100644 index 000000000..e6d1d76df --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/grinder/coal_dust_from_block.json @@ -0,0 +1,16 @@ +{ + "type": "techreborn:grinder", + "power": 2, + "time": 400, + "ingredients" : [ + { + "item": "minecraft:coal_block" + } + ], + "results" : [ + { + "item": "techreborn:coal_dust", + "count": 9 + } + ] +} \ No newline at end of file