From 70789d3ce0f7000e846d92367542f5b1117f1117 Mon Sep 17 00:00:00 2001 From: drcrazy Date: Mon, 13 Jan 2020 16:19:54 +0300 Subject: [PATCH] Sweet berries and kelp got their methane and plantball recipes. Closes #1977 --- .../techreborn/recipes/centrifuge/kelp.json | 23 +++++++++++++++++++ .../compressed_plantball_from_kelp.json | 16 +++++++++++++ ...mpressed_plantball_from_sweet_berries.json | 16 +++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 src/main/resources/data/techreborn/recipes/centrifuge/kelp.json create mode 100644 src/main/resources/data/techreborn/recipes/compressor/compressed_plantball_from_kelp.json create mode 100644 src/main/resources/data/techreborn/recipes/compressor/compressed_plantball_from_sweet_berries.json diff --git a/src/main/resources/data/techreborn/recipes/centrifuge/kelp.json b/src/main/resources/data/techreborn/recipes/centrifuge/kelp.json new file mode 100644 index 000000000..1de3ea955 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/centrifuge/kelp.json @@ -0,0 +1,23 @@ +{ + "type": "techreborn:centrifuge", + "power": 5, + "time": 5000, + "ingredients": [ + { + "item": "minecraft:kelp", + "count": 32 + }, + { + "item": "techreborn:cell", + "nbt": "null" + } + ], + "results": [ + { + "item": "techreborn:cell", + "nbt": { + "fluid": "techreborn:methane" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/compressor/compressed_plantball_from_kelp.json b/src/main/resources/data/techreborn/recipes/compressor/compressed_plantball_from_kelp.json new file mode 100644 index 000000000..1b193d2e8 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/compressor/compressed_plantball_from_kelp.json @@ -0,0 +1,16 @@ +{ + "type": "techreborn:compressor", + "power": 2, + "time": 400, + "ingredients": [ + { + "item": "minecraft:kelp", + "count": 8 + } + ], + "results": [ + { + "item": "techreborn:compressed_plantball" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/compressor/compressed_plantball_from_sweet_berries.json b/src/main/resources/data/techreborn/recipes/compressor/compressed_plantball_from_sweet_berries.json new file mode 100644 index 000000000..cd17e7ba0 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/compressor/compressed_plantball_from_sweet_berries.json @@ -0,0 +1,16 @@ +{ + "type": "techreborn:compressor", + "power": 2, + "time": 400, + "ingredients": [ + { + "item": "minecraft:sweet_berries", + "count": 8 + } + ], + "results": [ + { + "item": "techreborn:compressed_plantball" + } + ] +} \ No newline at end of file