From 39ffa8fab63dc2b1ccc2d4b0ba6a63c647c4f25a Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 7 Jan 2025 00:55:01 +0100 Subject: [PATCH 1/3] Remove gold from burner agricultural tower --- lignumis/prototypes/content/burner-agricultural-tower.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lignumis/prototypes/content/burner-agricultural-tower.lua b/lignumis/prototypes/content/burner-agricultural-tower.lua index c29c7d6..5744b7d 100644 --- a/lignumis/prototypes/content/burner-agricultural-tower.lua +++ b/lignumis/prototypes/content/burner-agricultural-tower.lua @@ -72,8 +72,7 @@ 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 = "gold-plate", amount = 20 } + { type = "item", name = "lumber", amount = 20 } }, results = { { type = "item", name = "burner-agricultural-tower", amount = 1 } }, enabled = false From 3d5edcc333a6ecd5f444f61e5b9f2d5b2af9aa6c Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 7 Jan 2025 00:55:19 +0100 Subject: [PATCH 2/3] Vanilla lab can use Lignumis science packs --- lignumis/prototypes/integrations/vanilla.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 1e5ea4f..a5399c2 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -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 local wood_processing = data.raw.recipe["wood-processing"] From 213ceb89f750dbc9066ed71d14b237b3ff64e4ba Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 7 Jan 2025 01:08:52 +0100 Subject: [PATCH 3/3] Balance basic-construction-robotics-copper --- lignumis/prototypes/content/basic-construction-robots.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/basic-construction-robots.lua b/lignumis/prototypes/content/basic-construction-robots.lua index ad3d536..0d8ff8c 100644 --- a/lignumis/prototypes/content/basic-construction-robots.lua +++ b/lignumis/prototypes/content/basic-construction-robots.lua @@ -206,7 +206,7 @@ local copper_robot_technology = { }, prerequisites = { "basic-construction-robotics-gold", "automation-science-pack" }, unit = { - count = 200, + count = 50, ingredients = { { "automation-science-pack", 1 } },