From d68888df57baccaa60797633aa29ec47e6370f35 Mon Sep 17 00:00:00 2001 From: Sturmlilie <63550306+Sturmlilie@users.noreply.github.com> Date: Sat, 25 Apr 2020 15:48:56 +0200 Subject: [PATCH] Blockus compatibility (1.15+) (#2091) * Balance marble dust centrifuge input/output item counts * Add recipes using blockus items --- .../recipes/centrifuge/marble_dust.json | 5 ++-- .../storage/crude_storage_unit_blockus.json | 29 +++++++++++++++++++ .../grinder/marble_dust_from_limestone.json | 21 ++++++++++++++ .../grinder/marble_dust_from_marble.json | 21 ++++++++++++++ 4 files changed, 74 insertions(+), 2 deletions(-) create mode 100644 src/main/resources/data/techreborn/recipes/crafting_table/unit/storage/crude_storage_unit_blockus.json create mode 100644 src/main/resources/data/techreborn/recipes/grinder/marble_dust_from_limestone.json create mode 100644 src/main/resources/data/techreborn/recipes/grinder/marble_dust_from_marble.json diff --git a/src/main/resources/data/techreborn/recipes/centrifuge/marble_dust.json b/src/main/resources/data/techreborn/recipes/centrifuge/marble_dust.json index 73cd878f0..b2d2825f1 100644 --- a/src/main/resources/data/techreborn/recipes/centrifuge/marble_dust.json +++ b/src/main/resources/data/techreborn/recipes/centrifuge/marble_dust.json @@ -4,7 +4,8 @@ "time": 2050, "ingredients": [ { - "item": "techreborn:marble_dust" + "item": "techreborn:marble_dust", + "count": 8 } ], "results": [ @@ -16,4 +17,4 @@ "count": 7 } ] -} \ No newline at end of file +} diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/unit/storage/crude_storage_unit_blockus.json b/src/main/resources/data/techreborn/recipes/crafting_table/unit/storage/crude_storage_unit_blockus.json new file mode 100644 index 000000000..bec6599dd --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_table/unit/storage/crude_storage_unit_blockus.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:crafting_shaped", + + "pattern": [ + "WWW", + "WBW", + "WPW" + ], + + "key": { + "B": { + "tag": "blockus:barrels" + }, + "P": { + "item": "minecraft:paper" + }, + "W": { + "tag": "minecraft:planks" + } + }, + + "result": { + "item": "techreborn:crude_storage_unit" + }, + + "conditions": { + "reborncore:tag": "blockus:barrels" + } +} diff --git a/src/main/resources/data/techreborn/recipes/grinder/marble_dust_from_limestone.json b/src/main/resources/data/techreborn/recipes/grinder/marble_dust_from_limestone.json new file mode 100644 index 000000000..4356344dd --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/grinder/marble_dust_from_limestone.json @@ -0,0 +1,21 @@ +{ + "type": "techreborn:grinder", + "power": 2, + "time": 180, + + "ingredients" : [ + { + "tag": "c:limestone" + } + ], + + "results" : [ + { + "item": "techreborn:marble_dust" + } + ], + + "conditions": { + "reborncore:tag": "c:limestone" + } +} diff --git a/src/main/resources/data/techreborn/recipes/grinder/marble_dust_from_marble.json b/src/main/resources/data/techreborn/recipes/grinder/marble_dust_from_marble.json new file mode 100644 index 000000000..9c418e2be --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/grinder/marble_dust_from_marble.json @@ -0,0 +1,21 @@ +{ + "type": "techreborn:grinder", + "power": 2, + "time": 180, + + "ingredients" : [ + { + "tag": "c:marble" + } + ], + + "results" : [ + { + "item": "techreborn:marble_dust" + } + ], + + "conditions": { + "reborncore:tag": "c:marble" + } +}