Compare commits
3 commits
b16c16ae0a
...
213ceb89f7
Author | SHA1 | Date | |
---|---|---|---|
![]() |
213ceb89f7 | ||
![]() |
3d5edcc333 | ||
![]() |
39ffa8fab6 |
3 changed files with 17 additions and 3 deletions
|
@ -206,7 +206,7 @@ local copper_robot_technology = {
|
||||||
},
|
},
|
||||||
prerequisites = { "basic-construction-robotics-gold", "automation-science-pack" },
|
prerequisites = { "basic-construction-robotics-gold", "automation-science-pack" },
|
||||||
unit = {
|
unit = {
|
||||||
count = 200,
|
count = 50,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{ "automation-science-pack", 1 }
|
{ "automation-science-pack", 1 }
|
||||||
},
|
},
|
||||||
|
|
|
@ -72,8 +72,7 @@ data:extend({
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{ type = "item", name = "stone-brick", amount = 5 },
|
{ type = "item", name = "stone-brick", amount = 5 },
|
||||||
{ type = "item", name = "wooden-gear-wheel", amount = 20 },
|
{ 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 } },
|
results = { { type = "item", name = "burner-agricultural-tower", amount = 1 } },
|
||||||
enabled = false
|
enabled = false
|
||||||
|
|
|
@ -40,6 +40,21 @@ 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
|
-- Wood processing
|
||||||
|
|
||||||
local wood_processing = data.raw.recipe["wood-processing"]
|
local wood_processing = data.raw.recipe["wood-processing"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue