recipes: add nuclear components and resources

This commit is contained in:
Danny Robson 2019-07-07 15:22:50 +10:00
parent 47e6c674ac
commit 5b92d4509f
4 changed files with 102 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{
"type": [
"component"
],
"machine": "constructor",
"recipes": [
{
"input": {
"stator": 3,
"ai_limiter": 2
},
"output": {
"electromagnetic_control_rod": 1
},
"crafting_time": 30
},
{
"input": {
"stator": 6,
"high_speed_connector": 3
},
"output": {
"electromagnetic_control_rod": 3
},
"crafting_time": 60
}
]
}

View File

@ -0,0 +1,32 @@
{
"type": [
"component"
],
"machine": "constructor",
"recipes": [
{
"input": {
"uranium_cell": 25,
"encased_industrial_beam": 3,
"electromagnetic_control_rod": 5
},
"output": {
"nuclear_fuel_rod": 1
},
"crafting_time": 150
},
{
"input": {
"uranium_cell": 50,
"electromagnetic_control_rod": 10,
"crystal_oscillator": 3,
"beacon": 6
},
"output": {
"nuclear_fuel_rod": 3
},
"crafting_time": 300,
"requires": "alternative_nuclear_fuel_rod"
}
]
}

View File

@ -0,0 +1,31 @@
{
"type": [
"component"
],
"machine": "constructor",
"recipes": [
{
"input": {
"uranium": 45,
"concrete": 9
},
"output": {
"uranium_cell": 10
},
"crafting_time": 60
},
{
"input": {
"uranium": 45,
"sulfur": 45,
"silica": 45,
"quickwire": 60
},
"output": {
"uranium_cell": 35
},
"crafting_time": 120,
"requires": "alternative_uranium_cell"
}
]
}

View File

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