diff --git a/data/recipes/items/components/aluminum_ingot.json b/data/recipes/items/components/aluminum_ingot.json new file mode 100644 index 0000000..f72d545 --- /dev/null +++ b/data/recipes/items/components/aluminum_ingot.json @@ -0,0 +1,19 @@ +{ + "type": [ + "component" + ], + "machine": "foundry", + "stack_size": 100, + "recipes": [ + { + "input": { + "bauxite": 7, + "silica": 6 + }, + "output": { + "aluminum_ingot": 2 + }, + "crafting_time": 4 + } + ] +} diff --git a/data/recipes/items/components/aluminum_sheet.json b/data/recipes/items/components/aluminum_sheet.json new file mode 100644 index 0000000..40ac3e1 --- /dev/null +++ b/data/recipes/items/components/aluminum_sheet.json @@ -0,0 +1,18 @@ +{ + "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/heat_sink.json b/data/recipes/items/components/heat_sink.json new file mode 100644 index 0000000..5dbebd4 --- /dev/null +++ b/data/recipes/items/components/heat_sink.json @@ -0,0 +1,20 @@ +{ + "type": [ + "component" + ], + "machine": "assembler", + "stack_size": 100, + "recipes": [ + { + "input": { + "aluminum_sheet": 4, + "rubber": 10 + }, + "output": { + "heat_sink": 1 + }, + "crafting_time": 12 + } + ] +} + diff --git a/data/recipes/items/components/radio_control_unit.json b/data/recipes/items/components/radio_control_unit.json new file mode 100644 index 0000000..376c17d --- /dev/null +++ b/data/recipes/items/components/radio_control_unit.json @@ -0,0 +1,21 @@ +{ + "type": [ + "component" + ], + "machine": "manufacturer", + "stack_size": 50, + "recipes": [ + { + "input": { + "heat_sink": 4, + "rubber": 24, + "crystal_oscillator": 1, + "computer": 1 + }, + "output": { + "radio_control_unit": 1 + }, + "crafting_time": 12 + } + ] +} diff --git a/data/recipes/items/components/turbo_motor.json b/data/recipes/items/components/turbo_motor.json new file mode 100644 index 0000000..96e8f88 --- /dev/null +++ b/data/recipes/items/components/turbo_motor.json @@ -0,0 +1,22 @@ +{ + "type": [ + "component" + ], + "machine": "manufacturer", + "stack_size": 50, + "recipes": [ + { + "input": { + "heat_sink": 4, + "radio_control_unit": 2, + "motor": 4, + "rubber": 40 + }, + "output": { + "turbo_motor": 1 + }, + "crafting_time": 32 + } + ] +} + diff --git a/data/recipes/items/resources/bauxite.json b/data/recipes/items/resources/bauxite.json new file mode 100644 index 0000000..27ad04e --- /dev/null +++ b/data/recipes/items/resources/bauxite.json @@ -0,0 +1,11 @@ +{ + "type": [ "resource" ], + "machine": "miner", + "recipes": + [ + { + "input": { }, + "output": { "bauxite": 1 } + } + ] +} diff --git a/data/recipes/items/resources/silica.json b/data/recipes/items/resources/silica.json new file mode 100644 index 0000000..bcd4af6 --- /dev/null +++ b/data/recipes/items/resources/silica.json @@ -0,0 +1,11 @@ +{ + "type": [ "resource" ], + "machine": "miner", + "recipes": + [ + { + "input": { }, + "output": { "silica": 1 } + } + ] +}