data/recipes: add more recipes

This commit is contained in:
Danny Robson 2019-04-27 18:34:50 +10:00
parent 8cc17d1ce6
commit cd568a1263
9 changed files with 45 additions and 14 deletions

View File

@ -7,4 +7,4 @@
"clicks": 4, "clicks": 4,
"requires": "caterium_technology" "requires": "caterium_technology"
} }
] ]

View File

@ -5,6 +5,6 @@
"machine": "constructor", "machine": "constructor",
"crafting_time": 4, "crafting_time": 4,
"clicks": 1, "clicks": 1,
"stage": "establishing" "requires": "hub_upgrade_2"
} }
] ]

View File

@ -1,9 +1,9 @@
[ [
{ {
"input": { "iron_ingot": 1 }, "input": { "iron_ingot": 1 },
"output": { "iron_rod": 1 }, "output": { "iron_rod": 1 },
"machine": "constructor", "machine": "constructor",
"crafting_time": 4, "crafting_time": 4,
"clicks": 1 "clicks": 1
} }
] ]

View File

@ -0,0 +1,8 @@
[
{
"input": { },
"output": { "limestone": 1 },
"machine": "miner",
"requires": "hub_upgrade_2"
}
]

View File

@ -0,0 +1,10 @@
[
{
"input": { "reinforced_iron_plate": 3, "cable": 2 },
"output": { "constructor": 1 },
"machine": "craft_bench",
"requires": "hub_upgrade_2",
"power_usage": 4,
"size": [ 9, 11, 8 ]
}
]

View File

@ -0,0 +1,10 @@
[
{
"input": { "iron_rod": 5 },
"output": { "wire": 8 },
"machine": "craft_bench",
"requires": "hub_upgrade_1",
"power_usage": 4,
"size": [ 6, 10, 10 ]
}
]

View File

@ -1,6 +1,6 @@
[ [
{ {
"input": { "reinforced_iron_plate": 3, "rod": 3 }, "input": { "reinforced_iron_plate": 3, "iron_rod": 3 },
"output": { "modular_frame": 1 }, "output": { "modular_frame": 1 },
"machine": "assembler", "machine": "assembler",
"crafting_time": 15, "crafting_time": 15,

View File

@ -2,7 +2,9 @@
{ {
"input": { "iron_plate": 4, "screw": 24 }, "input": { "iron_plate": 4, "screw": 24 },
"output": { "reinforced_iron_plate": 1 }, "output": { "reinforced_iron_plate": 1 },
"machine": "assembler",
"crafting_time": 12, "crafting_time": 12,
"clicks": 3 "clicks": 3,
"requires": "hub_upgrade_2"
} }
] ]

View File

@ -4,6 +4,7 @@
"output": { "screw": 6 }, "output": { "screw": 6 },
"machine": "constructor", "machine": "constructor",
"crafting_time": 4, "crafting_time": 4,
"clicks": 2 "clicks": 2,
"requires": "hub_upgrade_2"
} }
] ]