recipes/machine: add assembler, manufacturer, and oil_pump

This commit is contained in:
Danny Robson 2019-04-27 18:50:41 +10:00
parent de865f8ab8
commit 3a48ce287f
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,9 @@
[
{
"input": { "modular_frame": 3, "rotor": 4, "cable": 10 },
"output": { "assembler": 1 },
"machine": "craft_bench",
"power_usage": 15,
"size": [ 11, 14, 8 ]
}
]

View File

@ -0,0 +1,9 @@
[
{
"input": { "heavy_modular_frame": 2, "motor": 2, "cable": 25, "computer": 3 },
"output": { "manufacturer": 1 },
"machine": "craft_bench",
"power_usage": 55,
"size": [ 20, 22, 12 ]
}
]

View File

@ -0,0 +1,9 @@
[
{
"input": { "heavy_modular_frame": 2, "motor": 3, "cable": 10 },
"output": { "oil_pump": 1 },
"machine": "craft_bench",
"power_usage": 40,
"size": [ 8, 14, 20 ]
}
]