items: add aluminum derived recipes

This commit is contained in:
Danny Robson 2019-05-03 11:38:03 +10:00
parent d0f66397f0
commit 71227e5523
7 changed files with 122 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{
"type": [
"component"
],
"machine": "foundry",
"stack_size": 100,
"recipes": [
{
"input": {
"bauxite": 7,
"silica": 6
},
"output": {
"aluminum_ingot": 2
},
"crafting_time": 4
}
]
}

View File

@ -0,0 +1,18 @@
{
"type": [
"component"
],
"machine": "constructor",
"stack_size": 100,
"recipes": [
{
"input": {
"aluminum_ingot": 1
},
"output": {
"aluminum_sheet": 1
},
"crafting_time": 4
}
]
}

View File

@ -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
}
]
}

View File

@ -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
}
]
}

View File

@ -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
}
]
}

View File

@ -0,0 +1,11 @@
{
"type": [ "resource" ],
"machine": "miner",
"recipes":
[
{
"input": { },
"output": { "bauxite": 1 }
}
]
}

View File

@ -0,0 +1,11 @@
{
"type": [ "resource" ],
"machine": "miner",
"recipes":
[
{
"input": { },
"output": { "silica": 1 }
}
]
}