items: add aluminum derived recipes
This commit is contained in:
parent
d0f66397f0
commit
71227e5523
19
data/recipes/items/components/aluminum_ingot.json
Normal file
19
data/recipes/items/components/aluminum_ingot.json
Normal 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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
18
data/recipes/items/components/aluminum_sheet.json
Normal file
18
data/recipes/items/components/aluminum_sheet.json
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"type": [
|
||||||
|
"component"
|
||||||
|
],
|
||||||
|
"machine": "constructor",
|
||||||
|
"stack_size": 100,
|
||||||
|
"recipes": [
|
||||||
|
{
|
||||||
|
"input": {
|
||||||
|
"aluminum_ingot": 1
|
||||||
|
},
|
||||||
|
"output": {
|
||||||
|
"aluminum_sheet": 1
|
||||||
|
},
|
||||||
|
"crafting_time": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
20
data/recipes/items/components/heat_sink.json
Normal file
20
data/recipes/items/components/heat_sink.json
Normal 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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
21
data/recipes/items/components/radio_control_unit.json
Normal file
21
data/recipes/items/components/radio_control_unit.json
Normal 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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
22
data/recipes/items/components/turbo_motor.json
Normal file
22
data/recipes/items/components/turbo_motor.json
Normal 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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
11
data/recipes/items/resources/bauxite.json
Normal file
11
data/recipes/items/resources/bauxite.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": [ "resource" ],
|
||||||
|
"machine": "miner",
|
||||||
|
"recipes":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"input": { },
|
||||||
|
"output": { "bauxite": 1 }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
11
data/recipes/items/resources/silica.json
Normal file
11
data/recipes/items/resources/silica.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"type": [ "resource" ],
|
||||||
|
"machine": "miner",
|
||||||
|
"recipes":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"input": { },
|
||||||
|
"output": { "silica": 1 }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user