From 1575ace96e8a71d53b74ff7039dcc370717c548a Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Sun, 1 Mar 2020 13:28:34 +1100 Subject: [PATCH] recipes: add space elevator inputs for 0.3 --- .../components/adaptive_control_unit.json | 20 +++++++++++++++++++ .../items/components/automated_wiring.json | 18 +++++++++++++++++ .../items/components/smart_plating.json | 18 +++++++++++++++++ .../items/components/versatile_framework.json | 18 +++++++++++++++++ 4 files changed, 74 insertions(+) create mode 100644 data/recipes/items/components/adaptive_control_unit.json create mode 100644 data/recipes/items/components/automated_wiring.json create mode 100644 data/recipes/items/components/smart_plating.json create mode 100644 data/recipes/items/components/versatile_framework.json diff --git a/data/recipes/items/components/adaptive_control_unit.json b/data/recipes/items/components/adaptive_control_unit.json new file mode 100644 index 0000000..e47a98e --- /dev/null +++ b/data/recipes/items/components/adaptive_control_unit.json @@ -0,0 +1,20 @@ +{ + "type": [ + "component" + ], + "machine": "manufacturer", + "recipes": [ + { + "input": { + "automated_wiring": 15, + "circuit_board": 10, + "heavy_modular_frame": 2, + "computer": 2 + }, + "output": { + "adapative_control_unit": 2 + }, + "crafting_time": 60 + } + ] +} diff --git a/data/recipes/items/components/automated_wiring.json b/data/recipes/items/components/automated_wiring.json new file mode 100644 index 0000000..d763555 --- /dev/null +++ b/data/recipes/items/components/automated_wiring.json @@ -0,0 +1,18 @@ +{ + "type": [ + "component" + ], + "machine": "assembler", + "recipes": [ + { + "input": { + "stator": 1, + "cable": 20 + }, + "output": { + "automated_wiring": 1 + }, + "crafting_time": 24 + } + ] +} diff --git a/data/recipes/items/components/smart_plating.json b/data/recipes/items/components/smart_plating.json new file mode 100644 index 0000000..566f8d6 --- /dev/null +++ b/data/recipes/items/components/smart_plating.json @@ -0,0 +1,18 @@ +{ + "type": [ + "component" + ], + "machine": "assembler", + "recipes": [ + { + "input": { + "reinforced_iron_plate": 1, + "roto": 1 + }, + "output": { + "smart_plating": 1 + }, + "crafting_time": 30 + } + ] +} diff --git a/data/recipes/items/components/versatile_framework.json b/data/recipes/items/components/versatile_framework.json new file mode 100644 index 0000000..e8acbab --- /dev/null +++ b/data/recipes/items/components/versatile_framework.json @@ -0,0 +1,18 @@ +{ + "type": [ + "component" + ], + "machine": "assembler", + "recipes": [ + { + "input": { + "modular_frame": 1, + "steal_beam": 2 + }, + "output": { + "versatile_framework": 2 + }, + "crafting_time": 12 + } + ] +}