Compare commits

..

No commits in common. "213ceb89f750dbc9066ed71d14b237b3ff64e4ba" and "b16c16ae0aace90dab2f2aa70d49f53601472ebc" have entirely different histories.

3 changed files with 3 additions and 17 deletions

View file

@ -206,7 +206,7 @@ local copper_robot_technology = {
},
prerequisites = { "basic-construction-robotics-gold", "automation-science-pack" },
unit = {
count = 50,
count = 200,
ingredients = {
{ "automation-science-pack", 1 }
},

View file

@ -72,7 +72,8 @@ data:extend({
ingredients = {
{ type = "item", name = "stone-brick", amount = 5 },
{ type = "item", name = "wooden-gear-wheel", amount = 20 },
{ type = "item", name = "lumber", amount = 20 }
{ type = "item", name = "lumber", amount = 20 },
{ type = "item", name = "gold-plate", amount = 20 }
},
results = { { type = "item", name = "burner-agricultural-tower", amount = 1 } },
enabled = false

View file

@ -40,21 +40,6 @@ data.raw.recipe["burner-inserter"].ingredients = {
}
-- Lab
local lab = data.raw["lab"]["lab"]
lab.inputs = table.assign({
"wood-science-pack",
"steam-science-pack"
}, lab.inputs)
local biolab = data.raw["lab"]["biolab"]
biolab.inputs = table.assign({
"wood-science-pack",
"steam-science-pack"
}, biolab.inputs)
-- Wood processing
local wood_processing = data.raw.recipe["wood-processing"]