From 9620129c473240c28c49b692dc697110645839ea Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Sun, 7 Jul 2019 15:36:37 +1000 Subject: [PATCH] recipes: add alclad derived components --- .../components/alclad_aluminum_sheet.json | 18 +++++++++++++++++ .../items/components/aluminum_sheet.json | 18 ----------------- data/recipes/items/components/battery.json | 20 +++++++++++++++++++ data/recipes/items/components/heat_sink.json | 13 +++++++++++- 4 files changed, 50 insertions(+), 19 deletions(-) create mode 100644 data/recipes/items/components/alclad_aluminum_sheet.json delete mode 100644 data/recipes/items/components/aluminum_sheet.json create mode 100644 data/recipes/items/components/battery.json diff --git a/data/recipes/items/components/alclad_aluminum_sheet.json b/data/recipes/items/components/alclad_aluminum_sheet.json new file mode 100644 index 0000000..b56607e --- /dev/null +++ b/data/recipes/items/components/alclad_aluminum_sheet.json @@ -0,0 +1,18 @@ +{ + "type": [ + "component" + ], + "machine": "assembler", + "recipes": [ + { + "input": { + "aluminum_ingot": 12, + "copper_ingot": 2 + }, + "output": { + "alclad_aluminum_sheet": 3 + }, + "crafting_time": 12 + } + ] +} diff --git a/data/recipes/items/components/aluminum_sheet.json b/data/recipes/items/components/aluminum_sheet.json deleted file mode 100644 index 40ac3e1..0000000 --- a/data/recipes/items/components/aluminum_sheet.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": [ - "component" - ], - "machine": "constructor", - "stack_size": 100, - "recipes": [ - { - "input": { - "aluminum_ingot": 1 - }, - "output": { - "aluminum_sheet": 1 - }, - "crafting_time": 4 - } - ] -} diff --git a/data/recipes/items/components/battery.json b/data/recipes/items/components/battery.json new file mode 100644 index 0000000..4453bfd --- /dev/null +++ b/data/recipes/items/components/battery.json @@ -0,0 +1,20 @@ +{ + "type": [ + "component" + ], + "machine": "manufacturer", + "recipes": [ + { + "input": { + "alclad_aluminum_sheet": 8, + "wire": 24, + "sulfur": 20, + "plastic": 9 + }, + "output": { + "batter": 3 + }, + "crafting_time": 32 + } + ] +} diff --git a/data/recipes/items/components/heat_sink.json b/data/recipes/items/components/heat_sink.json index 5dbebd4..f8673d4 100644 --- a/data/recipes/items/components/heat_sink.json +++ b/data/recipes/items/components/heat_sink.json @@ -7,13 +7,24 @@ "recipes": [ { "input": { - "aluminum_sheet": 4, + "alclad_aluminum_sheet": 4, "rubber": 10 }, "output": { "heat_sink": 1 }, "crafting_time": 12 + }, + { + "input": { + "alclad_aluminum_sheet": 8, + "wire": 36 + }, + "output": { + "heat_sink": 3 + }, + "crafting_time": 24, + "requires": "alternative_heat_sink" } ] }