recipes: update to match 0.2.1.20

This commit is contained in:
Danny Robson 2020-03-01 09:25:13 +11:00
parent 9ad72b06d4
commit 519e42c092
12 changed files with 89 additions and 12 deletions

View File

@ -7,7 +7,7 @@
"recipes": [
{
"input": {
"circuit_board": 1,
"circuit_board": 2,
"quickwire": 18
},
"output": {

View File

@ -6,13 +6,14 @@
"recipes": [
{
"input": {
"aluminum_ingot": 12,
"aluminum_ingot": 3,
"copper_ingot": 2
},
"output": {
"alclad_aluminum_sheet": 3
},
"crafting_time": 12
"crafting_time": 12,
"clicks": 3
}
]
}

View File

@ -13,7 +13,8 @@
"output": {
"aluminum_ingot": 2
},
"crafting_time": 4
"crafting_time": 4,
"clicks": 4
}
]
}

View File

@ -0,0 +1,44 @@
{
"type": [
"component"
],
"machine": ["constructor", "_craft_bench"],
"recipes": [
{
"input": {
"leaves": 10
},
"output": {
"biomass": 6
},
"crafting_time": 4
},
{
"input": {
"wood": 5
},
"output": {
"biomass": 25
},
"crafting_Time": 4
},
{
"input": {
"mycelia": 10
},
"output": {
"biomass": 10
},
"crafting_Time": 4
},
{
"input": {
"alien_carapace": 1
},
"output": {
"biomass": 100
},
"crafting_Time": 4
}
]
}

View File

@ -11,7 +11,7 @@
"plastic": 6
},
"output": {
"circuit_board": 1
"circuit_board": 2
},
"crafting_time": 12,
"clicks": 3,

View File

@ -7,7 +7,7 @@
"recipes": [
{
"input": {
"circuit_board": 5,
"circuit_board": 10,
"cable": 12,
"plastic": 18,
"screw": 60

View File

@ -8,7 +8,7 @@
{
"input": {
"reinforced_iron_plate": 3,
"iron_rod": 3
"iron_rod": 6
},
"output": {
"modular_frame": 1

View File

@ -11,7 +11,7 @@
"coal": 3
},
"output": {
"steel_ingot": 2
"steel_ingot": 3
},
"crafting_time": 4,
"clicks": 4,

View File

@ -2,7 +2,7 @@
"type": [
"component"
],
"machine": "constructor",
"machine": "assembler",
"recipes": [
{
"input": {

View File

@ -4,8 +4,14 @@
"recipes":
[
{
"input": { },
"output": { "silica": 1 }
"input": {
"quart": 2
},
"output": {
"silica": 3
},
"crafting_time": 4,
"clicks": 1
}
]
}

View File

@ -0,0 +1,24 @@
{
"type": [
"machine"
],
"machine": "craft_bench",
"requires": "hub_upgrade_2",
"power_usage": 4,
"size": [
6,
3,
3
],
"recipes": [
{
"input": {
"iron_plate": 3,
"iron_rod": 2
},
"output": {
"craft_bench": 1
}
}
]
}

View File

@ -14,7 +14,8 @@
"output": {
"portable_miner": 1
},
"requires": "hub_upgrade_1"
"requires": "hub_upgrade_1",
"clicks": 10
}
]
}