Compare commits

..

3 commits

Author SHA1 Message Date
Simon Brodtmann
213ceb89f7 Balance basic-construction-robotics-copper 2025-01-07 01:08:52 +01:00
Simon Brodtmann
3d5edcc333 Vanilla lab can use Lignumis science packs 2025-01-07 01:08:29 +01:00
Simon Brodtmann
39ffa8fab6 Remove gold from burner agricultural tower 2025-01-07 00:55:01 +01:00
3 changed files with 17 additions and 3 deletions

View file

@ -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 }
}, },

View file

@ -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

View file

@ -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"]