From 15d99aa45b3bbb109acc7e1f920cae5992ae3432 Mon Sep 17 00:00:00 2001 From: Jvella94 Date: Mon, 24 Nov 2025 18:26:35 +0100 Subject: [PATCH 001/111] Added order to subgroup Fixes an issue with Recycling in Factoriopedia that expects all subgroups to have an order. https://mods.factorio.com/mod/recycling-factoriopedia --- lignumis/prototypes/content/item-subgroups.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/item-subgroups.lua b/lignumis/prototypes/content/item-subgroups.lua index 48c03fe..3a14724 100644 --- a/lignumis/prototypes/content/item-subgroups.lua +++ b/lignumis/prototypes/content/item-subgroups.lua @@ -2,6 +2,7 @@ data:extend({ { type = "item-subgroup", name = "lignumis-bioprocessing", - group = "bioprocessing" + group = "bioprocessing", + order = "lignumis-bioprocessing" } }) \ No newline at end of file From e03f85422254b6572cfbbc0435987b0320c973ef Mon Sep 17 00:00:00 2001 From: Jvella94 Date: Mon, 24 Nov 2025 18:26:49 +0100 Subject: [PATCH 002/111] Added order to subgroup Fixes an issue with Recycling in Factoriopedia that expects all subgroups to have an order. https://mods.factorio.com/mod/recycling-factoriopedia --- lignumis/prototypes/content/item-subgroups.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/item-subgroups.lua b/lignumis/prototypes/content/item-subgroups.lua index 48c03fe..3a14724 100644 --- a/lignumis/prototypes/content/item-subgroups.lua +++ b/lignumis/prototypes/content/item-subgroups.lua @@ -2,6 +2,7 @@ data:extend({ { type = "item-subgroup", name = "lignumis-bioprocessing", - group = "bioprocessing" + group = "bioprocessing", + order = "lignumis-bioprocessing" } }) \ No newline at end of file From 3c222237ce55f710f21686d46cf0aa02b89e46de Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 9 Dec 2025 00:09:32 +0100 Subject: [PATCH 003/111] Use additional_categories for quality assembling --- .../prototypes/content/quality-assembler.lua | 88 +++++++------------ 1 file changed, 34 insertions(+), 54 deletions(-) diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index 0b94e6b..be95a71 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -77,7 +77,8 @@ QualityAssembler.EntityBuilder:new() crafting_speed = 4, module_slots = 6, allowed_effects = { "consumption", "pollution", "quality" }, - effect_receiver = { base_effect = { quality = 3.5 } } + effect_receiver = { base_effect = { quality = 3.5 } }, + crafting_categories = { "quality-assembling" } }) QualityAssembler.ItemBuilder:new():apply() @@ -91,7 +92,8 @@ QualityAssembler.RecipeBuilder:new() { type = "item", name = "quantum-processor", amount = 10 } }) :apply({ - category = "electromagnetics-or-quality-assembling", + category = "electromagnetics", + additional_categories = { "quality-assembling" } }) QualityAssembler.TechnologyBuilder:new() @@ -147,71 +149,49 @@ data:extend({ }, research_trigger = { type = "craft-item", item = "gold-quality-catalyst", count = 10000 }, prerequisites = { "experienced-quality-assembling-1" } + }, + { + type = "recipe-category", + name = "quality-assembling" } }) -local function convert_category(name) - local quality_name = name .. "-or-quality-assembling" - data:extend({ - { - type = "recipe-category", - name = quality_name - } - }) - - for _, assembler in pairs(data.raw["assembling-machine"]) do - if assembler.crafting_categories and table.contains(assembler.crafting_categories, name) then - table.insert(assembler.crafting_categories, quality_name) - end - end - for _, character in pairs(data.raw["character"]) do - if character.crafting_categories and table.contains(character.crafting_categories, name) then - table.insert(character.crafting_categories, quality_name) - end - end - table.insert(data.raw["assembling-machine"]["quality-assembler"].crafting_categories, quality_name) +local function qa(recipeName) + local recipe = data.raw.recipe[recipeName] + recipe.additional_categories = recipe.additional_categories or {} + table.insert(recipe.additional_categories, "quality-assembling") end -convert_category("wood-processing-or-assembling") -convert_category("metallurgy-or-assembling") -convert_category("metallurgy") -convert_category("electronics") -convert_category("electronics-or-assembling") -convert_category("electromagnetics") -convert_category("organic-or-assembling") -convert_category("crafting") -convert_category("cryogenics-or-assembling") - -- Lignumis -data.raw.recipe["lumber-mill"].category = "wood-processing-or-assembling-or-quality-assembling" +qa("lumber-mill") -- Nauvis -data.raw.recipe["logistic-robot"].category = "crafting-or-quality-assembling" -data.raw.recipe["construction-robot"].category = "crafting-or-quality-assembling" -data.raw.recipe["roboport"].category = "crafting-or-quality-assembling" -data.raw.recipe["speed-module-3"].category = "electronics-or-quality-assembling" -data.raw.recipe["productivity-module-3"].category = "electronics-or-quality-assembling" -data.raw.recipe["efficiency-module-3"].category = "electronics-or-quality-assembling" -data.raw.recipe["rocket-silo"].category = "crafting-or-quality-assembling" -data.raw.recipe["cargo-bay"].category = "crafting-or-quality-assembling" -data.raw.recipe["asteroid-collector"].category = "crafting-or-quality-assembling" -data.raw.recipe["thruster"].category = "crafting-or-quality-assembling" +qa("logistic-robot") +qa("construction-robot") +qa("roboport") +qa("speed-module-3") +qa("productivity-module-3") +qa("efficiency-module-3") +qa("rocket-silo") +qa("cargo-bay") +qa("asteroid-collector") +qa("thruster") -- Vulcanus -data.raw.recipe["foundry"].category = "metallurgy-or-assembling-or-quality-assembling" -data.raw.recipe["big-mining-drill"].category = "metallurgy-or-quality-assembling" +qa("foundry") +qa("big-mining-drill") -- Fulgora -data.raw.recipe["electromagnetic-plant"].category = "electronics-or-assembling-or-quality-assembling" -data.raw.recipe["lightning-collector"].category = "electromagnetics-or-quality-assembling" -data.raw.recipe["mech-armor"].category = "crafting-or-quality-assembling" -data.raw.recipe["quality-module-3"].category = "electronics-or-quality-assembling" -data.raw.recipe["recycler"].category = "crafting-or-quality-assembling" +qa("electromagnetic-plant") +qa("lightning-collector") +qa("mech-armor") +qa("quality-module-3") +qa("recycler") -- Gleba -data.raw.recipe["biochamber"].category = "organic-or-assembling-or-quality-assembling" -data.raw.recipe["stack-inserter"].category = "crafting-or-quality-assembling" -data.raw.recipe["spidertron"].category = "crafting-or-quality-assembling" +qa("biochamber") +qa("stack-inserter") +qa("spidertron") -- Aquilo -data.raw.recipe["cryogenic-plant"].category = "cryogenics-or-assembling-or-quality-assembling" \ No newline at end of file +qa("cryogenic-plant") \ No newline at end of file From bb52fad493afa3f248611a1813479c16246ec4ea Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 9 Dec 2025 00:13:47 +0100 Subject: [PATCH 004/111] Remove default item weights as the code has been moved to PlanetsLib --- lignumis/prototypes/integrations/vanilla.lua | 34 +------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index dd7af70..92ae192 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -335,36 +335,4 @@ if settings.startup["lignumis-fulgora-wood"].value then if recycler.result_inventory_size < recycling_result_count then recycler.result_inventory_size = recycling_result_count end -end - - --- Fix item weights - -local function set_default_weight(item, items_per_rocket, type) - data.raw[type or "item"][item].weight = data.raw[type or "item"][item].weight or 1000 * kg / items_per_rocket -end -set_default_weight("electronic-circuit", 2000) -set_default_weight("advanced-circuit", 1000) -set_default_weight("processing-unit", 300) -set_default_weight("low-density-structure", 200) -set_default_weight("rocket-fuel", 100) -set_default_weight("inserter", 50) -set_default_weight("fast-inserter", 50) -set_default_weight("electric-mining-drill", 50) -set_default_weight("pumpjack", 20) -set_default_weight("repair-pack", 100, "repair-tool") -set_default_weight("big-electric-pole", 50) -set_default_weight("assembling-machine-1", 50) -set_default_weight("assembling-machine-2", 50) -set_default_weight("oil-refinery", 10) -set_default_weight("accumulator", 50) -set_default_weight("steam-engine", 10) -set_default_weight("substation", 50) -set_default_weight("radar", 50) -set_default_weight("storage-tank", 50) -set_default_weight("fast-transport-belt", 100) -set_default_weight("fast-underground-belt", 50) -set_default_weight("fast-splitter", 50) -set_default_weight("steel-plate", 400) -set_default_weight("steam-turbine", 10) -set_default_weight("battery", 400) \ No newline at end of file +end \ No newline at end of file From df7c8bac98d32071b52299d1a56876de7aa15a7d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 9 Dec 2025 00:20:16 +0100 Subject: [PATCH 005/111] 1.0.75 --- lignumis/changelog.txt | 9 +++++++++ lignumis/info.json | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 0fe9c1d..48e6a61 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,13 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.75 +Date: 09.12.2025 + Changes: + - Add is_satellite to PlanetsLib:extend + - Remove default item weights as the code has been moved to PlanetsLib + Bug Fixes: + - Recycling in Factoriopedia: Add order to bioprocessing subgroup for compatibility (thanks jvella94) + - Crushing Industry: Use additional_categories for quality assembling so the rocket silo recipe will use concrete mix again +--------------------------------------------------------------------------------------------------- Version: 1.0.74 Date: 18.11.2025 Bug Fixes: diff --git a/lignumis/info.json b/lignumis/info.json index 2e43e9b..eaa09c2 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.74", + "version": "1.0.75", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis planet mod effects other planets and space ships. Make sure to read the description on the mod portal and check the mod settings.", "author": "cackling fiend", @@ -19,7 +19,7 @@ "mf-buildings >= 1.0.7", "mf-core >= 1.0.3", "mf-logistics >= 1.0.1", - "PlanetsLib >= 1.1.26", + "PlanetsLib >= 1.14.7", "pollution-as-surface-property", "Wood-Walls >= 1.2.0", "vulcanus-sulfuric-bacteria", From 14badb6b6fc8209f2eee7c99694ba92dafb6e6ca Mon Sep 17 00:00:00 2001 From: Jurgen Date: Sun, 7 Dec 2025 14:18:35 +0100 Subject: [PATCH 006/111] Canal excavator compatibility --- lignumis/info.json | 1 + .../prototypes/compatibility/canal-excavator.lua | 14 ++++++++++++++ lignumis/prototypes/compatibility/data.lua | 3 ++- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 lignumis/prototypes/compatibility/canal-excavator.lua diff --git a/lignumis/info.json b/lignumis/info.json index eaa09c2..6bb42db 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -40,6 +40,7 @@ "(?)Wood_Gasification_updated", "?wood-industry", "?wood-military >= 2.3.3", + "?canal-excavator >= 1.9.0", "!apm_power_ldinc", "!early-agriculture", "!planet-picker", diff --git a/lignumis/prototypes/compatibility/canal-excavator.lua b/lignumis/prototypes/compatibility/canal-excavator.lua new file mode 100644 index 0000000..5a34a27 --- /dev/null +++ b/lignumis/prototypes/compatibility/canal-excavator.lua @@ -0,0 +1,14 @@ +if not mods["canal-excavator"] then return end + +data:extend({{ + type = "mod-data", + name = "canex-lignumis-config", + data_type = "canex-surface-config", + data = { + surfaceName = "lignumis", + localisation = {"space-location-name.lignumis"}, + mineResult = "stone", + oreStartingAmount = 10, + tint = {r = 102, g = 78, b = 6} + }, +}}) \ No newline at end of file diff --git a/lignumis/prototypes/compatibility/data.lua b/lignumis/prototypes/compatibility/data.lua index 6d649e2..cd63065 100644 --- a/lignumis/prototypes/compatibility/data.lua +++ b/lignumis/prototypes/compatibility/data.lua @@ -6,4 +6,5 @@ require("aai-loaders") require("nuclear-science") require("lane-splitters") require("wood-industry") -require("crushing-industry") \ No newline at end of file +require("crushing-industry") +require("canal-excavator") \ No newline at end of file From c6432920cfe5c07a4a6cc5e419d976286e9ef47d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 10 Dec 2025 22:06:22 +0100 Subject: [PATCH 007/111] Use cf-lib Settings --- lignumis/settings/wood-military.lua | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lignumis/settings/wood-military.lua b/lignumis/settings/wood-military.lua index 75ee975..01765eb 100644 --- a/lignumis/settings/wood-military.lua +++ b/lignumis/settings/wood-military.lua @@ -2,10 +2,12 @@ if not mods["wood-military"] then return end -data.raw["bool-setting"]["wood-military-rockets"].default_value = false -data.raw["bool-setting"]["wood-military-artillery"].default_value = false -data.raw["bool-setting"]["wood-military-damage-buff"].default_value = false -data.raw["bool-setting"]["wood-military-armor"].hidden = true -data.raw["bool-setting"]["wood-military-armor"].forced_value = true -data.raw["bool-setting"]["wood-military-nerf-start"].hidden = true -data.raw["bool-setting"]["wood-military-nerf-start"].forced_value = true \ No newline at end of file +local Settings = require("__cf-lib__/settings/Settings") +local force = Settings.force +local default = Settings.default + +default("wood-military-rockets", false) +default("wood-military-artillery", false) +default("wood-military-damage-buff", false) +force("wood-military-armor", true) +force("wood-military-nerf-start", true) \ No newline at end of file From 663779901d6fb270c2d95143f4e201bdd2a81916 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 10 Dec 2025 22:11:29 +0100 Subject: [PATCH 008/111] Use additional_categories for wood processing --- lignumis/prototypes/compatibility/aai-loaders.lua | 2 +- .../prototypes/compatibility/crushing-industry.lua | 7 +++---- lignumis/prototypes/compatibility/lane-splitters.lua | 2 +- lignumis/prototypes/content/basic-circuit-board.lua | 6 ++++-- lignumis/prototypes/content/basic-gun-turret.lua | 2 +- .../prototypes/content/burner-agricultural-tower.lua | 6 ++++-- .../prototypes/content/burner-assembling-machine.lua | 6 ++---- .../prototypes/content/burner-long-handed-inserter.lua | 5 ++--- lignumis/prototypes/content/lumber-mill.lua | 10 ++++------ lignumis/prototypes/content/lumber.lua | 3 ++- .../prototypes/content/steam-assembling-machine.lua | 1 - lignumis/prototypes/content/wood-lab.lua | 3 ++- lignumis/prototypes/content/wood-logistics.lua | 8 ++++---- lignumis/prototypes/content/wood-military.lua | 3 ++- lignumis/prototypes/content/wooden-gearwheel.lua | 3 ++- lignumis/prototypes/integrations/Wood-Walls.lua | 2 +- lignumis/prototypes/integrations/vanilla.lua | 8 +++----- 17 files changed, 38 insertions(+), 39 deletions(-) diff --git a/lignumis/prototypes/compatibility/aai-loaders.lua b/lignumis/prototypes/compatibility/aai-loaders.lua index 2137280..da3c063 100644 --- a/lignumis/prototypes/compatibility/aai-loaders.lua +++ b/lignumis/prototypes/compatibility/aai-loaders.lua @@ -46,7 +46,7 @@ AAILoaders.make_tier({ order = "d[loader]-a00[aai-wood-loader]" }) -data.raw.recipe["aai-wood-loader"].category = "wood-processing-or-assembling" +data.raw.recipe["aai-wood-loader"].additional_categories = { "wood-processing" } if not basic_circuit_board then local nauvis_recipe = Recipe:new("aai-wood-loader"):clone("wood-loader-electronic-circuit") diff --git a/lignumis/prototypes/compatibility/crushing-industry.lua b/lignumis/prototypes/compatibility/crushing-industry.lua index 9a88705..5b035c3 100644 --- a/lignumis/prototypes/compatibility/crushing-industry.lua +++ b/lignumis/prototypes/compatibility/crushing-industry.lua @@ -90,10 +90,9 @@ end local gold_recipe = Recipe:new("burner-crusher") :replaceIngredient("iron-gear-wheel", "wooden-gear-wheel") :replaceIngredient("iron-plate", "gold-plate") - :assign({ - category = settings.startup["lignumis-lumber-mill-more-recipes"].value and "wood-processing-or-assembling" or - "crafting" - }) +if settings.startup["lignumis-lumber-mill-more-recipes"].value then + gold_recipe.prototype.additional_categories = { "wood-processing" } +end gold_recipe:clone("burner-crusher-copper") :replaceIngredient("gold-plate", "copper-plate") diff --git a/lignumis/prototypes/compatibility/lane-splitters.lua b/lignumis/prototypes/compatibility/lane-splitters.lua index 5493840..075cc68 100644 --- a/lignumis/prototypes/compatibility/lane-splitters.lua +++ b/lignumis/prototypes/compatibility/lane-splitters.lua @@ -23,7 +23,7 @@ lane_splitter.prototype.structure_patch.west.filename = data.raw.splitter["wood- lane_splitter.prototype.structure_patch.north.filename = data.raw.splitter["wood-splitter"].structure_patch.north.filename lane_splitter.item.icon = Lignumis.graphics .. "icons/wood-lane-splitter.png" lane_splitter.item.order = "d[lane-splitter]-0[wood-lane-splitter]" -lane_splitter.recipe.category = "wood-processing-or-assembling" +lane_splitter.recipe.additional_categories = { "wood-processing" } data:extend({ lane_splitter.prototype, diff --git a/lignumis/prototypes/content/basic-circuit-board.lua b/lignumis/prototypes/content/basic-circuit-board.lua index 04dbf0a..8858fdf 100644 --- a/lignumis/prototypes/content/basic-circuit-board.lua +++ b/lignumis/prototypes/content/basic-circuit-board.lua @@ -19,7 +19,8 @@ data:extend({ { type = "recipe", name = "basic-circuit-board", - category = "wood-processing-or-assembling", + category = "crafting", + additional_categories = { "wood-processing" }, icons = { { icon = Lignumis.graphics .. "icons/basic-circuit-board.png" }, { icon = Lignumis.graphics .. "icons/gold-cable.png", scale = 0.25, shift = { 8, 8 } } @@ -36,7 +37,8 @@ data:extend({ type = "recipe", name = "basic-circuit-board-copper", localised_name = { "item-name.basic-circuit-board" }, - category = "wood-processing-or-assembling", + category = "crafting", + additional_categories = { "wood-processing" }, icons = { { icon = Lignumis.graphics .. "icons/basic-circuit-board.png" }, { icon = "__base__/graphics/icons/copper-cable.png", scale = 0.25, shift = { 8, 8 } } diff --git a/lignumis/prototypes/content/basic-gun-turret.lua b/lignumis/prototypes/content/basic-gun-turret.lua index 335010b..3935386 100644 --- a/lignumis/prototypes/content/basic-gun-turret.lua +++ b/lignumis/prototypes/content/basic-gun-turret.lua @@ -58,7 +58,7 @@ local turret_recipe = { results = { { type = "item", name = "basic-gun-turret", amount = 1 } } } if settings.startup["lignumis-lumber-mill-more-recipes"].value then - turret_recipe.category = "wood-processing-or-assembling" + turret_recipe.additional_categories = { "wood-processing" } end local turret_technology = { diff --git a/lignumis/prototypes/content/burner-agricultural-tower.lua b/lignumis/prototypes/content/burner-agricultural-tower.lua index e76a2da..dc5a31e 100644 --- a/lignumis/prototypes/content/burner-agricultural-tower.lua +++ b/lignumis/prototypes/content/burner-agricultural-tower.lua @@ -84,7 +84,8 @@ data:extend({ { type = "recipe", name = "burner-agricultural-tower", - category = "wood-processing-or-assembling", + category = "crafting", + additional_categories = { "wood-processing" }, energy_required = 10, ingredients = { { type = "item", name = "stone-brick", amount = 5 }, @@ -116,7 +117,8 @@ data:extend({ { type = "recipe", name = "burner-agricultural-tower-copper", - category = "wood-processing-or-assembling", + category = "crafting", + additional_categories = { "wood-processing" }, localised_name = { "entity-name.burner-agricultural-tower" }, icons = { { icon = Lignumis.graphics .. "icons/burner-agricultural-tower.png" }, diff --git a/lignumis/prototypes/content/burner-assembling-machine.lua b/lignumis/prototypes/content/burner-assembling-machine.lua index 58cd14b..0c46bad 100644 --- a/lignumis/prototypes/content/burner-assembling-machine.lua +++ b/lignumis/prototypes/content/burner-assembling-machine.lua @@ -17,7 +17,6 @@ assembling_machine.crafting_categories = { "crafting", "electronics", "pressing", - "wood-processing-or-assembling", "organic-or-assembling", "electronics-or-assembling", "metallurgy-or-assembling" @@ -50,8 +49,6 @@ remnants.animation[2].filename = gfx .. "burner-assembling-machine-remnants.png" remnants.animation[3].filename = gfx .. "burner-assembling-machine-remnants.png" remnants.order = "0[burner-assembling-machine]" -local crafting_category = settings.startup["lignumis-lumber-mill-more-recipes"].value and "wood-processing-or-assembling" or "crafting" - data:extend({ assembling_machine, remnants, @@ -70,7 +67,8 @@ data:extend({ { type = "recipe", name = "burner-assembling-machine", - category = crafting_category, + category = "crafting", + additional_categories = settings.startup["lignumis-lumber-mill-more-recipes"].value and { "wood-processing" } or nil, enabled = false, ingredients = { { type = "item", name = "wooden-gear-wheel", amount = 5 }, diff --git a/lignumis/prototypes/content/burner-long-handed-inserter.lua b/lignumis/prototypes/content/burner-long-handed-inserter.lua index de8a785..b6dffcf 100644 --- a/lignumis/prototypes/content/burner-long-handed-inserter.lua +++ b/lignumis/prototypes/content/burner-long-handed-inserter.lua @@ -44,8 +44,6 @@ remnants.animation[3].filename = gfx .. "burner-long-handed-inserter-remnants.pn remnants.animation[4].filename = gfx .. "burner-long-handed-inserter-remnants.png" remnants.order = "a-c-0" -local crafting_category = settings.startup["lignumis-lumber-mill-more-recipes"].value and "wood-processing-or-assembling" or "crafting" - data:extend({ long_handed_inserter, remnants, @@ -65,7 +63,8 @@ data:extend({ { type = "recipe", name = "burner-long-handed-inserter", - category = crafting_category, + category = "crafting", + additional_categories = settings.startup["lignumis-lumber-mill-more-recipes"].value and { "wood-processing" } or nil, enabled = false, ingredients = { { type = "item", name = "wooden-gear-wheel", amount = 1 }, diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 0bb904c..8419fbd 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -7,19 +7,17 @@ local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].val data:extend({ { type = "recipe-category", - name = "wood-processing-or-assembling" + name = "wood-processing" } }) -table.insert(data.raw["character"]["character"].crafting_categories, "wood-processing-or-assembling") - local has_oxygen = data.raw["surface-property"]["oxygen"] ~= nil LumberMill.EntityBuilder:new() :burnerEnergySource({ emissions_per_minute = { noise = 100 } }) :baseProductivity(0.5) :apply({ - crafting_categories = { "wood-processing-or-assembling" }, + crafting_categories = { "wood-processing" }, crafting_speed = 2, energy_usage = "1000kW", surface_conditions = { @@ -50,7 +48,7 @@ LumberMill.RecipeBuilder:new() { type = "item", name = "burner-assembling-machine", amount = 2 } })) :apply({ - category = "wood-processing-or-assembling" + additional_categories = { "wood-processing" } }) LumberMill.TechnologyBuilder:new() @@ -72,7 +70,7 @@ LumberMill.RecipeBuilder:new() :apply({ name = "lumber-mill-copper", localised_name = { "entity-name.lumber-mill" }, - category = "wood-processing-or-assembling", + additional_categories = { "wood-processing" }, icons = { { icon = lumber_mill_item.icon }, { icon = basic_circuit_board and "__base__/graphics/icons/copper-plate.png" or "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } diff --git a/lignumis/prototypes/content/lumber.lua b/lignumis/prototypes/content/lumber.lua index 8cb9b14..2d0d1de 100644 --- a/lignumis/prototypes/content/lumber.lua +++ b/lignumis/prototypes/content/lumber.lua @@ -23,7 +23,8 @@ data:extend({ { type = "recipe", name = "lumber", - category = "wood-processing-or-assembling", + category = "crafting", + additional_categories = { "wood-processing" }, allow_productivity = true, allow_as_intermediate = true, ingredients = { { type = "item", name = "wood", amount = 2 } }, diff --git a/lignumis/prototypes/content/steam-assembling-machine.lua b/lignumis/prototypes/content/steam-assembling-machine.lua index da5ef2d..687ed02 100644 --- a/lignumis/prototypes/content/steam-assembling-machine.lua +++ b/lignumis/prototypes/content/steam-assembling-machine.lua @@ -20,7 +20,6 @@ assembling_machine.crafting_categories = { "crafting", "electronics", "pressing", - "wood-processing-or-assembling", "organic-or-assembling", "electronics-or-assembling", "metallurgy-or-assembling", diff --git a/lignumis/prototypes/content/wood-lab.lua b/lignumis/prototypes/content/wood-lab.lua index 7db5aec..2010910 100644 --- a/lignumis/prototypes/content/wood-lab.lua +++ b/lignumis/prototypes/content/wood-lab.lua @@ -144,7 +144,8 @@ data:extend({ { type = "recipe", name = "wood-lab", - category = "wood-processing-or-assembling", + category = "crafting", + additional_categories = { "wood-processing" }, energy_required = 2, ingredients = { { type = "item", name = "lumber", amount = 6 }, diff --git a/lignumis/prototypes/content/wood-logistics.lua b/lignumis/prototypes/content/wood-logistics.lua index 78cb353..36048d4 100644 --- a/lignumis/prototypes/content/wood-logistics.lua +++ b/lignumis/prototypes/content/wood-logistics.lua @@ -58,13 +58,13 @@ Belt.RecipeBuilder:new() }) :apply({ transportBelt = { - category = "wood-processing-or-assembling" + additional_categories = { "wood-processing" } }, undergroundBelt = { - category = "wood-processing-or-assembling" + additional_categories = { "wood-processing" } }, splitter = { - category = "wood-processing-or-assembling" + additional_categories = { "wood-processing" } } }) @@ -91,7 +91,7 @@ if not basic_circuit_board then { icon = splitter_item.icon }, { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } }, - category = "wood-processing-or-assembling" + additional_categories = { "wood-processing" } } }) .splitter diff --git a/lignumis/prototypes/content/wood-military.lua b/lignumis/prototypes/content/wood-military.lua index 1dd775f..6c3e312 100644 --- a/lignumis/prototypes/content/wood-military.lua +++ b/lignumis/prototypes/content/wood-military.lua @@ -82,7 +82,8 @@ data:extend({ { type = "recipe", name = "wood-darts-magazine", - category = "wood-processing-or-assembling", + category = "crafting", + additional_categories = { "wood-processing" }, energy_required = 1, ingredients = { { type = "item", name = "wood", amount = 2 } }, results = { { type = "item", name = "wood-darts-magazine", amount = 1 } } diff --git a/lignumis/prototypes/content/wooden-gearwheel.lua b/lignumis/prototypes/content/wooden-gearwheel.lua index 229b175..0d57a98 100644 --- a/lignumis/prototypes/content/wooden-gearwheel.lua +++ b/lignumis/prototypes/content/wooden-gearwheel.lua @@ -17,7 +17,8 @@ data:extend({ { type = "recipe", name = "wooden-gear-wheel", - category = "wood-processing-or-assembling", + category = "crafting", + additional_categories = { "wood-processing" }, ingredients = { { type = "item", name = "lumber", amount = 1 } }, results = { { type = "item", name = "wooden-gear-wheel", amount = 2 } }, allow_productivity = true diff --git a/lignumis/prototypes/integrations/Wood-Walls.lua b/lignumis/prototypes/integrations/Wood-Walls.lua index d1f11d5..884dfdd 100644 --- a/lignumis/prototypes/integrations/Wood-Walls.lua +++ b/lignumis/prototypes/integrations/Wood-Walls.lua @@ -1,4 +1,4 @@ local recipe = data.raw.recipe["wooden-wall"] recipe.ingredients = { { type = "item", name = "lumber", amount = 4 } } recipe.results = { { type = "item", name = "wooden-wall", amount = 1 } } -recipe.category = "wood-processing-or-assembling" \ No newline at end of file +recipe.additional_categories = { "wood-processing" } \ No newline at end of file diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 92ae192..9c51438 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -21,7 +21,8 @@ local drill_item = data.raw["item"]["burner-mining-drill"] drill_item.icon = Lignumis.graphics .. "icons/burner-mining-drill.png" local drill_recipe = data.raw["recipe"]["burner-mining-drill"] -drill_recipe.category = "wood-processing-or-assembling" +drill_recipe.category = "crafting" +drill_recipe.additional_categories = { "wood-processing" } drill_recipe.ingredients = { { type = "item", name = "stone-furnace", amount = 1 }, { type = "item", name = "wooden-gear-wheel", amount = basic_circuit_board and 2 or 3 }, @@ -48,7 +49,7 @@ burner_inserter_recipe.ingredients = { { type = "item", name = "lumber", amount = 1 } } if settings.startup["lignumis-lumber-mill-more-recipes"].value then - burner_inserter_recipe.category = "wood-processing-or-assembling" + burner_inserter_recipe.additional_categories = { "wood-processing" } end @@ -131,10 +132,7 @@ if mods["Diversitree"] then data.raw.plant["s6xdvt-fake-tree"].surface_conditions[1].min = 900 end -table.insert(data.raw["assembling-machine"]["assembling-machine-1"].crafting_categories, "wood-processing-or-assembling") table.insert(data.raw["assembling-machine"]["assembling-machine-1"].crafting_categories, "organic-or-assembling") -table.insert(data.raw["assembling-machine"]["assembling-machine-2"].crafting_categories, "wood-processing-or-assembling") -table.insert(data.raw["assembling-machine"]["assembling-machine-3"].crafting_categories, "wood-processing-or-assembling") -- Disable vanilla early game recipes From 996fd2f7c489e93a48e43505d68d5539fb5cc551 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 12 Dec 2025 18:25:42 +0100 Subject: [PATCH 009/111] Add support for wood logistics --- lignumis/info.json | 50 ++-- lignumis/prototypes/content/lumber-mill.lua | 140 ++++++++--- lignumis/prototypes/content/lumber.lua | 67 +++--- lignumis/prototypes/content/noise.lua | 6 +- .../prototypes/content/wood-logistics.lua | 225 +++++++++++------- lignumis/settings/updates.lua | 1 + lignumis/settings/wood-logistics.lua | 20 ++ 7 files changed, 326 insertions(+), 183 deletions(-) create mode 100644 lignumis/settings/wood-logistics.lua diff --git a/lignumis/info.json b/lignumis/info.json index 6bb42db..2e01294 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -12,7 +12,7 @@ "space-age >= 2.0.53", "astroponics >= 1.2.0", "bioprocessing-tab", - "cf-lib >= 0.0.13", + "cf-lib >= 1.1.0", "flib", "gleba-water-cane", "lignumis-assets >= 1.0.3", @@ -23,29 +23,29 @@ "pollution-as-surface-property", "Wood-Walls >= 1.2.0", "vulcanus-sulfuric-bacteria", - "?aai-industry", - "?aai-loaders", - "?aai-loaders-sane", - "?any-planet-start", - "?atan-nuclear-science", - "?crushing-industry", - "?Diversitree", - "?fulgora-coralmium-agriculture", - "?gleba-reborn", - "?hot-metals >= 1.1.0", - "?Krastorio2-spaced-out", - "?lane-splitters", - "?metal-and-stars", - "(?)secretas", - "(?)Wood_Gasification_updated", - "?wood-industry", - "?wood-military >= 2.3.3", - "?canal-excavator >= 1.9.0", - "!apm_power_ldinc", - "!early-agriculture", - "!planet-picker", - "!wood-logistics", - "!wood-universe-modpack", - "!rso-mod" + "? aai-industry", + "? aai-loaders", + "? aai-loaders-sane", + "? any-planet-start", + "? crushing-industry", + "? fulgora-coralmium-agriculture", + "? hot-metals >= 1.1.0", + "? lane-splitters", + "? wood-industry", + "? wood-military >= 2.3.3", + "? canal-excavator >= 1.9.0", + "? wood-logistics", + "(?) atan-nuclear-science", + "(?) Diversitree", + "(?) gleba-reborn", + "(?) Krastorio2-spaced-out", + "(?) metal-and-stars", + "(?) secretas", + "(?) Wood_Gasification_updated", + "! apm_power_ldinc", + "! early-agriculture", + "! planet-picker", + "! wood-universe-modpack", + "! rso-mod" ] } \ No newline at end of file diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 8419fbd..ac57acb 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -1,3 +1,4 @@ +local Recipe = require("__cf-lib__/data/Recipe") local Technology = require("__cf-lib__/data/Technology") local LumberMillFactory = require(MF.buildings .. "LumberMill") local LumberMill = LumberMillFactory() @@ -13,68 +14,137 @@ data:extend({ local has_oxygen = data.raw["surface-property"]["oxygen"] ~= nil -LumberMill.EntityBuilder:new() - :burnerEnergySource({ emissions_per_minute = { noise = 100 } }) - :baseProductivity(0.5) - :apply({ - crafting_categories = { "wood-processing" }, +if not mods["wood-logistics"] then + LumberMill.EntityBuilder:new() + :burnerEnergySource({ emissions_per_minute = { noise = 100 } }) + :baseProductivity(0.5) + :apply({ + crafting_categories = { "wood-processing" }, crafting_speed = 2, energy_usage = "1000kW", surface_conditions = { { - property = has_oxygen and "oxygen" or "pressure", - min = 3 + property = has_oxygen and "oxygen" or "pressure", + min = 3 }, { - property = "gravity", - min = 1 + property = "gravity", + min = 1 } - } + } }) -local lumber_mill_item = LumberMill.ItemBuilder:new() - :apply({ + local lumber_mill_item = LumberMill.ItemBuilder:new() + :apply({ default_import_location = "lignumis", order = "2[lumber-mill]" }) -LumberMill.RecipeBuilder:new() - :ingredients(table.trim({ - { type = "item", name = "stone-brick", amount = 40 }, - { type = "item", name = "lumber", amount = 50 }, + LumberMill.RecipeBuilder:new() + :ingredients(table.trim({ + { type = "item", name = "stone-brick", amount = 40 }, + { type = "item", name = "lumber", amount = 50 }, { type = "item", name = "wooden-gear-wheel", amount = 50 }, - { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, + { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, { type = "item", name = "burner-assembling-machine", amount = 2 } })) - :apply({ - additional_categories = { "wood-processing" } + :apply({ + additional_categories = { "wood-processing" } }) -LumberMill.TechnologyBuilder:new() - :prerequisites({ "steam-science-pack" }) - :count(250) - :time(15) - :ingredients({ { "wood-science-pack", 1 }, { "steam-science-pack", 1 } }) - :apply() + LumberMill.TechnologyBuilder:new() + :prerequisites({ "steam-science-pack" }) + :count(250) + :time(15) + :ingredients({ { "wood-science-pack", 1 }, { "steam-science-pack", 1 } }) + :apply() -LumberMill.RecipeBuilder:new() - :ingredients({ - { type = "item", name = "stone-brick", amount = 40 }, - { type = "item", name = "lumber", amount = 50 }, - { type = "item", name = "wooden-gear-wheel", amount = 50 }, - { type = "item", name = "copper-plate", amount = basic_circuit_board and 20 or 40 }, + LumberMill.RecipeBuilder:new() + :ingredients({ + { type = "item", name = "stone-brick", amount = 40 }, + { type = "item", name = "lumber", amount = 50 }, + { type = "item", name = "wooden-gear-wheel", amount = 50 }, + { type = "item", name = "copper-plate", amount = basic_circuit_board and 20 or 40 }, { type = "item", name = basic_circuit_board and "basic-circuit-board" or "electronic-circuit", amount = 20 }, - { type = "item", name = "assembling-machine-1", amount = 2 } + { type = "item", name = "assembling-machine-1", amount = 2 } }) - :apply({ + :apply({ name = "lumber-mill-copper", localised_name = { "entity-name.lumber-mill" }, - additional_categories = { "wood-processing" }, + additional_categories = { "wood-processing" }, icons = { { icon = lumber_mill_item.icon }, { icon = basic_circuit_board and "__base__/graphics/icons/copper-plate.png" or "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } } }) -Technology:new(basic_circuit_board and "copper-processing" or "electronics"):addRecipe("lumber-mill-copper") + Technology:new(basic_circuit_board and "copper-processing" or "electronics"):addRecipe("lumber-mill-copper") +else + table.assign(data.raw["assembling-machine"]["lumber-mill"], { + energy_source = { + type = "burner", + fuel_categories = { "chemical" }, + effectivity = 1, + fuel_inventory_size = 3, + emissions_per_minute = { pollution = 10, noise = 100 }, + }, + crafting_categories = { "wood-processing" }, + energy_usage = "1000kW", + module_slots = 4, + max_health = 500, + surface_conditions = { + { + property = has_oxygen and "oxygen" or "pressure", + min = 3 + }, + { + property = "gravity", + min = 1 + } + } + }) + + data.raw.item["lumber-mill"].default_import_location = "lignumis" + + table.assign(data.raw.recipe["lumber-mill"], { + additional_categories = { "wood-processing" }, + ingredients = table.trim({ + { type = "item", name = "stone-brick", amount = 40 }, + { type = "item", name = "lumber", amount = 50 }, + { type = "item", name = "wooden-gear-wheel", amount = 50 }, + { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, + basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, + { type = "item", name = "burner-assembling-machine", amount = 2 } + }) + }) + + table.assign(data.raw.technology["advanced-carpentry"], { + prerequisites = { "steam-science-pack" }, + unit = { + count = 250, + time = 15, + ingredients = { + { "wood-science-pack", 1 }, + { "steam-science-pack", 1 } + } + } + }) + + Recipe:new("lumber-mill") + :clone("lumber-mill-copper") + :assign({ + localised_name = { "entity-name.lumber-mill" }, + icons = { + { icon = data.raw.item["lumber-mill"].icon }, + { icon = basic_circuit_board and "__base__/graphics/icons/copper-plate.png" or "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } + } + }) + :replaceIngredient("gold-plate", "copper-plate") + :apply() + + Technology:new(basic_circuit_board and "copper-processing" or "electronics"):addRecipe("lumber-mill-copper") +end + +Recipe:new("wooden-chest"):addCategory("wood-processing") +Recipe:new("small-electric-pole"):addCategory("wood-processing") \ No newline at end of file diff --git a/lignumis/prototypes/content/lumber.lua b/lignumis/prototypes/content/lumber.lua index 2d0d1de..f3a46f1 100644 --- a/lignumis/prototypes/content/lumber.lua +++ b/lignumis/prototypes/content/lumber.lua @@ -1,34 +1,39 @@ local item_sounds = require("__base__.prototypes.item_sounds") +local Recipe = require("__cf-lib__/data/Recipe") -data:extend({ - { - type = "item", - name = "lumber", - icon = Lignumis.graphics .. "icons/lumber.png", - pictures = { - { filename = Lignumis.graphics .. "icons/lumber.png", size = 64, scale = 0.5 }, - { filename = Lignumis.graphics .. "icons/lumber-1.png", size = 64, scale = 0.5 }, - { filename = Lignumis.graphics .. "icons/lumber-2.png", size = 64, scale = 0.5 }, +if not mods["wood-logistics"] then + data:extend({ + { + type = "item", + name = "lumber", + icon = Lignumis.graphics .. "icons/lumber.png", + pictures = { + { filename = Lignumis.graphics .. "icons/lumber.png", size = 64, scale = 0.5 }, + { filename = Lignumis.graphics .. "icons/lumber-1.png", size = 64, scale = 0.5 }, + { filename = Lignumis.graphics .. "icons/lumber-2.png", size = 64, scale = 0.5 }, + }, + subgroup = "intermediate-product", + order = "A[basic-intermediates]-c[lumber]", + inventory_move_sound = item_sounds.wood_inventory_move, + pick_sound = item_sounds.wood_inventory_pickup, + drop_sound = item_sounds.wood_inventory_move, + stack_size = 100, + random_tint_color = { 1.0, 0.95, 0.9, 1.0 }, + fuel_category = "wood", + fuel_value = "4MJ" }, - subgroup = "intermediate-product", - order = "A[basic-intermediates]-c[lumber]", - inventory_move_sound = item_sounds.wood_inventory_move, - pick_sound = item_sounds.wood_inventory_pickup, - drop_sound = item_sounds.wood_inventory_move, - stack_size = 100, - random_tint_color = { 1.0, 0.95, 0.9, 1.0 }, - fuel_category = "wood", - fuel_value = "4MJ" - }, - { - type = "recipe", - name = "lumber", - category = "crafting", - additional_categories = { "wood-processing" }, - allow_productivity = true, - allow_as_intermediate = true, - ingredients = { { type = "item", name = "wood", amount = 2 } }, - results = { { type = "item", name = "lumber", amount = 1 } }, - energy_required = 1 - } -}) + { + type = "recipe", + name = "lumber", + category = "crafting", + additional_categories = { "wood-processing" }, + allow_productivity = true, + allow_as_intermediate = true, + ingredients = { { type = "item", name = "wood", amount = 2 } }, + results = { { type = "item", name = "lumber", amount = 1 } }, + energy_required = 1 + } + }) +else + Recipe:new("lumber"):addCategory("wood-processing") +end \ No newline at end of file diff --git a/lignumis/prototypes/content/noise.lua b/lignumis/prototypes/content/noise.lua index 4474df5..0505138 100644 --- a/lignumis/prototypes/content/noise.lua +++ b/lignumis/prototypes/content/noise.lua @@ -100,17 +100,17 @@ emit("lab", "biolab", 20) emit("locomotive", "locomotive", 200) emit_constant("locomotive", "locomotive", 10) ---emit_constant("transport-belt", "wood-transport-belt", 2) +emit_constant("transport-belt", "wood-transport-belt", 2) emit_constant("transport-belt", "transport-belt", 3) emit_constant("transport-belt", "fast-transport-belt", 4) emit_constant("transport-belt", "express-transport-belt", 6) emit_constant("transport-belt", "turbo-transport-belt", 8) ---emit_constant("underground-belt", "wood-underground-belt", 7.5) +emit_constant("underground-belt", "wood-underground-belt", 7.5) emit_constant("underground-belt", "underground-belt", 10) emit_constant("underground-belt", "fast-underground-belt", 20) emit_constant("underground-belt", "express-underground-belt", 30) emit_constant("underground-belt", "turbo-underground-belt", 40) ---emit_constant("splitter", "wood-splitter", 20) +emit_constant("splitter", "wood-splitter", 20) emit_constant("splitter", "splitter", 30) emit_constant("splitter", "fast-splitter", 40) emit_constant("splitter", "express-splitter", 50) diff --git a/lignumis/prototypes/content/wood-logistics.lua b/lignumis/prototypes/content/wood-logistics.lua index 36048d4..a2eef43 100644 --- a/lignumis/prototypes/content/wood-logistics.lua +++ b/lignumis/prototypes/content/wood-logistics.lua @@ -1,104 +1,151 @@ local BeltFactory = require(MF.logistics .. "Belts") local Belt = BeltFactory("wood", "brown", "slow") +local Recipe = require("__cf-lib__/data/Recipe") +local Item = require("__cf-lib__/data/Item") local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value -Belt.EntityBuilder:new() - :itemsPerSecond(7.5) - :nextTier("") - :undergroundDistance(4) - :animationSpeedMultiplier(1.01) - :apply({ - transportBelt = { - emissions_per_second = { noise = 2 / 60 } - }, - undergroundBelt = { - emissions_per_second = { noise = 7.5 / 60 }, - factoriopedia_simulation = { - init = - [[ - game.simulation.camera_position = {0, 0.5} - game.simulation.camera_zoom = 1.8 - game.surfaces[1].create_entities_from_blueprint_string - { - string = "0eNqVUNsKgzAM/Zc81+FEBfsrYwwvQQKaltpuivjvS3Wwh8HGnkKSc0tWaIaA1hF70CtMXNvEm6R31MV+Bl0oWECfNwXUGp5AXwRGPddDBHA9Imh4GNMlgTt0vTNSkwYHD5EjsznSrwqQPXnCQ2JvlhuHsUEnAPVdSoE1k7ANv2KlpyOYVLHpyGF7bHMFfrFRidiGGOLDLPvXLP9tZoLf3eRO8jjK5P1YBXd0004oyqzKq6ooqzLNinLbnvlmf6E=", - position = {-0.5, 0} +if not mods["wood-logistics"] then + Belt.EntityBuilder:new() + :itemsPerSecond(7.5) + :nextTier("") + :undergroundDistance(4) + :animationSpeedMultiplier(1.01) + :apply({ + transportBelt = { + emissions_per_second = { noise = 2 / 60 } + }, + undergroundBelt = { + emissions_per_second = { noise = 7.5 / 60 }, + factoriopedia_simulation = { + init = + [[ + game.simulation.camera_position = {0, 0.5} + game.simulation.camera_zoom = 1.8 + game.surfaces[1].create_entities_from_blueprint_string + { + string = "0eNqVUNsKgzAM/Zc81+FEBfsrYwwvQQKaltpuivjvS3Wwh8HGnkKSc0tWaIaA1hF70CtMXNvEm6R31MV+Bl0oWECfNwXUGp5AXwRGPddDBHA9Imh4GNMlgTt0vTNSkwYHD5EjsznSrwqQPXnCQ2JvlhuHsUEnAPVdSoE1k7ANv2KlpyOYVLHpyGF7bHMFfrFRidiGGOLDLPvXLP9tZoLf3eRO8jjK5P1YBXd0004oyqzKq6ooqzLNinLbnvlmf6E=", + position = {-0.5, 0} + } + ]] } - ]] + }, + splitter = { + emissions_per_second = { noise = 20 / 60 } } - }, - splitter = { - emissions_per_second = { noise = 20 / 60 } - } - }) + }) -local splitter_item = Belt.ItemBuilder:new() - :itemsPerRocket("transportBelt", 200) - :itemsPerRocket("undergroundBelt", 100) - :itemsPerRocket("splitter", 100) - :order("0") - :apply() - .splitter + local splitter_item = Belt.ItemBuilder:new() + :itemsPerRocket("transportBelt", 200) + :itemsPerRocket("undergroundBelt", 100) + :itemsPerRocket("splitter", 100) + :order("0") + :apply() + .splitter -Belt.RecipeBuilder:new() - :beltAmount(2) - :ingredients("transportBelt", { - { type = "item", name = "lumber", amount = 1 }, - { type = "item", name = "wooden-gear-wheel", amount = 1 } - }) - :ingredients("undergroundBelt", { - { type = "item", name = "lumber", amount = 1 }, - { type = "item", name = "wood-transport-belt", amount = 4 }, - }) - :ingredients("splitter", { - { type = "item", name = "wood-transport-belt", amount = 2 }, - { type = "item", name = "lumber", amount = 2 }, - basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 5 } or - { type = "item", name = "gold-cable", amount = 10 } - }) - :apply({ - transportBelt = { + Belt.RecipeBuilder:new() + :beltAmount(2) + :ingredients("transportBelt", { + { type = "item", name = "lumber", amount = 1 }, + { type = "item", name = "wooden-gear-wheel", amount = 1 } + }) + :ingredients("undergroundBelt", { + { type = "item", name = "lumber", amount = 1 }, + { type = "item", name = "wood-transport-belt", amount = 4 }, + }) + :ingredients("splitter", { + { type = "item", name = "wood-transport-belt", amount = 2 }, + { type = "item", name = "lumber", amount = 2 }, + basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 5 } or + { type = "item", name = "gold-cable", amount = 10 } + }) + :apply({ + transportBelt = { + additional_categories = { "wood-processing" } + }, + undergroundBelt = { + additional_categories = { "wood-processing" } + }, + splitter = { + additional_categories = { "wood-processing" } + } + }) + + Belt.TechnologyBuilder:new() + :prerequisites({ "wood-science-pack" }) + :ingredients({ { "wood-science-pack", 1 } }) + :count(10) + :time(10) + :apply() + + if not basic_circuit_board then + data:extend({ + Belt.RecipeBuilder:new() + :ingredients("splitter", { + { type = "item", name = "wood-transport-belt", amount = 2 }, + { type = "item", name = "lumber", amount = 2 }, + { type = "item", name = "electronic-circuit", amount = 2 } + }) + :build({ + splitter = { + name = "wood-splitter-electronic-circuit", + localised_name = { "entity-name.wood-splitter" }, + icons = { + { icon = splitter_item.icon }, + { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } + }, + additional_categories = { "wood-processing" } + } + }) + .splitter + }) + + table.insert(data.raw.technology["electronics"].effects, { + type = "unlock-recipe", + recipe = "wood-splitter-electronic-circuit" + }) + end + +else + Recipe:new("wood-transport-belt") + :replaceIngredient("copper-cable", "wooden-gear-wheel", 1) + :assign({ additional_categories = { "wood-processing" } - }, - undergroundBelt = { - additional_categories = { "wood-processing" } - }, - splitter = { - additional_categories = { "wood-processing" } - } - }) + }) -Belt.TechnologyBuilder:new() - :prerequisites({ "wood-science-pack" }) - :ingredients({ { "wood-science-pack", 1 } }) - :count(10) - :time(10) - :apply() + Recipe:new("wood-underground-belt") + :assign({ + additional_categories = { "wood-processing" } + }) -if not basic_circuit_board then - data:extend({ - Belt.RecipeBuilder:new() - :ingredients("splitter", { - { type = "item", name = "wood-transport-belt", amount = 2 }, - { type = "item", name = "lumber", amount = 2 }, - { type = "item", name = "electronic-circuit", amount = 2 } - }) - :build({ - splitter = { - name = "wood-splitter-electronic-circuit", - localised_name = { "entity-name.wood-splitter" }, - icons = { - { icon = splitter_item.icon }, - { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } - }, - additional_categories = { "wood-processing" } + Recipe:new("wood-splitter") + :replaceIngredient("copper-cable", basic_circuit_board and "basic-circuit-board" or "gold-cable", basic_circuit_board and 5 or nil) + :assign({ + additional_categories = { "wood-processing" } + }) + + if not basic_circuit_board then + Recipe:new("wood-splitter") + :clone("wood-splitter-electronic-circuit") + :replaceIngredient(basic_circuit_board and "gold-cable" or "basic-circuit-board", "electronic-circuit", 2) + :assign({ + localised_name = { "entity-name.wood-splitter" }, + icons = { + { icon = data.raw.item["wood-splitter"].icon }, + { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } } }) - .splitter - }) + :unlockedByTechnology("electronics") + :apply() + end - table.insert(data.raw.technology["electronics"].effects, { - type = "unlock-recipe", - recipe = "wood-splitter-electronic-circuit" - }) -end + Item:new("wood-transport-belt") + :itemsPerRocket(200) + :defaultImportLocation("lignumis") + Item:new("wood-underground-belt") + :itemsPerRocket(100) + :defaultImportLocation("lignumis") + Item:new("wood-splitter") + :itemsPerRocket(100) + :defaultImportLocation("lignumis") +end \ No newline at end of file diff --git a/lignumis/settings/updates.lua b/lignumis/settings/updates.lua index aedfdff..37ac7b9 100644 --- a/lignumis/settings/updates.lua +++ b/lignumis/settings/updates.lua @@ -1 +1,2 @@ +require("wood-logistics") require("wood-military") \ No newline at end of file diff --git a/lignumis/settings/wood-logistics.lua b/lignumis/settings/wood-logistics.lua new file mode 100644 index 0000000..a4627a8 --- /dev/null +++ b/lignumis/settings/wood-logistics.lua @@ -0,0 +1,20 @@ +if not mods["wood-logistics"] then + return +end + +local Settings = require("__cf-lib__/settings/Settings") +local force = Settings.force +local default = Settings.default + +force("wood-logistics-lumber", true) +force("wood-logistics-lumber-mill", true) +force("wood-logistics-woodtronics", false) +force("wood-logistics-belts", true) +force("wood-logistics-belts-modify", false) +default("wood-logistics-belts-circuits", true) +force("wood-logistics-inserter", false) +default("wood-logistics-rail-cost", 0) +default("wood-logistics-cargo-wagon", false) +force("wood-logistics-assembling-machine", false) +default("wood-logistics-nerf-small-electric-pole", false) +force("wood-logistics-repair-pack-cost", 0) \ No newline at end of file From 61c2d30dd79ab7c11532596972fa41a1ec9796f1 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 12 Dec 2025 22:14:31 +0100 Subject: [PATCH 010/111] Diversitree: Improve compatibility --- lignumis/prototypes/compatibility/data.lua | 3 ++- lignumis/prototypes/compatibility/diversitree.lua | 12 ++++++++++++ lignumis/prototypes/integrations/vanilla.lua | 6 +----- 3 files changed, 15 insertions(+), 6 deletions(-) create mode 100644 lignumis/prototypes/compatibility/diversitree.lua diff --git a/lignumis/prototypes/compatibility/data.lua b/lignumis/prototypes/compatibility/data.lua index cd63065..0ed7173 100644 --- a/lignumis/prototypes/compatibility/data.lua +++ b/lignumis/prototypes/compatibility/data.lua @@ -7,4 +7,5 @@ require("nuclear-science") require("lane-splitters") require("wood-industry") require("crushing-industry") -require("canal-excavator") \ No newline at end of file +require("canal-excavator") +require("diversitree") \ No newline at end of file diff --git a/lignumis/prototypes/compatibility/diversitree.lua b/lignumis/prototypes/compatibility/diversitree.lua new file mode 100644 index 0000000..af5e8f1 --- /dev/null +++ b/lignumis/prototypes/compatibility/diversitree.lua @@ -0,0 +1,12 @@ +if not mods["Diversitree"] then + return +end + +data.raw.plant["s6xdvt-fake-tree"].surface_conditions[1].min = 900 + +local tree_plant = data.raw.plant["s6xdvt-fake-tree"] +tree_plant.growth_ticks = 5 * minute +tree_plant.minable.results = { { type = "item", name = "wood", amount = 5 } } +tree_plant.minable.count = nil +tree_plant.surface_conditions[1].min = 900 +table.insert(tree_plant.autoplace.tile_restriction, "natural-gold-soil") \ No newline at end of file diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 9c51438..61b17a5 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -111,7 +111,7 @@ for _, tree in pairs(data.raw.tree) do if not isRegularTree then goto continue end tree.minable.result = nil tree.minable.count = nil - local woodResult = { type = "item", name = "wood", amount = nil, amount_min = 2, amount_max = 10 } + local woodResult = { type = "item", name = "wood", amount = nil, amount_min = 2, amount_max = 8 } if minable.results and #woodResults > 0 then table.assign(woodResults[1], woodResult) woodResults[1].amount = nil @@ -128,10 +128,6 @@ tree_plant.minable.count = nil tree_plant.surface_conditions[1].min = 900 table.insert(tree_plant.autoplace.tile_restriction, "natural-gold-soil") -if mods["Diversitree"] then - data.raw.plant["s6xdvt-fake-tree"].surface_conditions[1].min = 900 -end - table.insert(data.raw["assembling-machine"]["assembling-machine-1"].crafting_categories, "organic-or-assembling") From aca569cc584478b049f873d19070e1b5190ccb5e Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 12 Dec 2025 23:25:55 +0100 Subject: [PATCH 011/111] 1.0.76 --- lignumis/changelog.txt | 10 +++++++++- lignumis/info.json | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 48e6a61..48c8bca 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,12 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.76 +Date: 12.12.2025 + Changes: + - Add compatibility for "Canal Excavator" (thanks jurgy) + - Add compatibility for "Wood Logistics" + - Diversitree: Improve compatibility + - Use additional_categories for wood processing +--------------------------------------------------------------------------------------------------- Version: 1.0.75 Date: 09.12.2025 Changes: @@ -92,7 +100,7 @@ Version: 1.0.62 Date: 02.09.2025 Changes: - Add spanish locales (thanks DFOXpro) - - Add compatibility for Alien Biomes (thanks Chromebomb) + - Add compatibility for "Alien Biomes" (thanks Chromebomb) - The lumber mill can be built on Vulcanus again --------------------------------------------------------------------------------------------------- Version: 1.0.61 diff --git a/lignumis/info.json b/lignumis/info.json index 2e01294..c3a157d 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.75", + "version": "1.0.76", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis planet mod effects other planets and space ships. Make sure to read the description on the mod portal and check the mod settings.", "author": "cackling fiend", From 15a857e689046a3b6d9ec4a3a0e2b91f892a5b46 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 12 Dec 2025 23:33:14 +0100 Subject: [PATCH 012/111] Correct description of quality assembler --- lignumis/locale/de/strings.cfg | 2 +- lignumis/locale/en/strings.cfg | 2 +- lignumis/locale/es-ES/strings.cfg | 2 +- lignumis/locale/ru/strings.cfg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lignumis/locale/de/strings.cfg b/lignumis/locale/de/strings.cfg index 3c723c8..63a519a 100644 --- a/lignumis/locale/de/strings.cfg +++ b/lignumis/locale/de/strings.cfg @@ -52,7 +52,7 @@ lignumis-medium-wriggler-pentapod=Mittelgroßer Lignumis Fünfbein-Zapler [entity-description] lumber-mill=Fortschrittliche Maschine zur Holzbearbeitung. -quality-assembler=High-End-Montagemaschine, die nur die besten Maschinen herstellt. Verleiht 25% zusätzliche Qualität durch den Verbrauch von [item=gold-quality-catalyst]. Die Oberflächenbedingungen und Zutaten bleiben ansonsten unverändert. +quality-assembler=High-End-Montagemaschine, die nur die besten Maschinen herstellt. Verleiht 35% zusätzliche Qualität durch den Verbrauch von [item=gold-quality-catalyst]. Die Oberflächenbedingungen und Zutaten bleiben ansonsten unverändert. gold-stromatolite-plant=Sammle Gold-Stromatolithen für Bakterien, die Gold aus dem Boden anreichern.\n__REMARK_COLOR_BEGIN__Erwarteter Ertrag:__REMARK_COLOR_END__ 1.5 [item=gold-ore]/m [equipment-name] diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 262ef96..ef74696 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -53,7 +53,7 @@ burner-lamp=Burner lamp [entity-description] lumber-mill=Advanced machine to process wood. -quality-assembler=High-end assembler to craft only the finest quality machines. It gives 25% additional quality by consuming [item=gold-quality-catalyst]. Surface conditions and ingredients are otherwise unchanged. +quality-assembler=High-end assembler to craft only the finest quality machines. It gives 35% additional quality by consuming [item=gold-quality-catalyst]. Surface conditions and ingredients are otherwise unchanged. gold-stromatolite-plant=Harvest gold stromatolites for bacteria that enrich gold from the ground.\n__REMARK_COLOR_BEGIN__Expected yield:__REMARK_COLOR_END__ 1.5 [item=gold-ore]/m [equipment-name] diff --git a/lignumis/locale/es-ES/strings.cfg b/lignumis/locale/es-ES/strings.cfg index 5131da5..3d78c3f 100644 --- a/lignumis/locale/es-ES/strings.cfg +++ b/lignumis/locale/es-ES/strings.cfg @@ -52,7 +52,7 @@ lignumis-medium-wriggler-pentapod=Pentápodo reptante mediano de Lignumis [entity-description] lumber-mill=Máquina avanzada para procesar madera. -quality-assembler=Ensamblador de alta gama para fabricar solo máquinas de la mejor calidad. Da un 25% de calidad adicional al consumir [item=gold-quality-catalyst]. Por lo demás, las condiciones de la superficie y los ingredientes no cambian. +quality-assembler=Ensamblador de alta gama para fabricar solo máquinas de la mejor calidad. Da un 35% de calidad adicional al consumir [item=gold-quality-catalyst]. Por lo demás, las condiciones de la superficie y los ingredientes no cambian. gold-stromatolite-plant=Recolecte estromatolitos de oro en busca de bacterias que enriquezcan el oro del suelo.\n__REMARK_COLOR_BEGIN__Rendimiento esperado:__REMARK_COLOR_END__ 1.5 [item=gold-ore]/m [equipment-name] diff --git a/lignumis/locale/ru/strings.cfg b/lignumis/locale/ru/strings.cfg index 1d8c517..03b9dc4 100644 --- a/lignumis/locale/ru/strings.cfg +++ b/lignumis/locale/ru/strings.cfg @@ -52,7 +52,7 @@ lignumis-medium-wriggler-pentapod=Средний пятиног-ползун Л [entity-description] lumber-mill=Продвинутая машина для обработки древесины. -quality-assembler=Высококачественный сборочный автомат, создающий только лучшие механизмы. Добавляет 25% дополнительного качества предмету, потребляя [item=gold-quality-catalyst]. Условия поверхности и ингредиенты остаются неизменными. +quality-assembler=Высококачественный сборочный автомат, создающий только лучшие механизмы. Добавляет 35% дополнительного качества предмету, потребляя [item=gold-quality-catalyst]. Условия поверхности и ингредиенты остаются неизменными. gold-stromatolite-plant=Собирайте золотой строматолит для получения бактерий, обогащающих золото из почвы.\n__REMARK_COLOR_BEGIN__Ожидаемая добыча:__REMARK_COLOR_END__ 1.5 [item=gold-ore]/m [equipment-name] From 141aa9a12432db408cadc16429afece37bfbb090 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 14 Dec 2025 01:14:39 +0100 Subject: [PATCH 013/111] Add Ko-fi to readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0db4bfb..c8d614e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/ufvFUJtVwk)[![Forgejo](https://img.shields.io/badge/source%20code-%23f4f4f5?style=for-the-badge&logo=forgejo&logoColor=%23c2410c)](https://git.cacklingfiend.info/cacklingfiend/lignumis)[![Downloads](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fmods.factorio.com%2Fapi%2Fmods%2Flignumis&query=%24.downloads_count&suffix=%20Downloads&style=for-the-badge&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI%2FPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDIwMDEwOTA0Ly9FTiIKICJodHRwOi8vd3d3LnczLm9yZy9UUi8yMDAxL1JFQy1TVkctMjAwMTA5MDQvRFREL3N2ZzEwLmR0ZCI%2BCjxzdmcgdmVyc2lvbj0iMS4wIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiB3aWR0aD0iMTIxNnB0IiBoZWlnaHQ9IjEyODBwdCIgdmlld0JveD0iMCAwIDEyMTYgMTI4MCIKIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIG1lZXQiPgo8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDEyODApIHNjYWxlKDAuMSwtMC4xKSIKZmlsbD0iI2ZmZmZmZiIgc3Ryb2tlPSJub25lIj4KPHBhdGggZD0iTTM0NzAgOTYwMCBsMCAtMzIwMCAtMTczMSAwIGMtOTUyIDAgLTE3MjkgLTQgLTE3MjcgLTggNCAtMTIgNjA2MgotNjM5MCA2MDY4IC02MzkwIDYgMCA2MDY0IDYzNzggNjA2OCA2MzkwIDIgNCAtNzc1IDggLTE3MjcgOCBsLTE3MzEgMCAwIDMyMDAKMCAzMjAwIC0yNjEwIDAgLTI2MTAgMCAwIC0zMjAweiIvPgo8L2c%2BCjwvc3ZnPgo%3D&label=&labelColor=%23e39827&color=%23e39827)](https://mods.factorio.com/mod/lignumis/metrics?range=last_two_months&type=mod_downloads) +[![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/ufvFUJtVwk)[![Forgejo](https://img.shields.io/badge/source%20code-%23f4f4f5?style=for-the-badge&logo=forgejo&logoColor=%23c2410c)](https://git.cacklingfiend.info/cacklingfiend/lignumis)[![Downloads](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fmods.factorio.com%2Fapi%2Fmods%2Flignumis&query=%24.downloads_count&suffix=%20Downloads&style=for-the-badge&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI%2FPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDIwMDEwOTA0Ly9FTiIKICJodHRwOi8vd3d3LnczLm9yZy9UUi8yMDAxL1JFQy1TVkctMjAwMTA5MDQvRFREL3N2ZzEwLmR0ZCI%2BCjxzdmcgdmVyc2lvbj0iMS4wIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiB3aWR0aD0iMTIxNnB0IiBoZWlnaHQ9IjEyODBwdCIgdmlld0JveD0iMCAwIDEyMTYgMTI4MCIKIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIG1lZXQiPgo8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDEyODApIHNjYWxlKDAuMSwtMC4xKSIKZmlsbD0iI2ZmZmZmZiIgc3Ryb2tlPSJub25lIj4KPHBhdGggZD0iTTM0NzAgOTYwMCBsMCAtMzIwMCAtMTczMSAwIGMtOTUyIDAgLTE3MjkgLTQgLTE3MjcgLTggNCAtMTIgNjA2MgotNjM5MCA2MDY4IC02MzkwIDYgMCA2MDY0IDYzNzggNjA2OCA2MzkwIDIgNCAtNzc1IDggLTE3MjcgOCBsLTE3MzEgMCAwIDMyMDAKMCAzMjAwIC0yNjEwIDAgLTI2MTAgMCAwIC0zMjAweiIvPgo8L2c%2BCjwvc3ZnPgo%3D&label=&labelColor=%23e39827&color=%23e39827)](https://mods.factorio.com/mod/lignumis/metrics?range=last_two_months&type=mod_downloads)[![Ko-fi](https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white)](https://ko-fi.com/cacklingfiend) _________________ ![Lignumis poster](https://git.cacklingfiend.info/cacklingfiend/lignumis-assets/raw/branch/main/sources/readme/poster.jpg) From 377a703ed83c3448092aef612ffdee9edf438161 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 13 Dec 2025 01:10:11 +0100 Subject: [PATCH 014/111] Integrate deep miner code into this mod --- lignumis/prototypes/content/deep-miner.lua | 235 +++++++++++++++++---- 1 file changed, 194 insertions(+), 41 deletions(-) diff --git a/lignumis/prototypes/content/deep-miner.lua b/lignumis/prototypes/content/deep-miner.lua index 8f8db39..4671960 100644 --- a/lignumis/prototypes/content/deep-miner.lua +++ b/lignumis/prototypes/content/deep-miner.lua @@ -1,44 +1,197 @@ -local DeepMinerFactory = require(MF.buildings .. "CoreExtractor") -local DeepMiner = DeepMinerFactory("deep-miner") +local hit_effects = require("__base__.prototypes.entity.hit-effects") +local item_sounds = require("__base__.prototypes.item_sounds") +local sounds = require("__base__.prototypes.entity.sounds") +local Entity = require("__cf-lib__/data/Entity") -local entity = DeepMiner.EntityBuilder:new():build({ - resource_searching_radius = 0.49, - energy_usage = "25MW", - mining_speed = 7.5, - energy_source = { - emissions_per_minute = { noise = 2000 } +local gfx = Lignumis.graphics .. "entity/deep-miner/" +local techGfx = Lignumis.graphics .. "technology/" +local name = "deep-miner" + +local function animationLayer() + return { + priority = "high", + width = 704, + height = 704, + frame_count = 120, + lines_per_file = 8, + animation_speed = 0.3, + scale = 0.5, + stripes = { + { + filename = gfx .. "core-extractor-animation-1.png", + width_in_frames = 8, + height_in_frames = 8 + }, + { + filename = gfx .. "core-extractor-animation-2.png", + width_in_frames = 8, + height_in_frames = 7 + } + } + } +end + +data:extend({ + { + type = "mining-drill", + name = name, + icon = gfx .. "core-extractor-icon.png", + flags = { "placeable-neutral", "player-creation" }, + minable = { mining_time = 0.2, result = name }, + fast_replaceable_group = name, + max_health = 500, + corpse = "big-remnants", + dying_explosion = "medium-explosion", + collision_box = Entity.collisionBox(11, 11), + selection_box = Entity.selectionBox(11, 11), + damaged_trigger_effect = hit_effects.entity(), + drawing_box_vertical_extension = 1.3, + module_slots = 4, + icon_draw_specification = { scale = 2, shift = { 0, -0.3 } }, + icons_positioning = { + { inventory_index = defines.inventory.assembling_machine_modules, shift = { 0, 1.25 } } + }, + allowed_effects = { "consumption", "speed", "pollution", "quality", "productivity" }, + mining_speed = 7.5, + resource_categories = { "deep-mining" }, + drops_full_belt_stacks = true, + resource_searching_radius = 0.49, + vector_to_place_result = { 0, -5.85 }, + resource_drain_rate_percent = 75, + energy_source = { + type = "electric", + usage_priority = "secondary-input", + emissions_per_minute = { noise = 2000 } + }, + energy_usage = "25MW", + perceived_performance = { minimum = 0.25, performance_to_activity_rate = 0.25, maximum = 2 }, + graphics_set = { + animation = { + layers = { + { + filename = gfx .. "core-extractor-shadow.png", + priority = "high", + width = 1400, + height = 1400, + frame_count = 1, + line_length = 1, + repeat_count = 120, + animation_speed = 0.3, + draw_as_shadow = true, + scale = 0.5 + }, + animationLayer() + } + }, + working_visualisations = { + { + fadeout = true, + animation = { + layers = { + animationLayer(), + { + priority = "high", + draw_as_glow = true, + blend_mode = "additive", + width = 704, + height = 704, + frame_count = 120, + lines_per_file = 8, + animation_speed = 0.3, + scale = 0.5, + stripes = { + { + filename = gfx .. "core-extractor-emission-1.png", + width_in_frames = 8, + height_in_frames = 8 + }, + { + filename = gfx .. "core-extractor-emission-2.png", + width_in_frames = 8, + height_in_frames = 7 + } + } + } + } + } + } + } + }, + open_sound = sounds.drill_open, + close_sound = sounds.drill_close, + working_sound = { + main_sounds = { + { + sound = { filename = "__space-age__/sound/entity/big-mining-drill/big-mining-drill-loop.ogg", volume = 0.4, audible_distance_modifier = 1 }, + fade_in_ticks = 4, + fade_out_ticks = 30 + }, + { + sound = { filename = Lignumis.sound .. "entity/deep-miner/deep-miner-gears.ogg", volume = 0.3, audible_distance_modifier = 0.6 }, + fade_in_ticks = 15, + fade_out_ticks = 60 + } + }, + sound_accents = { + { sound = { + filename = Lignumis.sound .. "entity/deep-miner/deep-miner-drop.ogg", + volume = 2, + audible_distance_modifier = 10, + advanced_volume_control = { + attenuation = "logarithmic", + fades = { fade_in = { curve_type = "linear", from = { control = 0.25, volume_percentage = 70.0 }, to = { 1, 100.0 } } } + } + }, frame = 16 } + }, + max_sounds_per_prototype = 4 + } }, - resource_drain_rate_percent = 75 -}) -entity.resource_categories = { "deep-mining" } -data:extend({ entity }) - -DeepMiner.ItemBuilder:new() - :itemsPerRocket(1) - :apply({ + { + type = "item", + name = name, + icon = gfx .. "core-extractor-icon.png", subgroup = "extraction-machine", - order = "a[items]-d[deep-miner]" - }) - -DeepMiner.RecipeBuilder:new() - :ingredients({ - { type = "item", name = "processing-unit", amount = 100 }, - { type = "item", name = "electric-engine-unit", amount = 100 }, - { type = "item", name = "steel-plate", amount = 200 }, - { type = "item", name = "concrete", amount = 50 } - }) - :apply({ - category = "metallurgy-or-assembling" - }) - -DeepMiner.TechnologyBuilder:new() - :prerequisites({ "space-science-pack" }) - :count(500) - :ingredients({ - { "automation-science-pack", 1 }, - { "logistic-science-pack", 1 }, - { "chemical-science-pack", 1 }, - { "space-science-pack", 1 } - }) - :time(60) - :apply() + order = "a[items]-d[deep-miner]", + inventory_move_sound = item_sounds.mechanical_large_inventory_move, + pick_sound = item_sounds.mechanical_large_inventory_pickup, + drop_sound = item_sounds.mechanical_large_inventory_move, + place_result = name, + stack_size = 20, + default_import_location = "nauvis", + weight = 1000 * kg + }, + { + type = "recipe", + name = name, + category = "metallurgy-or-assembling", + enabled = false, + ingredients = { + { type = "item", name = "processing-unit", amount = 100 }, + { type = "item", name = "electric-engine-unit", amount = 100 }, + { type = "item", name = "steel-plate", amount = 200 }, + { type = "item", name = "concrete", amount = 50 } + }, + energy_required = 60, + results = { { type = "item", name = name, amount = 1 } } + }, + { + type = "technology", + name = name, + icon = techGfx .. "core-extractor.png", + icon_size = 256, + effects = { + { type = "unlock-recipe", recipe = name } + }, + prerequisites = { "space-science-pack" }, + unit = { + count = 500, + ingredients = { + { "automation-science-pack", 1 }, + { "logistic-science-pack", 1 }, + { "chemical-science-pack", 1 }, + { "space-science-pack", 1 } + }, + time = 60 + } + } +}) \ No newline at end of file From 31be99bdec942567a690fc87c29fe34a2075d091 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 14 Dec 2025 18:18:29 +0100 Subject: [PATCH 015/111] Wood logistics: Correct lumber mill technology --- lignumis/locale/en/strings.cfg | 2 ++ lignumis/prototypes/content/lumber-mill.lua | 12 ------------ lignumis/prototypes/content/technology-updates.lua | 13 +++++++++++++ lignumis/prototypes/content/updates.lua | 3 ++- 4 files changed, 17 insertions(+), 13 deletions(-) create mode 100644 lignumis/prototypes/content/technology-updates.lua diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index ef74696..f165a69 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -126,6 +126,7 @@ planet-discovery-lignumis=Moon discovery Lignumis iron-processing=Iron processing copper-processing=Copper processing lumber-mill=Lumber mill +advanced-carpentry=Lumber mill deep-miner=Deep miner gold-fluid-handling=Gold fluid handling steam-automation=Steam automation @@ -153,6 +154,7 @@ burner-automation=Technology for basic automation using burner machines. planet-discovery-nauvis=A temperate planet offering all the common resources. planet-discovery-lignumis=A moon orbiting Nauvis that has not much to offer besides some vegetation and a metal that might be useful. lumber-mill=Advanced machine to process wood. +advanced-carpentry=Advanced machine to process wood. deep-miner=Gives access to huge gold deposits that were previously unreachable. steam-automation=Allows research of more sophisticated technologies based on wood products and gold. wood-liquefaction=Converting wood into a liquid offers new possibilities. diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index ac57acb..264b6a0 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -119,18 +119,6 @@ else }) }) - table.assign(data.raw.technology["advanced-carpentry"], { - prerequisites = { "steam-science-pack" }, - unit = { - count = 250, - time = 15, - ingredients = { - { "wood-science-pack", 1 }, - { "steam-science-pack", 1 } - } - } - }) - Recipe:new("lumber-mill") :clone("lumber-mill-copper") :assign({ diff --git a/lignumis/prototypes/content/technology-updates.lua b/lignumis/prototypes/content/technology-updates.lua new file mode 100644 index 0000000..386ddf2 --- /dev/null +++ b/lignumis/prototypes/content/technology-updates.lua @@ -0,0 +1,13 @@ +if mods["wood-logistics"] then + table.assign(data.raw.technology["advanced-carpentry"], { + prerequisites = { "steam-science-pack" }, + unit = { + count = 250, + time = 15, + ingredients = { + { "wood-science-pack", 1 }, + { "steam-science-pack", 1 } + } + } + }) +end \ No newline at end of file diff --git a/lignumis/prototypes/content/updates.lua b/lignumis/prototypes/content/updates.lua index 7087806..640ef0c 100644 --- a/lignumis/prototypes/content/updates.lua +++ b/lignumis/prototypes/content/updates.lua @@ -1,2 +1,3 @@ require("fuel-category-updates") -require("lignumis/planet-updates") \ No newline at end of file +require("lignumis/planet-updates") +require("technology-updates") \ No newline at end of file From 52725edc467fe1be57c9ec980b0f6b28d3c0edf6 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 14 Dec 2025 18:24:09 +0100 Subject: [PATCH 016/111] 1.0.77 --- lignumis/changelog.txt | 8 ++++++++ lignumis/info.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 48c8bca..86a87ca 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,12 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.77 +Date: 14.12.2025 + Changes: + - Integrate deep miner code into this mod + Bug Fixes: + - Correct description of quality assembler + - Wood logistics: Correct lumber mill technology +--------------------------------------------------------------------------------------------------- Version: 1.0.76 Date: 12.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index c3a157d..b0d72f2 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.76", + "version": "1.0.77", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis planet mod effects other planets and space ships. Make sure to read the description on the mod portal and check the mod settings.", "author": "cackling fiend", From 3115b51e4e8ac525ecde830fe7bdd68a04096417 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 15 Dec 2025 22:26:42 +0100 Subject: [PATCH 017/111] Wooden logistics: Change compatibility to stick closer to how wooden logistics does things (breaking change) --- lignumis/prototypes/compatibility/data.lua | 3 +- .../compatibility/wood-logistics.lua | 125 ++++++++++ lignumis/prototypes/content/lumber-mill.lua | 58 +---- lignumis/prototypes/content/lumber.lua | 71 +++--- .../prototypes/content/wood-logistics.lua | 225 +++++++----------- lignumis/prototypes/integrations/vanilla.lua | 4 +- lignumis/settings/wood-logistics.lua | 13 +- 7 files changed, 261 insertions(+), 238 deletions(-) create mode 100644 lignumis/prototypes/compatibility/wood-logistics.lua diff --git a/lignumis/prototypes/compatibility/data.lua b/lignumis/prototypes/compatibility/data.lua index 0ed7173..8450277 100644 --- a/lignumis/prototypes/compatibility/data.lua +++ b/lignumis/prototypes/compatibility/data.lua @@ -8,4 +8,5 @@ require("lane-splitters") require("wood-industry") require("crushing-industry") require("canal-excavator") -require("diversitree") \ No newline at end of file +require("diversitree") +require("wood-logistics") \ No newline at end of file diff --git a/lignumis/prototypes/compatibility/wood-logistics.lua b/lignumis/prototypes/compatibility/wood-logistics.lua new file mode 100644 index 0000000..31cf9ed --- /dev/null +++ b/lignumis/prototypes/compatibility/wood-logistics.lua @@ -0,0 +1,125 @@ +local Item = require("__cf-lib__/data/Item") +local Recipe = require("__cf-lib__/data/Recipe") +local Technology = require("__cf-lib__/data/Technology") + +if not mods["wood-logistics"] then + return +end + +local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value + + +-- Lumber +if settings.startup["wood-logistics-lumber"].value then + Recipe:new("lumber"):addCategory("wood-processing") +end + + +-- Lumber mill +if settings.startup["wood-logistics-lumber-mill"].value then + local lumberMill = data.raw["assembling-machine"]["lumber-mill"] + table.assign(lumberMill, { + energy_source = { + type = "burner", + fuel_categories = { "chemical" }, + effectivity = 1, + fuel_inventory_size = 3, + emissions_per_minute = { pollution = 10, noise = 100 }, + }, + surface_conditions = { + { + property = has_oxygen and "oxygen" or "pressure", + min = 3 + }, + { + property = "gravity", + min = 1 + } + } + }) + table.insert(lumberMill.crafting_categories, "wood-processing") + + data.raw.item["lumber-mill"].default_import_location = "lignumis" + + table.assign(data.raw.recipe["lumber-mill"], { + additional_categories = { "wood-processing" }, + ingredients = table.trim({ + { type = "item", name = "stone-brick", amount = 40 }, + { type = "item", name = "lumber", amount = 50 }, + { type = "item", name = "wooden-gear-wheel", amount = 50 }, + { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, + basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, + { type = "item", name = "burner-assembling-machine", amount = 2 } + }) + }) + + Recipe:new("lumber-mill") + :clone("lumber-mill-copper") + :assign({ + localised_name = { "entity-name.lumber-mill" }, + icons = { + { icon = data.raw.item["lumber-mill"].icon }, + { icon = basic_circuit_board and "__base__/graphics/icons/copper-plate.png" or "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } + } + }) + :replaceIngredient("gold-plate", "copper-plate") + :apply() + + Technology:new(basic_circuit_board and "copper-processing" or "electronics"):addRecipe("lumber-mill-copper") +end + + +-- Wooden belts +if settings.startup["wood-logistics-belts"].value then + Recipe:new("wood-transport-belt") + :replaceIngredient("copper-cable", "wooden-gear-wheel", 1) + :assign({ + additional_categories = { "wood-processing" } + }) + + Recipe:new("wood-underground-belt") + :assign({ + additional_categories = { "wood-processing" } + }) + + Recipe:new("wood-splitter") + :replaceIngredient("copper-cable", basic_circuit_board and "basic-circuit-board" or "gold-cable", basic_circuit_board and 5 or nil) + :assign({ + additional_categories = { "wood-processing" } + }) + + if not basic_circuit_board then + Recipe:new("wood-splitter") + :clone("wood-splitter-electronic-circuit") + :replaceIngredient(basic_circuit_board and "gold-cable" or "basic-circuit-board", "electronic-circuit", 2) + :assign({ + localised_name = { "entity-name.wood-splitter" }, + icons = { + { icon = data.raw.item["wood-splitter"].icon }, + { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } + } + }) + :unlockedByTechnology("electronics") + :apply() + end + + Item:new("wood-transport-belt") + :itemsPerRocket(200) + :defaultImportLocation("lignumis") + Item:new("wood-underground-belt") + :itemsPerRocket(100) + :defaultImportLocation("lignumis") + Item:new("wood-splitter") + :itemsPerRocket(100) + :defaultImportLocation("lignumis") + + Technology:new("wood-logistics"):assign({ + prerequisites = { "wood-science-pack" }, + unit = { + count = 10, + ingredients = { { "wood-science-pack", 1 } }, + time = 10 + } + }) + Technology:new("logistics"):setPrerequisites({ "automation-science-pack" }) +end \ No newline at end of file diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 264b6a0..1e21aa4 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -14,7 +14,10 @@ data:extend({ local has_oxygen = data.raw["surface-property"]["oxygen"] ~= nil -if not mods["wood-logistics"] then +if mods["wood-logistics"] then + return +end + LumberMill.EntityBuilder:new() :burnerEnergySource({ emissions_per_minute = { noise = 100 } }) :baseProductivity(0.5) @@ -80,59 +83,6 @@ if not mods["wood-logistics"] then }) Technology:new(basic_circuit_board and "copper-processing" or "electronics"):addRecipe("lumber-mill-copper") -else - table.assign(data.raw["assembling-machine"]["lumber-mill"], { - energy_source = { - type = "burner", - fuel_categories = { "chemical" }, - effectivity = 1, - fuel_inventory_size = 3, - emissions_per_minute = { pollution = 10, noise = 100 }, - }, - crafting_categories = { "wood-processing" }, - energy_usage = "1000kW", - module_slots = 4, - max_health = 500, - surface_conditions = { - { - property = has_oxygen and "oxygen" or "pressure", - min = 3 - }, - { - property = "gravity", - min = 1 - } - } - }) - - data.raw.item["lumber-mill"].default_import_location = "lignumis" - - table.assign(data.raw.recipe["lumber-mill"], { - additional_categories = { "wood-processing" }, - ingredients = table.trim({ - { type = "item", name = "stone-brick", amount = 40 }, - { type = "item", name = "lumber", amount = 50 }, - { type = "item", name = "wooden-gear-wheel", amount = 50 }, - { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, - basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, - { type = "item", name = "burner-assembling-machine", amount = 2 } - }) - }) - - Recipe:new("lumber-mill") - :clone("lumber-mill-copper") - :assign({ - localised_name = { "entity-name.lumber-mill" }, - icons = { - { icon = data.raw.item["lumber-mill"].icon }, - { icon = basic_circuit_board and "__base__/graphics/icons/copper-plate.png" or "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } - } - }) - :replaceIngredient("gold-plate", "copper-plate") - :apply() - - Technology:new(basic_circuit_board and "copper-processing" or "electronics"):addRecipe("lumber-mill-copper") -end Recipe:new("wooden-chest"):addCategory("wood-processing") Recipe:new("small-electric-pole"):addCategory("wood-processing") \ No newline at end of file diff --git a/lignumis/prototypes/content/lumber.lua b/lignumis/prototypes/content/lumber.lua index f3a46f1..bc6f985 100644 --- a/lignumis/prototypes/content/lumber.lua +++ b/lignumis/prototypes/content/lumber.lua @@ -1,39 +1,38 @@ local item_sounds = require("__base__.prototypes.item_sounds") -local Recipe = require("__cf-lib__/data/Recipe") -if not mods["wood-logistics"] then - data:extend({ - { - type = "item", - name = "lumber", - icon = Lignumis.graphics .. "icons/lumber.png", - pictures = { - { filename = Lignumis.graphics .. "icons/lumber.png", size = 64, scale = 0.5 }, - { filename = Lignumis.graphics .. "icons/lumber-1.png", size = 64, scale = 0.5 }, - { filename = Lignumis.graphics .. "icons/lumber-2.png", size = 64, scale = 0.5 }, - }, - subgroup = "intermediate-product", - order = "A[basic-intermediates]-c[lumber]", - inventory_move_sound = item_sounds.wood_inventory_move, - pick_sound = item_sounds.wood_inventory_pickup, - drop_sound = item_sounds.wood_inventory_move, - stack_size = 100, - random_tint_color = { 1.0, 0.95, 0.9, 1.0 }, - fuel_category = "wood", - fuel_value = "4MJ" +if mods["wood-logistics"] and settings.startup["wood-logistics-lumber"].value then + return +end + +data:extend({ + { + type = "item", + name = "lumber", + icon = Lignumis.graphics .. "icons/lumber.png", + pictures = { + { filename = Lignumis.graphics .. "icons/lumber.png", size = 64, scale = 0.5 }, + { filename = Lignumis.graphics .. "icons/lumber-1.png", size = 64, scale = 0.5 }, + { filename = Lignumis.graphics .. "icons/lumber-2.png", size = 64, scale = 0.5 }, }, - { - type = "recipe", - name = "lumber", - category = "crafting", - additional_categories = { "wood-processing" }, - allow_productivity = true, - allow_as_intermediate = true, - ingredients = { { type = "item", name = "wood", amount = 2 } }, - results = { { type = "item", name = "lumber", amount = 1 } }, - energy_required = 1 - } - }) -else - Recipe:new("lumber"):addCategory("wood-processing") -end \ No newline at end of file + subgroup = "intermediate-product", + order = "A[basic-intermediates]-c[lumber]", + inventory_move_sound = item_sounds.wood_inventory_move, + pick_sound = item_sounds.wood_inventory_pickup, + drop_sound = item_sounds.wood_inventory_move, + stack_size = 100, + random_tint_color = { 1.0, 0.95, 0.9, 1.0 }, + fuel_category = "wood", + fuel_value = "4MJ" + }, + { + type = "recipe", + name = "lumber", + category = "crafting", + additional_categories = { "wood-processing" }, + allow_productivity = true, + allow_as_intermediate = true, + ingredients = { { type = "item", name = "wood", amount = 2 } }, + results = { { type = "item", name = "lumber", amount = 1 } }, + energy_required = 1 + } +}) \ No newline at end of file diff --git a/lignumis/prototypes/content/wood-logistics.lua b/lignumis/prototypes/content/wood-logistics.lua index a2eef43..31f3809 100644 --- a/lignumis/prototypes/content/wood-logistics.lua +++ b/lignumis/prototypes/content/wood-logistics.lua @@ -1,151 +1,108 @@ local BeltFactory = require(MF.logistics .. "Belts") local Belt = BeltFactory("wood", "brown", "slow") -local Recipe = require("__cf-lib__/data/Recipe") -local Item = require("__cf-lib__/data/Item") local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value -if not mods["wood-logistics"] then - Belt.EntityBuilder:new() - :itemsPerSecond(7.5) - :nextTier("") - :undergroundDistance(4) - :animationSpeedMultiplier(1.01) - :apply({ - transportBelt = { - emissions_per_second = { noise = 2 / 60 } - }, - undergroundBelt = { - emissions_per_second = { noise = 7.5 / 60 }, - factoriopedia_simulation = { - init = - [[ - game.simulation.camera_position = {0, 0.5} - game.simulation.camera_zoom = 1.8 - game.surfaces[1].create_entities_from_blueprint_string - { - string = "0eNqVUNsKgzAM/Zc81+FEBfsrYwwvQQKaltpuivjvS3Wwh8HGnkKSc0tWaIaA1hF70CtMXNvEm6R31MV+Bl0oWECfNwXUGp5AXwRGPddDBHA9Imh4GNMlgTt0vTNSkwYHD5EjsznSrwqQPXnCQ2JvlhuHsUEnAPVdSoE1k7ANv2KlpyOYVLHpyGF7bHMFfrFRidiGGOLDLPvXLP9tZoLf3eRO8jjK5P1YBXd0004oyqzKq6ooqzLNinLbnvlmf6E=", - position = {-0.5, 0} - } - ]] +if mods["wood-logistics"] and settings.startup["wood-logistics-belts"].value then + return +end + +Belt.EntityBuilder:new() + :itemsPerSecond(7.5) + :nextTier("") + :undergroundDistance(4) + :animationSpeedMultiplier(1.01) + :apply({ + transportBelt = { + emissions_per_second = { noise = 2 / 60 } + }, + undergroundBelt = { + emissions_per_second = { noise = 7.5 / 60 }, + factoriopedia_simulation = { + init = + [[ + game.simulation.camera_position = {0, 0.5} + game.simulation.camera_zoom = 1.8 + game.surfaces[1].create_entities_from_blueprint_string + { + string = "0eNqVUNsKgzAM/Zc81+FEBfsrYwwvQQKaltpuivjvS3Wwh8HGnkKSc0tWaIaA1hF70CtMXNvEm6R31MV+Bl0oWECfNwXUGp5AXwRGPddDBHA9Imh4GNMlgTt0vTNSkwYHD5EjsznSrwqQPXnCQ2JvlhuHsUEnAPVdSoE1k7ANv2KlpyOYVLHpyGF7bHMFfrFRidiGGOLDLPvXLP9tZoLf3eRO8jjK5P1YBXd0004oyqzKq6ooqzLNinLbnvlmf6E=", + position = {-0.5, 0} } - }, - splitter = { - emissions_per_second = { noise = 20 / 60 } + ]] } - }) + }, + splitter = { + emissions_per_second = { noise = 20 / 60 } + } + }) - local splitter_item = Belt.ItemBuilder:new() - :itemsPerRocket("transportBelt", 200) - :itemsPerRocket("undergroundBelt", 100) - :itemsPerRocket("splitter", 100) - :order("0") - :apply() - .splitter +local splitter_item = Belt.ItemBuilder:new() + :itemsPerRocket("transportBelt", 200) + :itemsPerRocket("undergroundBelt", 100) + :itemsPerRocket("splitter", 100) + :order("0") + :apply() + .splitter - Belt.RecipeBuilder:new() - :beltAmount(2) - :ingredients("transportBelt", { - { type = "item", name = "lumber", amount = 1 }, - { type = "item", name = "wooden-gear-wheel", amount = 1 } - }) - :ingredients("undergroundBelt", { - { type = "item", name = "lumber", amount = 1 }, - { type = "item", name = "wood-transport-belt", amount = 4 }, - }) - :ingredients("splitter", { - { type = "item", name = "wood-transport-belt", amount = 2 }, - { type = "item", name = "lumber", amount = 2 }, - basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 5 } or - { type = "item", name = "gold-cable", amount = 10 } - }) - :apply({ - transportBelt = { - additional_categories = { "wood-processing" } - }, - undergroundBelt = { - additional_categories = { "wood-processing" } - }, - splitter = { - additional_categories = { "wood-processing" } - } - }) - - Belt.TechnologyBuilder:new() - :prerequisites({ "wood-science-pack" }) - :ingredients({ { "wood-science-pack", 1 } }) - :count(10) - :time(10) - :apply() - - if not basic_circuit_board then - data:extend({ - Belt.RecipeBuilder:new() - :ingredients("splitter", { - { type = "item", name = "wood-transport-belt", amount = 2 }, - { type = "item", name = "lumber", amount = 2 }, - { type = "item", name = "electronic-circuit", amount = 2 } - }) - :build({ - splitter = { - name = "wood-splitter-electronic-circuit", - localised_name = { "entity-name.wood-splitter" }, - icons = { - { icon = splitter_item.icon }, - { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } - }, - additional_categories = { "wood-processing" } - } - }) - .splitter - }) - - table.insert(data.raw.technology["electronics"].effects, { - type = "unlock-recipe", - recipe = "wood-splitter-electronic-circuit" - }) - end - -else - Recipe:new("wood-transport-belt") - :replaceIngredient("copper-cable", "wooden-gear-wheel", 1) - :assign({ +Belt.RecipeBuilder:new() + :beltAmount(2) + :ingredients("transportBelt", { + { type = "item", name = "lumber", amount = 1 }, + { type = "item", name = "wooden-gear-wheel", amount = 1 } + }) + :ingredients("undergroundBelt", { + { type = "item", name = "lumber", amount = 1 }, + { type = "item", name = "wood-transport-belt", amount = 4 }, + }) + :ingredients("splitter", { + { type = "item", name = "wood-transport-belt", amount = 2 }, + { type = "item", name = "lumber", amount = 2 }, + basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 5 } or + { type = "item", name = "gold-cable", amount = 10 } + }) + :apply({ + transportBelt = { additional_categories = { "wood-processing" } - }) - - Recipe:new("wood-underground-belt") - :assign({ + }, + undergroundBelt = { additional_categories = { "wood-processing" } - }) - - Recipe:new("wood-splitter") - :replaceIngredient("copper-cable", basic_circuit_board and "basic-circuit-board" or "gold-cable", basic_circuit_board and 5 or nil) - :assign({ + }, + splitter = { additional_categories = { "wood-processing" } - }) + } + }) - if not basic_circuit_board then - Recipe:new("wood-splitter") - :clone("wood-splitter-electronic-circuit") - :replaceIngredient(basic_circuit_board and "gold-cable" or "basic-circuit-board", "electronic-circuit", 2) - :assign({ - localised_name = { "entity-name.wood-splitter" }, - icons = { - { icon = data.raw.item["wood-splitter"].icon }, - { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } +Belt.TechnologyBuilder:new() + :prerequisites({ "wood-science-pack" }) + :ingredients({ { "wood-science-pack", 1 } }) + :count(10) + :time(10) + :apply() + +if not basic_circuit_board then + data:extend({ + Belt.RecipeBuilder:new() + :ingredients("splitter", { + { type = "item", name = "wood-transport-belt", amount = 2 }, + { type = "item", name = "lumber", amount = 2 }, + { type = "item", name = "electronic-circuit", amount = 2 } + }) + :build({ + splitter = { + name = "wood-splitter-electronic-circuit", + localised_name = { "entity-name.wood-splitter" }, + icons = { + { icon = splitter_item.icon }, + { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } + }, + additional_categories = { "wood-processing" } } }) - :unlockedByTechnology("electronics") - :apply() - end + .splitter + }) - Item:new("wood-transport-belt") - :itemsPerRocket(200) - :defaultImportLocation("lignumis") - Item:new("wood-underground-belt") - :itemsPerRocket(100) - :defaultImportLocation("lignumis") - Item:new("wood-splitter") - :itemsPerRocket(100) - :defaultImportLocation("lignumis") + table.insert(data.raw.technology["electronics"].effects, { + type = "unlock-recipe", + recipe = "wood-splitter-electronic-circuit" + }) end \ No newline at end of file diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 61b17a5..65f2028 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -70,7 +70,9 @@ if settings.startup["lignumis-vanilla-lab"].value then Recipe:new("transport-belt"):unlockedByTechnology("iron-processing") else Recipe:new("lab"):replaceIngredient("transport-belt", "wood-transport-belt") - Recipe:new("transport-belt"):unlockedByTechnology("logistics") + if not mods["wood-logistics"] or not settings.startup["wood-logistics-belts"].value then + Recipe:new("transport-belt"):unlockedByTechnology("logistics") + end end diff --git a/lignumis/settings/wood-logistics.lua b/lignumis/settings/wood-logistics.lua index a4627a8..ab0a231 100644 --- a/lignumis/settings/wood-logistics.lua +++ b/lignumis/settings/wood-logistics.lua @@ -6,15 +6,4 @@ local Settings = require("__cf-lib__/settings/Settings") local force = Settings.force local default = Settings.default -force("wood-logistics-lumber", true) -force("wood-logistics-lumber-mill", true) -force("wood-logistics-woodtronics", false) -force("wood-logistics-belts", true) -force("wood-logistics-belts-modify", false) -default("wood-logistics-belts-circuits", true) -force("wood-logistics-inserter", false) -default("wood-logistics-rail-cost", 0) -default("wood-logistics-cargo-wagon", false) -force("wood-logistics-assembling-machine", false) -default("wood-logistics-nerf-small-electric-pole", false) -force("wood-logistics-repair-pack-cost", 0) \ No newline at end of file +force("wood-logistics-woodtronics", false) \ No newline at end of file From bb624c1159b748f90f1a7431cfd018697e10f5a0 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 15 Dec 2025 23:11:31 +0100 Subject: [PATCH 018/111] Add setting to make the lumber mill electric --- lignumis/locale/en/strings.cfg | 2 + lignumis/prototypes/compatibility/data.lua | 3 +- lignumis/prototypes/compatibility/updates.lua | 3 +- .../compatibility/wood-logistics.lua | 62 ++++++++++---- lignumis/prototypes/content/lumber-mill.lua | 81 +++++++++++-------- .../prototypes/content/technology-updates.lua | 13 --- lignumis/prototypes/content/updates.lua | 3 +- lignumis/settings.lua | 9 ++- lignumis/settings/wood-logistics.lua | 1 - 9 files changed, 108 insertions(+), 69 deletions(-) delete mode 100644 lignumis/prototypes/content/technology-updates.lua diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index f165a69..bf7d502 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -195,6 +195,7 @@ lignumis-vanilla-lab=[color=orange][font=heading-2]Overhaul[/font][/color] Keep lignumis-double-rocket=[color=green][font=heading-2]Easy[/font][/color] Double provisional rocket cargo capacity lignumis-sciences-spoil=[color=red][font=heading-2]Hard[/font][/color] Lignumis science packs spoil lignumis-infinite-astroponics-productivity-research=[color=green][font=heading-2]Easy[/font][/color] Infinite productivity research for Astroponics +lignumis-electric-lumber-mill=[color=green][font=heading-2]Easy[/font][/color] Electric lumber mill [mod-setting-description] lignumis-belt-progression=Yellow belts will require wood belts to craft. @@ -211,6 +212,7 @@ lignumis-vanilla-lab=Moves the transport belt recipe to Iron processing so the l lignumis-double-rocket=The provisional rocket can carry 80 instead of 40 slots. lignumis-sciences-spoil=Both wood science packs and steam science packs spoil for additional difficulty. lignumis-infinite-astroponics-productivity-research=Productivity research for Astroponics is infinite instead of being capped to level 5 (which results in 50% productivity). +lignumis-electric-lumber-mill=The lumber mill will consume electricity instead of burner fuel and will be unlocked after researching electricity. [autoplace-control-names] lignumis_enemy_base=Lignumis enemy bases diff --git a/lignumis/prototypes/compatibility/data.lua b/lignumis/prototypes/compatibility/data.lua index 8450277..0ed7173 100644 --- a/lignumis/prototypes/compatibility/data.lua +++ b/lignumis/prototypes/compatibility/data.lua @@ -8,5 +8,4 @@ require("lane-splitters") require("wood-industry") require("crushing-industry") require("canal-excavator") -require("diversitree") -require("wood-logistics") \ No newline at end of file +require("diversitree") \ No newline at end of file diff --git a/lignumis/prototypes/compatibility/updates.lua b/lignumis/prototypes/compatibility/updates.lua index 56e0bbe..2042d0d 100644 --- a/lignumis/prototypes/compatibility/updates.lua +++ b/lignumis/prototypes/compatibility/updates.lua @@ -1,4 +1,5 @@ require("aai-industry") require("gleba-reborn") require("crushing-industry-updates") -require("k2so") \ No newline at end of file +require("k2so") +require("wood-logistics") \ No newline at end of file diff --git a/lignumis/prototypes/compatibility/wood-logistics.lua b/lignumis/prototypes/compatibility/wood-logistics.lua index 31cf9ed..98ea43f 100644 --- a/lignumis/prototypes/compatibility/wood-logistics.lua +++ b/lignumis/prototypes/compatibility/wood-logistics.lua @@ -7,6 +7,7 @@ if not mods["wood-logistics"] then end local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value +local electric_lumber_mill = settings.startup["lignumis-electric-lumber-mill"].value -- Lumber @@ -18,26 +19,29 @@ end -- Lumber mill if settings.startup["wood-logistics-lumber-mill"].value then local lumberMill = data.raw["assembling-machine"]["lumber-mill"] - table.assign(lumberMill, { - energy_source = { + lumberMill.surface_conditions = { + { + property = has_oxygen and "oxygen" or "pressure", + min = 3 + }, + { + property = "gravity", + min = 1 + } + } + table.insert(lumberMill.crafting_categories, "wood-processing") + + if electric_lumber_mill then + lumberMill.energy_source.emissions_per_minute.noise = 100 + else + lumberMill.energy_source = { type = "burner", fuel_categories = { "chemical" }, effectivity = 1, fuel_inventory_size = 3, emissions_per_minute = { pollution = 10, noise = 100 }, - }, - surface_conditions = { - { - property = has_oxygen and "oxygen" or "pressure", - min = 3 - }, - { - property = "gravity", - min = 1 - } } - }) - table.insert(lumberMill.crafting_categories, "wood-processing") + end data.raw.item["lumber-mill"].default_import_location = "lignumis" @@ -63,9 +67,37 @@ if settings.startup["wood-logistics-lumber-mill"].value then } }) :replaceIngredient("gold-plate", "copper-plate") + :unlockedByTechnology( + electric_lumber_mill and "advanced-carpentry" + or basic_circuit_board and "copper-processing" + or "electronics" + ) :apply() - Technology:new(basic_circuit_board and "copper-processing" or "electronics"):addRecipe("lumber-mill-copper") + if electric_lumber_mill then + table.assign(data.raw.technology["advanced-carpentry"], { + prerequisites = { "automation-science-pack" }, + unit = { + count = 250, + time = 15, + ingredients = { + { "automation-science-pack", 1 } + } + } + }) + else + table.assign(data.raw.technology["advanced-carpentry"], { + prerequisites = { "steam-science-pack" }, + unit = { + count = 250, + time = 15, + ingredients = { + { "wood-science-pack", 1 }, + { "steam-science-pack", 1 } + } + } + }) + end end diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 1e21aa4..c10aac5 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -3,8 +3,6 @@ local Technology = require("__cf-lib__/data/Technology") local LumberMillFactory = require(MF.buildings .. "LumberMill") local LumberMill = LumberMillFactory() -local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value - data:extend({ { type = "recipe-category", @@ -12,39 +10,45 @@ data:extend({ } }) +local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value local has_oxygen = data.raw["surface-property"]["oxygen"] ~= nil +local electric_lumber_mill = settings.startup["lignumis-electric-lumber-mill"].value if mods["wood-logistics"] then return end - LumberMill.EntityBuilder:new() - :burnerEnergySource({ emissions_per_minute = { noise = 100 } }) - :baseProductivity(0.5) - :apply({ - crafting_categories = { "wood-processing" }, - crafting_speed = 2, - energy_usage = "1000kW", - surface_conditions = { - { - property = has_oxygen and "oxygen" or "pressure", - min = 3 - }, - { - property = "gravity", - min = 1 - } +local lumberMill = LumberMill.EntityBuilder:new() + :baseProductivity(0.5) +if electric_lumber_mill then + lumberMill:electricEnergySource({ emissions_per_minute = { noise = 100 } }) +else + lumberMill:burnerEnergySource({ emissions_per_minute = { noise = 100 } }) +end +lumberMill:apply({ + crafting_categories = { "wood-processing" }, + crafting_speed = 2, + energy_usage = "1000kW", + surface_conditions = { + { + property = has_oxygen and "oxygen" or "pressure", + min = 3 + }, + { + property = "gravity", + min = 1 } - }) + } +}) - local lumber_mill_item = LumberMill.ItemBuilder:new() - :apply({ +local lumber_mill_item = LumberMill.ItemBuilder:new() + :apply({ default_import_location = "lignumis", order = "2[lumber-mill]" }) - LumberMill.RecipeBuilder:new() - :ingredients(table.trim({ +LumberMill.RecipeBuilder:new() + :ingredients(table.trim({ { type = "item", name = "stone-brick", amount = 40 }, { type = "item", name = "lumber", amount = 50 }, { type = "item", name = "wooden-gear-wheel", amount = 50 }, @@ -52,19 +56,24 @@ end basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, { type = "item", name = "burner-assembling-machine", amount = 2 } })) - :apply({ + :apply({ additional_categories = { "wood-processing" } }) - LumberMill.TechnologyBuilder:new() - :prerequisites({ "steam-science-pack" }) - :count(250) - :time(15) - :ingredients({ { "wood-science-pack", 1 }, { "steam-science-pack", 1 } }) - :apply() +local tech = LumberMill.TechnologyBuilder:new() + :count(250) + :time(15) +if electric_lumber_mill then + tech:prerequisites({ "automation-science-pack" }) + :ingredients({ { "automation-science-pack", 1 } }) +else + tech:prerequisites({ "steam-science-pack" }) + :ingredients({ { "wood-science-pack", 1 }, { "steam-science-pack", 1 } }) +end +tech:apply() - LumberMill.RecipeBuilder:new() - :ingredients({ +LumberMill.RecipeBuilder:new() + :ingredients({ { type = "item", name = "stone-brick", amount = 40 }, { type = "item", name = "lumber", amount = 50 }, { type = "item", name = "wooden-gear-wheel", amount = 50 }, @@ -72,7 +81,7 @@ end { type = "item", name = basic_circuit_board and "basic-circuit-board" or "electronic-circuit", amount = 20 }, { type = "item", name = "assembling-machine-1", amount = 2 } }) - :apply({ + :apply({ name = "lumber-mill-copper", localised_name = { "entity-name.lumber-mill" }, additional_categories = { "wood-processing" }, @@ -82,7 +91,11 @@ end } }) - Technology:new(basic_circuit_board and "copper-processing" or "electronics"):addRecipe("lumber-mill-copper") +Technology:new( + electric_lumber_mill and "lumber-mill" + or basic_circuit_board and "copper-processing" + or "electronics" +):addRecipe("lumber-mill-copper") Recipe:new("wooden-chest"):addCategory("wood-processing") Recipe:new("small-electric-pole"):addCategory("wood-processing") \ No newline at end of file diff --git a/lignumis/prototypes/content/technology-updates.lua b/lignumis/prototypes/content/technology-updates.lua deleted file mode 100644 index 386ddf2..0000000 --- a/lignumis/prototypes/content/technology-updates.lua +++ /dev/null @@ -1,13 +0,0 @@ -if mods["wood-logistics"] then - table.assign(data.raw.technology["advanced-carpentry"], { - prerequisites = { "steam-science-pack" }, - unit = { - count = 250, - time = 15, - ingredients = { - { "wood-science-pack", 1 }, - { "steam-science-pack", 1 } - } - } - }) -end \ No newline at end of file diff --git a/lignumis/prototypes/content/updates.lua b/lignumis/prototypes/content/updates.lua index 640ef0c..7087806 100644 --- a/lignumis/prototypes/content/updates.lua +++ b/lignumis/prototypes/content/updates.lua @@ -1,3 +1,2 @@ require("fuel-category-updates") -require("lignumis/planet-updates") -require("technology-updates") \ No newline at end of file +require("lignumis/planet-updates") \ No newline at end of file diff --git a/lignumis/settings.lua b/lignumis/settings.lua index 9cc4a5e..f043c65 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -99,11 +99,18 @@ data:extend({ }, { type = "bool-setting", - name = "lignumis-sciences-spoil", + name = "lignumis-electric-lumber-mill", setting_type = "startup", default_value = false, order = "o" }, + { + type = "bool-setting", + name = "lignumis-sciences-spoil", + setting_type = "startup", + default_value = false, + order = "p" + }, { type = "string-setting", name = "lignumis-second-planet", diff --git a/lignumis/settings/wood-logistics.lua b/lignumis/settings/wood-logistics.lua index ab0a231..2595d62 100644 --- a/lignumis/settings/wood-logistics.lua +++ b/lignumis/settings/wood-logistics.lua @@ -4,6 +4,5 @@ end local Settings = require("__cf-lib__/settings/Settings") local force = Settings.force -local default = Settings.default force("wood-logistics-woodtronics", false) \ No newline at end of file From 11d5f65680a94741fc89a7a03ceb2f4f5b1b680b Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 00:03:33 +0100 Subject: [PATCH 019/111] Integrate lumber mill code into this mod --- lignumis/prototypes/content/deep-miner.lua | 17 +- lignumis/prototypes/content/lumber-mill.lua | 301 +++++++++++++++----- 2 files changed, 238 insertions(+), 80 deletions(-) diff --git a/lignumis/prototypes/content/deep-miner.lua b/lignumis/prototypes/content/deep-miner.lua index 4671960..494f1be 100644 --- a/lignumis/prototypes/content/deep-miner.lua +++ b/lignumis/prototypes/content/deep-miner.lua @@ -4,7 +4,6 @@ local sounds = require("__base__.prototypes.entity.sounds") local Entity = require("__cf-lib__/data/Entity") local gfx = Lignumis.graphics .. "entity/deep-miner/" -local techGfx = Lignumis.graphics .. "technology/" local name = "deep-miner" local function animationLayer() @@ -18,12 +17,12 @@ local function animationLayer() scale = 0.5, stripes = { { - filename = gfx .. "core-extractor-animation-1.png", + filename = gfx .. "deep-miner-animation-1.png", width_in_frames = 8, height_in_frames = 8 }, { - filename = gfx .. "core-extractor-animation-2.png", + filename = gfx .. "deep-miner-animation-2.png", width_in_frames = 8, height_in_frames = 7 } @@ -35,7 +34,7 @@ data:extend({ { type = "mining-drill", name = name, - icon = gfx .. "core-extractor-icon.png", + icon = Lignumis.graphics .. "icons/deep-miner.png", flags = { "placeable-neutral", "player-creation" }, minable = { mining_time = 0.2, result = name }, fast_replaceable_group = name, @@ -69,7 +68,7 @@ data:extend({ animation = { layers = { { - filename = gfx .. "core-extractor-shadow.png", + filename = gfx .. "deep-miner-shadow.png", priority = "high", width = 1400, height = 1400, @@ -101,12 +100,12 @@ data:extend({ scale = 0.5, stripes = { { - filename = gfx .. "core-extractor-emission-1.png", + filename = gfx .. "deep-miner-emission-1.png", width_in_frames = 8, height_in_frames = 8 }, { - filename = gfx .. "core-extractor-emission-2.png", + filename = gfx .. "deep-miner-emission-2.png", width_in_frames = 8, height_in_frames = 7 } @@ -149,7 +148,7 @@ data:extend({ { type = "item", name = name, - icon = gfx .. "core-extractor-icon.png", + icon = Lignumis.graphics .. "icons/deep-miner.png", subgroup = "extraction-machine", order = "a[items]-d[deep-miner]", inventory_move_sound = item_sounds.mechanical_large_inventory_move, @@ -177,7 +176,7 @@ data:extend({ { type = "technology", name = name, - icon = techGfx .. "core-extractor.png", + icon = Lignumis.graphics .. "technology/deep-miner.png", icon_size = 256, effects = { { type = "unlock-recipe", recipe = name } diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index c10aac5..816ea8c 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -1,7 +1,10 @@ local Recipe = require("__cf-lib__/data/Recipe") -local Technology = require("__cf-lib__/data/Technology") -local LumberMillFactory = require(MF.buildings .. "LumberMill") -local LumberMill = LumberMillFactory() +local hit_effects = require("__base__.prototypes.entity.hit-effects") +local item_sounds = require("__base__.prototypes.item_sounds") +local Entity = require("__cf-lib__/data/Entity") + +local gfx = Lignumis.graphics .. "entity/lumber-mill/" +local name = "lumber-mill" data:extend({ { @@ -18,84 +21,240 @@ if mods["wood-logistics"] then return end -local lumberMill = LumberMill.EntityBuilder:new() - :baseProductivity(0.5) -if electric_lumber_mill then - lumberMill:electricEnergySource({ emissions_per_minute = { noise = 100 } }) -else - lumberMill:burnerEnergySource({ emissions_per_minute = { noise = 100 } }) -end -lumberMill:apply({ - crafting_categories = { "wood-processing" }, - crafting_speed = 2, - energy_usage = "1000kW", - surface_conditions = { - { - property = has_oxygen and "oxygen" or "pressure", - min = 3 +local energy_source = electric_lumber_mill and { + type = "electric", + usage_priority = "secondary-input", + emissions_per_minute = { noise = 100 } +} or { + type = "burner", + fuel_categories = { "chemical" }, + effectivity = 1, + fuel_inventory_size = 3, + emissions_per_minute = { pollution = 10, noise = 100 } +} + +data:extend({ + { + type = "assembling-machine", + name = name, + icon = Lignumis.graphics .. "icons/lumber-mill.png", + flags = { "placeable-neutral", "player-creation" }, + minable = { mining_time = 0.2, result = name }, + fast_replaceable_group = name, + max_health = 500, + corpse = "big-remnants", + dying_explosion = "medium-explosion", + collision_box = Entity.collisionBox(8, 8), + selection_box = Entity.selectionBox(8, 8), + damaged_trigger_effect = hit_effects.entity(), + drawing_box_vertical_extension = 1.3, + module_slots = 4, + icon_draw_specification = { scale = 2, shift = { 0, -0.3 } }, + icons_positioning = { + { inventory_index = defines.inventory.assembling_machine_modules, shift = { 0, 1.25 } } }, - { - property = "gravity", - min = 1 + allowed_effects = { "consumption", "speed", "pollution", "quality" }, + crafting_categories = { "wood-processing" }, + crafting_speed = 2, + energy_source = energy_source, + energy_usage = "1MW", + effect_receiver = { base_effect = { productivity = 0.5 } }, + surface_conditions = { + { + property = has_oxygen and "oxygen" or "pressure", + min = 3 + }, + { + property = "gravity", + min = 1 + } + }, + perceived_performance = { minimum = 0.25, performance_to_activity_rate = 0.25, maximum = 4 }, + graphics_set = { + animation = { + layers = { + { + filename = gfx .. "lumber-mill-shadow.png", + priority = "high", + width = 800, + height = 700, + frame_count = 1, + line_length = 1, + repeat_count = 80, + animation_speed = 0.32, + shift = util.by_pixel(0, -8), + draw_as_shadow = true, + scale = 0.5 + }, + { + priority = "high", + width = 525, + height = 557, + frame_count = 80, + lines_per_file = 8, + animation_speed = 0.32, + shift = util.by_pixel(0, -8), + scale = 0.5, + stripes = { + { + filename = gfx .. "lumber-mill-animation-1.png", + width_in_frames = 8, + height_in_frames = 8 + }, + { + filename = gfx .. "lumber-mill-animation-2.png", + width_in_frames = 8, + height_in_frames = 2 + } + } + }, + } + }, + working_visualisations = { + { + fadeout = true, + animation = { + layers = { + { + priority = "high", + width = 525, + height = 557, + frame_count = 80, + lines_per_file = 8, + animation_speed = 0.32, + shift = util.by_pixel(0, -8), + scale = 0.5, + stripes = { + { + filename = gfx .. "lumber-mill-animation-1.png", + width_in_frames = 8, + height_in_frames = 8 + }, + { + filename = gfx .. "lumber-mill-animation-2.png", + width_in_frames = 8, + height_in_frames = 2 + } + } + }, + { + priority = "high", + draw_as_glow = true, + blend_mode = "additive", + width = 525, + height = 557, + frame_count = 80, + lines_per_file = 8, + animation_speed = 0.32, + shift = util.by_pixel(0, -8), + scale = 0.5, + stripes = { + { + filename = gfx .. "lumber-mill-emission-1.png", + width_in_frames = 8, + height_in_frames = 8 + }, + { + filename = gfx .. "lumber-mill-emission-2.png", + width_in_frames = 8, + height_in_frames = 2 + } + } + } + } + } + } + } + }, + open_sound = { filename = "__base__/sound/open-close/train-stop-open.ogg", volume = 0.6 }, + close_sound = { filename = "__base__/sound/open-close/train-stop-close.ogg", volume = 0.5 }, + working_sound = { + fade_in_ticks = 4, + fade_out_ticks = 20, + audible_distance_modifier = 0.6, + max_sounds_per_type = 2, + sound = { filename = "__space-age__/sound/entity/foundry/foundry.ogg", volume = 0.6 }, + sound_accents = { + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-1.ogg", volume = 0.8 }, frame = 26, audible_distance_modifier = 0.5 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-fall.ogg", volume = 1.2 }, frame = 42, audible_distance_modifier = 0.5 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-2.ogg", volume = 0.8 }, frame = 53, audible_distance_modifier = 0.4 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-split.ogg", volume = 0.4 }, frame = 62, audible_distance_modifier = 0.3 }, + { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5) }, frame = 14, audible_distance_modifier = 0.3 }, + { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5) }, frame = 34, audible_distance_modifier = 0.3 }, + { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5) }, frame = 54, audible_distance_modifier = 0.3 }, + { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5) }, frame = 74, audible_distance_modifier = 0.3 }, + } + } + }, + { + type = "item", + name = name, + icon = Lignumis.graphics .. "icons/lumber-mill.png", + subgroup = "production-machine", + order = "eb[lumber-mill]", + inventory_move_sound = item_sounds.mechanical_large_inventory_move, + pick_sound = item_sounds.mechanical_large_inventory_pickup, + drop_sound = item_sounds.mechanical_large_inventory_move, + place_result = name, + stack_size = 20, + default_import_location = "lignumis", + weight = 200 * kg + }, + { + type = "recipe", + name = name, + category = "crafting", + additional_categories = { "wood-processing" }, + enabled = false, + ingredients = table.trim({ + { type = "item", name = "stone-brick", amount = 40 }, + { type = "item", name = "lumber", amount = 50 }, + { type = "item", name = "wooden-gear-wheel", amount = 50 }, + { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, + basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, + { type = "item", name = "burner-assembling-machine", amount = 2 } + }), + energy_required = 60, + results = { { type = "item", name = name, amount = 1 } } + }, + { + type = "technology", + name = name, + icon = Lignumis.graphics .. "technology/lumber-mill.png", + icon_size = 256, + prerequisites = electric_lumber_mill and { "automation-science-pack" } or { "steam-science-pack" }, + unit = { + count = 250, + ingredients = electric_lumber_mill and {{ "automation-science-pack", 1 }} or {{ "wood-science-pack", 1 }, { "steam-science-pack", 1 }}, + time = 15 } } }) -local lumber_mill_item = LumberMill.ItemBuilder:new() - :apply({ - default_import_location = "lignumis", - order = "2[lumber-mill]" - }) - -LumberMill.RecipeBuilder:new() - :ingredients(table.trim({ - { type = "item", name = "stone-brick", amount = 40 }, - { type = "item", name = "lumber", amount = 50 }, - { type = "item", name = "wooden-gear-wheel", amount = 50 }, - { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, - basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, - { type = "item", name = "burner-assembling-machine", amount = 2 } - })) - :apply({ - additional_categories = { "wood-processing" } - }) - -local tech = LumberMill.TechnologyBuilder:new() - :count(250) - :time(15) -if electric_lumber_mill then - tech:prerequisites({ "automation-science-pack" }) - :ingredients({ { "automation-science-pack", 1 } }) -else - tech:prerequisites({ "steam-science-pack" }) - :ingredients({ { "wood-science-pack", 1 }, { "steam-science-pack", 1 } }) -end -tech:apply() - -LumberMill.RecipeBuilder:new() - :ingredients({ - { type = "item", name = "stone-brick", amount = 40 }, - { type = "item", name = "lumber", amount = 50 }, - { type = "item", name = "wooden-gear-wheel", amount = 50 }, - { type = "item", name = "copper-plate", amount = basic_circuit_board and 20 or 40 }, - { type = "item", name = basic_circuit_board and "basic-circuit-board" or "electronic-circuit", amount = 20 }, - { type = "item", name = "assembling-machine-1", amount = 2 } - }) - :apply({ - name = "lumber-mill-copper", +Recipe:new("lumber-mill") + :unlockedByTechnology("lumber-mill") + :clone("lumber-mill-copper") + :assign({ + ingredients = { + { type = "item", name = "stone-brick", amount = 40 }, + { type = "item", name = "lumber", amount = 50 }, + { type = "item", name = "wooden-gear-wheel", amount = 50 }, + { type = "item", name = "copper-plate", amount = basic_circuit_board and 20 or 40 }, + { type = "item", name = basic_circuit_board and "basic-circuit-board" or "electronic-circuit", amount = 20 }, + { type = "item", name = "assembling-machine-1", amount = 2 } + }, localised_name = { "entity-name.lumber-mill" }, - additional_categories = { "wood-processing" }, icons = { - { icon = lumber_mill_item.icon }, + { icon = Lignumis.graphics .. "icons/lumber-mill.png" }, { icon = basic_circuit_board and "__base__/graphics/icons/copper-plate.png" or "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } } }) - -Technology:new( - electric_lumber_mill and "lumber-mill" - or basic_circuit_board and "copper-processing" - or "electronics" -):addRecipe("lumber-mill-copper") + :unlockedByTechnology( + electric_lumber_mill and "lumber-mill" + or basic_circuit_board and "copper-processing" + or "electronics" + ) + :apply() Recipe:new("wooden-chest"):addCategory("wood-processing") Recipe:new("small-electric-pole"):addCategory("wood-processing") \ No newline at end of file From f39ad8f6fe58847e8e760ce505488d18ba12fe83 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 00:18:53 +0100 Subject: [PATCH 020/111] 1.0.78 --- lignumis/changelog.txt | 7 +++++++ lignumis/info.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 86a87ca..0d49baa 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,11 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.78 +Date: 16.12.2025 + Changes: + - Wooden logistics: Change compatibility to stick closer to how wooden logistics does things (breaking) + - Add setting to make the lumber mill electric + - Integrate lumber mill code into this mod +--------------------------------------------------------------------------------------------------- Version: 1.0.77 Date: 14.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index b0d72f2..c35c5f6 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.77", + "version": "1.0.78", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis planet mod effects other planets and space ships. Make sure to read the description on the mod portal and check the mod settings.", "author": "cackling fiend", From 52538eadacf7e29745d41946c871930378d613d6 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 00:34:47 +0100 Subject: [PATCH 021/111] Any planet start: Change description of Lignumis to name the selected parent planet --- lignumis/locale/de/strings.cfg | 2 +- lignumis/locale/en/strings.cfg | 2 +- lignumis/locale/es-ES/strings.cfg | 2 +- lignumis/locale/pl/strings.cfg | 2 +- lignumis/locale/ru/strings.cfg | 2 +- lignumis/prototypes/content/lignumis/planet.lua | 1 + 6 files changed, 6 insertions(+), 5 deletions(-) diff --git a/lignumis/locale/de/strings.cfg b/lignumis/locale/de/strings.cfg index 63a519a..f87857e 100644 --- a/lignumis/locale/de/strings.cfg +++ b/lignumis/locale/de/strings.cfg @@ -8,7 +8,7 @@ lignumis=Tauche ein in die Welt von Lignumis, einem Mond von Nauvis, der nur die lignumis=Lignumis [space-location-description] -lignumis=Lignumis ist ein Mond, der Nauvis umkreist. Er ist Nauvis recht ähnlich, scheint aber jünger zu sein und über weniger Ressourcen zu verfügen. +lignumis=Lignumis ist ein Mond, der __1__ umkreist. Er ist Nauvis recht ähnlich, scheint aber jünger zu sein und über weniger Ressourcen zu verfügen. [airborne-pollutant-name] noise=Lärm diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index bf7d502..fc44237 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -8,7 +8,7 @@ lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the mos lignumis=Lignumis [space-location-description] -lignumis=Lignumis is a moon orbiting Nauvis. It is quite similar to Nauvis but seems to be younger and with fewer resources. +lignumis=Lignumis is a moon orbiting __1__. It is quite similar to Nauvis but seems to be younger and with fewer resources. [airborne-pollutant-name] noise=Noise diff --git a/lignumis/locale/es-ES/strings.cfg b/lignumis/locale/es-ES/strings.cfg index 3d78c3f..cfc01ba 100644 --- a/lignumis/locale/es-ES/strings.cfg +++ b/lignumis/locale/es-ES/strings.cfg @@ -8,7 +8,7 @@ lignumis=Sumérgete en el mundo de Lignumis, una luna de Nauvis que ofrece solo lignumis=Lignumis [space-location-description] -lignumis=Lignumis es una luna orbitando Nauvis. Es bastante similar a Nauvis, pero parece ser más joven y con menos recursos. +lignumis=Lignumis es una luna orbitando __1__. Es bastante similar a Nauvis, pero parece ser más joven y con menos recursos. [airborne-pollutant-name] noise=Ruido diff --git a/lignumis/locale/pl/strings.cfg b/lignumis/locale/pl/strings.cfg index 4dfb484..21410af 100644 --- a/lignumis/locale/pl/strings.cfg +++ b/lignumis/locale/pl/strings.cfg @@ -8,7 +8,7 @@ lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the mos lignumis=Lignumis [space-location-description] -lignumis=Lignumis to księżyc orbitujący wokół Nauvis. Jest dość podobny do Nauvis, ale wydaje się być młodszy i ma mniej zasobów. +lignumis=Lignumis to księżyc orbitujący wokół __1__. Jest dość podobny do Nauvis, ale wydaje się być młodszy i ma mniej zasobów. [airborne-pollutant-name] noise=Hałas diff --git a/lignumis/locale/ru/strings.cfg b/lignumis/locale/ru/strings.cfg index 03b9dc4..8b6a72b 100644 --- a/lignumis/locale/ru/strings.cfg +++ b/lignumis/locale/ru/strings.cfg @@ -8,7 +8,7 @@ lignumis=Погрузитесь в мир Лигнумиса — луны Нау lignumis=Лигнумис [space-location-description] -lignumis=Лигнумис — это луна, вращающаяся вокруг Наувиса. Она во многом похожа на Наувис, но кажется моложе и беднее ресурсами. +lignumis=Лигнумис — это луна, вращающаяся вокруг __1__. Она во многом похожа на Наувис, но кажется моложе и беднее ресурсами. [airborne-pollutant-name] noise=Шум diff --git a/lignumis/prototypes/content/lignumis/planet.lua b/lignumis/prototypes/content/lignumis/planet.lua index d94434e..96a32a2 100644 --- a/lignumis/prototypes/content/lignumis/planet.lua +++ b/lignumis/prototypes/content/lignumis/planet.lua @@ -25,6 +25,7 @@ PlanetsLib:extend({ { type = "planet", name = "lignumis", + localised_description = { "space-location-description.lignumis", { "space-location-name." .. target_planet } }, orbit = { parent = { type = "planet", From 44f94db2627c88258cab6a6b825f9e21b833932b Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 14:17:22 +0100 Subject: [PATCH 022/111] Correctly use audible_distance_modifier --- lignumis/prototypes/content/lumber-mill.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 816ea8c..7951185 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -175,14 +175,14 @@ data:extend({ max_sounds_per_type = 2, sound = { filename = "__space-age__/sound/entity/foundry/foundry.ogg", volume = 0.6 }, sound_accents = { - { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-1.ogg", volume = 0.8 }, frame = 26, audible_distance_modifier = 0.5 }, - { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-fall.ogg", volume = 1.2 }, frame = 42, audible_distance_modifier = 0.5 }, - { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-2.ogg", volume = 0.8 }, frame = 53, audible_distance_modifier = 0.4 }, - { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-split.ogg", volume = 0.4 }, frame = 62, audible_distance_modifier = 0.3 }, - { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5) }, frame = 14, audible_distance_modifier = 0.3 }, - { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5) }, frame = 34, audible_distance_modifier = 0.3 }, - { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5) }, frame = 54, audible_distance_modifier = 0.3 }, - { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5) }, frame = 74, audible_distance_modifier = 0.3 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-1.ogg", volume = 0.8, audible_distance_modifier = 0.5 }, frame = 26 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-fall.ogg", volume = 1.2, audible_distance_modifier = 0.5 }, frame = 42 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-2.ogg", volume = 0.8, audible_distance_modifier = 0.4 }, frame = 53 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-split.ogg", volume = 0.4, audible_distance_modifier = 0.3 }, frame = 62 }, + { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5), audible_distance_modifier = 0.3 }, frame = 14 }, + { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5), audible_distance_modifier = 0.3 }, frame = 34 }, + { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5), audible_distance_modifier = 0.3 }, frame = 54 }, + { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5), audible_distance_modifier = 0.3 }, frame = 74 }, } } }, From 5adfc7e044b4731914ce7f6684a2f3b813843d8c Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 01:38:57 +0100 Subject: [PATCH 023/111] Integrate quality assembler code into this mod --- lignumis/prototypes/content/deep-miner.lua | 2 +- lignumis/prototypes/content/lumber-mill.lua | 2 +- .../prototypes/content/quality-assembler.lua | 376 +++++++++++++++--- 3 files changed, 317 insertions(+), 63 deletions(-) diff --git a/lignumis/prototypes/content/deep-miner.lua b/lignumis/prototypes/content/deep-miner.lua index 494f1be..8585062 100644 --- a/lignumis/prototypes/content/deep-miner.lua +++ b/lignumis/prototypes/content/deep-miner.lua @@ -3,8 +3,8 @@ local item_sounds = require("__base__.prototypes.item_sounds") local sounds = require("__base__.prototypes.entity.sounds") local Entity = require("__cf-lib__/data/Entity") -local gfx = Lignumis.graphics .. "entity/deep-miner/" local name = "deep-miner" +local gfx = Lignumis.graphics .. "entity/" .. name .. "/" local function animationLayer() return { diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 7951185..26bb3f7 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -3,8 +3,8 @@ local hit_effects = require("__base__.prototypes.entity.hit-effects") local item_sounds = require("__base__.prototypes.item_sounds") local Entity = require("__cf-lib__/data/Entity") -local gfx = Lignumis.graphics .. "entity/lumber-mill/" local name = "lumber-mill" +local gfx = Lignumis.graphics .. "entity/" .. name .. "/" data:extend({ { diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index be95a71..938080a 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -1,9 +1,55 @@ +local hit_effects = require("__base__.prototypes.entity.hit-effects") local item_sounds = require("__base__.prototypes.item_sounds") +local sounds = require("__base__.prototypes.entity.sounds") +local Entity = require("__cf-lib__/data/Entity") +local Technology = require("__cf-lib__/data/Technology") +local machinepipes = require("prototypes/content/gold/machinepipes") -local QualityAssemblerFactory = require(MF.buildings .. "GravityAssembler") -local QualityAssembler = QualityAssemblerFactory("quality-assembler") +local function assemblerpipepicturesfrozen() + return { + north = { + filename = "__space-age__/graphics/entity/frozen/assembling-machine/assembling-machine-pipe-N-frozen.png", + priority = "extra-high", + width = 71, + height = 38, + shift = util.by_pixel(2.25, 13.5), + scale = 0.5 + }, + east = { + filename = "__space-age__/graphics/entity/frozen/assembling-machine/assembling-machine-pipe-E-frozen.png", + priority = "extra-high", + width = 42, + height = 76, + shift = util.by_pixel(-24.5, 1), + scale = 0.5 + }, + south = { + filename = "__space-age__/graphics/entity/frozen/assembling-machine/assembling-machine-pipe-S-frozen.png", + priority = "extra-high", + width = 88, + height = 61, + shift = util.by_pixel(0, -31.25), + scale = 0.5 + }, + west = { + filename = "__space-age__/graphics/entity/frozen/assembling-machine/assembling-machine-pipe-W-frozen.png", + priority = "extra-high", + width = 39, + height = 73, + shift = util.by_pixel(25.75, 1.25), + scale = 0.5 + } + } +end + +local name = "quality-assembler" +local gfx = Lignumis.graphics .. "entity/" .. name .. "/" data:extend({ + { + type = "recipe-category", + name = "quality-assembling" + }, { type = "burner-usage", name = "quality-catalyst", @@ -60,64 +106,272 @@ data:extend({ allow_productivity = true, allow_quality = false, enabled = false - } -}) - -QualityAssembler.EntityBuilder:new() - :allowProductivity(false) - :burnerEnergySource({ - burner_usage = "quality-catalyst", - fuel_categories = { "quality-catalyst" }, - fuel_inventory_size = 1, - emissions_per_minute = { noise = 100, pollution = 6 } - }) - :pipes() - :apply({ - energy_usage = "1MW", - crafting_speed = 4, + }, + { + type = "assembling-machine", + name = name, + icon = Lignumis.graphics .. "icons/quality-assembler.png", + flags = { "placeable-neutral", "player-creation" }, + minable = { mining_time = 0.2, result = name }, + fast_replaceable_group = name, + max_health = 500, + corpse = "big-remnants", + dying_explosion = "medium-explosion", + collision_box = Entity.collisionBox(4, 4), + selection_box = Entity.selectionBox(4, 4), + damaged_trigger_effect = hit_effects.entity(), + drawing_box_vertical_extension = 1.3, module_slots = 6, - allowed_effects = { "consumption", "pollution", "quality" }, effect_receiver = { base_effect = { quality = 3.5 } }, - crafting_categories = { "quality-assembling" } - }) - -QualityAssembler.ItemBuilder:new():apply() - -QualityAssembler.RecipeBuilder:new() - :ingredients({ - { type = "item", name = "gold-plate", amount = 60 }, - { type = "item", name = "tungsten-plate", amount = 40 }, - { type = "item", name = "superconductor", amount = 50 }, - { type = "item", name = "carbon-fiber", amount = 100 }, - { type = "item", name = "quantum-processor", amount = 10 } - }) - :apply({ + icon_draw_specification = {shift = {0, -0.25}}, + icons_positioning = { + { inventory_index = defines.inventory.assembling_machine_modules, shift = { 0, 1 }, max_icons_per_row = 4 } + }, + allowed_effects = { "consumption", "pollution", "quality" }, + crafting_categories = { "quality-assembling" }, + crafting_speed = 4, + energy_source = { + type = "burner", + burner_usage = "quality-catalyst", + fuel_categories = { "quality-catalyst" }, + effectivity = 1, + fuel_inventory_size = 1, + emissions_per_minute = { noise = 100, pollution = 6 }, + }, + energy_usage = "1MW", + heating_energy = "200kW", + perceived_performance = { minimum = 0.25, performance_to_activity_rate = 0.25, maximum = 4 }, + graphics_set = { + animation = { + layers = { + { + filename = gfx .. "quality-assembler-shadow.png", + priority = "high", + width = 500, + height = 350, + frame_count = 1, + line_length = 1, + repeat_count = 64, + animation_speed = 0.32, + draw_as_shadow = true, + scale = 0.5 + }, + { + priority = "high", + width = 270, + height = 310, + frame_count = 64, + lines_per_file = 8, + animation_speed = 0.32, + scale = 0.5, + stripes = { + { + filename = gfx .. "quality-assembler-animation-1.png", + width_in_frames = 8, + height_in_frames = 8 + } + } + } + } + }, + working_visualisations = { + { + fadeout = true, + animation = { + layers = { + { + priority = "high", + width = 270, + height = 310, + frame_count = 64, + lines_per_file = 8, + animation_speed = 0.32, + scale = 0.5, + stripes = { + { + filename = gfx .. "quality-assembler-animation-1.png", + width_in_frames = 8, + height_in_frames = 8 + } + } + }, + { + priority = "high", + draw_as_glow = true, + blend_mode = "additive", + width = 270, + height = 310, + frame_count = 64, + lines_per_file = 8, + animation_speed = 0.32, + scale = 0.5, + stripes = { + { + filename = gfx .. "quality-assembler-emission-1.png", + width_in_frames = 8, + height_in_frames = 8 + } + } + } + } + } + } + }, + frozen_patch = { + priority = "high", + filename = gfx .. "quality-assembler-frozen-1.png", + width = 270, + height = 310, + scale = 0.5 + } + }, + open_sound = sounds.machine_open, + close_sound = sounds.machine_close, + fluid_boxes = { + { + production_type = "input", + pipe_picture = machinepipes(), + pipe_picture_frozen = assemblerpipepicturesfrozen(), + pipe_covers = pipecoverspictures(), + volume = 200, + secondary_draw_orders = { north = -1 }, + pipe_connections = {{ flow_direction="input-output", direction = defines.direction.west, position = {-1.5, 0.5} }} + }, + { + production_type = "input", + pipe_picture = machinepipes(), + pipe_picture_frozen = assemblerpipepicturesfrozen(), + pipe_covers = pipecoverspictures(), + volume = 200, + secondary_draw_orders = { north = -1 }, + pipe_connections = {{ flow_direction="input-output", direction = defines.direction.east, position = {1.5, -0.5} }} + }, + { + production_type = "output", + pipe_picture = machinepipes(), + pipe_picture_frozen = assemblerpipepicturesfrozen(), + pipe_covers = pipecoverspictures(), + volume = 100, + secondary_draw_orders = { north = -1 }, + pipe_connections = {{ flow_direction="input-output", direction = defines.direction.south, position = {0.5, 1.5} }} + }, + { + production_type = "output", + pipe_picture = machinepipes(), + pipe_picture_frozen = assemblerpipepicturesfrozen(), + pipe_covers = pipecoverspictures(), + volume = 100, + secondary_draw_orders = { north = -1 }, + pipe_connections = {{ flow_direction="input-output", direction = defines.direction.north, position = {-0.5, -1.5} }} + } + }, + fluid_boxes_off_when_no_fluid_recipe = true, + forced_symmetry = "horizontal", + working_sound = { + fade_in_ticks = 4, + fade_out_ticks = 20, + audible_distance_modifier = 0.6, + max_sounds_per_type = 2, + main_sounds = { + { + sound = { filename = Lignumis.sound .. "entity/quality-assembler/quality-assembler-working-loop.ogg", volume = 0.6, audible_distance_modifier = 0.8 }, + probability = 1.0 + }, + { + sound = { + filename = Lignumis.sound .. "entity/quality-assembler/quality-assembler-ai.ogg", + volume = 0.5, + audible_distance_modifier = 0.4, + advanced_volume_control = { + attenuation = "exponential", + fades = { fade_in = { curve_type = "linear", from = { control = 0.75, volume_percentage = 0.0 }, to = { 1.5, 100.0 } } } + } + }, + probability = 1 / (7 * 60) + }, + { + sound = { + filename = Lignumis.sound .. "entity/quality-assembler/quality-assembler-ai-long.ogg", + volume = 0.3, + audible_distance_modifier = 0.2, + advanced_volume_control = { + attenuation = "exponential", + fades = { fade_in = { curve_type = "linear", from = { control = 0.75, volume_percentage = 0.0 }, to = { 1.5, 100.0 } } } + } + } + } + }, + sound_accents = { + { sound = { filename = Lignumis.sound .. "entity/quality-assembler/quality-assembler-welding.ogg", min_volume = 0.6, max_volume = 1.0, audible_distance_modifier = 0.8 }, frame = 12 }, + { sound = { + filename = Lignumis.sound .. "entity/quality-assembler/quality-assembler-click.ogg", + min_volume = 0.3, + max_volume = 0.6, + advanced_volume_control = { + attenuation = "exponential", + fades = { fade_in = { curve_type = "linear", from = { control = 0.75, volume_percentage = 0.0 }, to = { 1.5, 100.0 } } } + }, + audible_distance_modifier = 0.2 + }, frame = 48 } + } + } + }, + { + type = "item", + name = name, + icon = Lignumis.graphics .. "icons/quality-assembler.png", + subgroup = "production-machine", + order = "a[" .. name .. "]", + inventory_move_sound = item_sounds.mechanical_large_inventory_move, + pick_sound = item_sounds.mechanical_large_inventory_pickup, + drop_sound = item_sounds.mechanical_large_inventory_move, + place_result = name, + stack_size = 20, + default_import_location = "nauvis", + weight = 200 * kg + }, + { + type = "recipe", + name = name, category = "electromagnetics", - additional_categories = { "quality-assembling" } - }) - -QualityAssembler.TechnologyBuilder:new() - :prerequisites({ "legendary-quality", "quantum-processor" }) - :count(5000) - :ingredients({ - { "wood-science-pack", 1 }, - { "steam-science-pack", 1 }, - { "automation-science-pack", 1 }, - { "logistic-science-pack", 1 }, - { "chemical-science-pack", 1 }, - { "space-science-pack", 1 }, - { "production-science-pack", 1 }, - { "utility-science-pack", 1 }, - { "metallurgic-science-pack", 1 }, - { "agricultural-science-pack", 1 }, - { "electromagnetic-science-pack", 1 }, - { "cryogenic-science-pack", 1 } - }) - :time(60) - :additionalRecipes({ "gold-quality-catalyst" }) - :apply() - -data:extend({ + additional_categories = { "quality-assembling" }, + enabled = false, + ingredients = { + { type = "item", name = "gold-plate", amount = 60 }, + { type = "item", name = "tungsten-plate", amount = 40 }, + { type = "item", name = "superconductor", amount = 50 }, + { type = "item", name = "carbon-fiber", amount = 100 }, + { type = "item", name = "quantum-processor", amount = 10 } + }, + energy_required = 60, + results = { { type = "item", name = name, amount = 1 } }, + }, + { + type = "technology", + name = name, + icon = Lignumis.graphics .. "technology/quality-assembler.png", + icon_size = 256, + effects = {}, + prerequisites = { "legendary-quality", "quantum-processor" }, + unit = { + count = 5000, + ingredients = { + { "wood-science-pack", 1 }, + { "steam-science-pack", 1 }, + { "automation-science-pack", 1 }, + { "logistic-science-pack", 1 }, + { "chemical-science-pack", 1 }, + { "space-science-pack", 1 }, + { "production-science-pack", 1 }, + { "utility-science-pack", 1 }, + { "metallurgic-science-pack", 1 }, + { "agricultural-science-pack", 1 }, + { "electromagnetic-science-pack", 1 }, + { "cryogenic-science-pack", 1 } + }, + time = 60 + } + }, { type = "technology", name = "experienced-quality-assembling-1", @@ -149,13 +403,13 @@ data:extend({ }, research_trigger = { type = "craft-item", item = "gold-quality-catalyst", count = 10000 }, prerequisites = { "experienced-quality-assembling-1" } - }, - { - type = "recipe-category", - name = "quality-assembling" } }) +Technology:new(name) + :addRecipe(name) + :addRecipe("gold-quality-catalyst") + local function qa(recipeName) local recipe = data.raw.recipe[recipeName] recipe.additional_categories = recipe.additional_categories or {} From 414ccf59a4a0b020b603790ada36f37954edb183 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 18:41:19 +0100 Subject: [PATCH 024/111] Quality assembler has module slots dependant on quality (1-6) --- lignumis/prototypes/content/quality-assembler.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index 938080a..69bdf88 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -121,7 +121,8 @@ data:extend({ selection_box = Entity.selectionBox(4, 4), damaged_trigger_effect = hit_effects.entity(), drawing_box_vertical_extension = 1.3, - module_slots = 6, + module_slots = 1, + quality_affects_module_slots = true, effect_receiver = { base_effect = { quality = 3.5 } }, icon_draw_specification = {shift = {0, -0.25}}, icons_positioning = { From 8974981d07ec320bb2008a23964a73f75165dd89 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 20:23:34 +0100 Subject: [PATCH 025/111] Add golden module --- lignumis/data-final-fixes.lua | 18 ++++++ lignumis/locale/en/strings.cfg | 4 ++ .../prototypes/content/quality-assembler.lua | 55 ++++++++++++++++++- 3 files changed, 76 insertions(+), 1 deletion(-) diff --git a/lignumis/data-final-fixes.lua b/lignumis/data-final-fixes.lua index bbdacb8..452d38d 100644 --- a/lignumis/data-final-fixes.lua +++ b/lignumis/data-final-fixes.lua @@ -4,4 +4,22 @@ require("prototypes/compatibility/final") if not mods["Burner-Leech-Fork"] and not mods["Burner-Leech"] and not mods["InserterFuelLeech"] then data.raw["inserter"]["burner-inserter"].allow_burner_leech = true data.raw["inserter"]["burner-long-handed-inserter"].allow_burner_leech = true +end + +-- disable gold module from everything where it's not manually added +local moduled_building_types = { "beacon", "assembling-machine", "rocket-silo", "furnace", "lab", "mining-drill" } + +for _, moduled_building_type in pairs(moduled_building_types) do + for _,moduled_building in pairs(data.raw[moduled_building_type]) do + if moduled_building then + if not moduled_building.allowed_module_categories then + moduled_building.allowed_module_categories = {} + for _, module_cat in pairs(data.raw["module-category"]) do + if not (module_cat.name == "quality-assembling") then + table.insert(moduled_building.allowed_module_categories, module_cat.name) + end + end + end + end + end end \ No newline at end of file diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index fc44237..f8449a5 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -83,12 +83,14 @@ wood-darts-magazine=Wood darts magazine basic-circuit-board=Basic circuit board crushed-gold-ore=Crushed gold ore steam-science-pack-spoiled=Science flask with water +gold-module-3=Golden module 3 [item-description] wooden-wall=Use wooden walls to protect your base from the locals and to reduce noise levels. stone-wall=Better acoustic and physical protection than the wooden counterpart. gold-stromatolite-seed=Plant the seed to grow gold stromatolites. They house bacteria that enrich gold from the ground.\n__REMARK_COLOR_BEGIN__Expected yield:__REMARK_COLOR_END__ 1.5 [item=gold-ore]/m steam-science-pack-spoiled=Spoiled steam science pack. Put it in a furnace to bring it to the right temperature. +gold-module-3=When you mastered quality assembling, this pristine module is unlocked, enabling you to craft the finest items available. [fluid-name] wood-pulp=Wood pulp @@ -147,6 +149,7 @@ aai-wood-loader=Wood loader basic-ore-crushing=Basic ore crushing astroponics-productivity=Astroponics productivity experienced-quality-assembling=Experienced quality assembling +gold-module=Golden module [technology-description] wood-science-pack=Allows research of basic technologies based on wood products. @@ -167,6 +170,7 @@ tree-seeding=[entity=burner-agricultural-tower] allows planting seeds into seeda active-noise-cancelling=Helps handling noise. quality-assembler=High-end assembler to craft only the finest quality machines using a special resource only found on Lignumis. automation-science-pack=Leave Lignumis to enable advanced technology research. +gold-module=Master quality assembling, to unlock a pristine module, enabling you to craft the finest items available. [modifier-description] basic-gun-turret-attack-bonus=Basic gun turret damage: +__1__ diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index 69bdf88..67fcced 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -50,6 +50,10 @@ data:extend({ type = "recipe-category", name = "quality-assembling" }, + { + type = "module-category", + name = "quality-assembling" + }, { type = "burner-usage", name = "quality-catalyst", @@ -129,6 +133,7 @@ data:extend({ { inventory_index = defines.inventory.assembling_machine_modules, shift = { 0, 1 }, max_icons_per_row = 4 } }, allowed_effects = { "consumption", "pollution", "quality" }, + allowed_module_categories = { "efficiency", "quality", "quality-assembling" }, crafting_categories = { "quality-assembling" }, crafting_speed = 4, energy_source = { @@ -373,6 +378,38 @@ data:extend({ time = 60 } }, + { + type = "module", + name = "gold-module-3", + localised_description = { "item-description.gold-module" }, + icon = Lignumis.graphics .. "icons/gold-module-3.png", + subgroup = "module", + color_hint = { text = "Q" }, + category = "quality-assembling", + tier = 3, + order = "e[gold]-c[gold-module-3]", + inventory_move_sound = item_sounds.module_inventory_move, + pick_sound = item_sounds.module_inventory_pickup, + drop_sound = item_sounds.module_inventory_move, + stack_size = 50, + weight = 20 * kg, + effect = { quality = 0.75, speed = -0.1 } + }, + { + type = "recipe", + name = "gold-module-3", + category = "electromagnetics", + additional_categories = { "quality-assembling" }, + enabled = false, + ingredients = + { + {type = "item", name = "quality-module-3", amount = 4}, + {type = "item", name = "quantum-processor", amount = 5}, + {type = "item", name = "gold-quality-catalyst", amount = 20} + }, + energy_required = 60, + results = {{type="item", name="gold-module-3", amount=1}} + }, { type = "technology", name = "experienced-quality-assembling-1", @@ -386,7 +423,7 @@ data:extend({ effects = { { type = "change-recipe-productivity", recipe = "gold-quality-catalyst", change = 0.25 } }, - research_trigger = { type = "craft-item", item = "gold-quality-catalyst", count = 1000 }, + research_trigger = { type = "craft-item", item = "gold-quality-catalyst", count = 2000 }, prerequisites = { "quality-assembler" } }, { @@ -404,6 +441,22 @@ data:extend({ }, research_trigger = { type = "craft-item", item = "gold-quality-catalyst", count = 10000 }, prerequisites = { "experienced-quality-assembling-1" } + }, + { + type = "technology", + name = "experienced-quality-assembling-3", + icons = { + { icon = "__quality__/graphics/technology/legendary-quality.png", icon_size = 256 }, + { icon = Lignumis.graphics .. "icons/quality-gold-catalyst.png", icon_size = 64, scale = 1, shift = { 50, 50 }, draw_background = true } + }, + level = 3, + max_level = 3, + show_levels_info = true, + effects = { + { type = "unlock-recipe", recipe = "gold-module-3" } + }, + research_trigger = { type = "craft-item", item = "gold-quality-catalyst", count = 40000 }, + prerequisites = { "experienced-quality-assembling-2" } } }) From 709c834ebd43de57f79f385e4b0865c71dfa7816 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 20:33:04 +0100 Subject: [PATCH 026/111] Only move yellow and purple science after space science when progressive technologies are enabled --- lignumis/prototypes/integrations/vanilla.lua | 21 +++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 65f2028..5d79f97 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -283,19 +283,22 @@ table.insert(physical_damage_technology_4.effects, { local weapon_speed_technology_4 = data.raw.technology["weapon-shooting-speed-4"] weapon_speed_technology_4.prerequisites = { "weapon-shooting-speed-3", "military-science-pack" } -local production_science_pack_technology = Technology:new("production-science-pack") -production_science_pack_technology:replacePrerequisite("advanced-material-processing-2", "space-platform-thruster") -production_science_pack_technology:addIngredients({ "space-science-pack" }) if settings.startup["lignumis-technology-progression"].value then + local production_science_pack_technology = Technology:new("production-science-pack") + production_science_pack_technology:replacePrerequisite("advanced-material-processing-2", "space-platform-thruster") + production_science_pack_technology:addIngredients({ "space-science-pack" }) production_science_pack_technology:addIngredients({ "wood-science-pack", "steam-science-pack" }) + + local utility_science_pack_technology = Technology:new("utility-science-pack") + utility_science_pack_technology:setPrerequisites({ "space-platform-thruster" }) + utility_science_pack_technology:addIngredients({ "space-science-pack" }) + utility_science_pack_technology:addIngredients({ "wood-science-pack", "steam-science-pack" }) +else + Technology:new("deep-miner") + :addPrerequisite("production-science-pack") + :addIngredient("production-science-pack") end -local utility_science_pack_technology = Technology:new("utility-science-pack") -utility_science_pack_technology:setPrerequisites({ "space-platform-thruster" }) -utility_science_pack_technology:addIngredients({ "space-science-pack" }) -if settings.startup["lignumis-technology-progression"].value then - utility_science_pack_technology:addIngredients({ "wood-science-pack", "steam-science-pack" }) -end if not mods["planet-muluna"] then -- Muluna does the same Technology:new("logistic-robotics"):addRecipe("requester-chest") From e213ae9f2f0ee895dad0007daad62c264dd232aa Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 21:07:23 +0100 Subject: [PATCH 027/111] Integrate wood logistics code into this mod --- .../prototypes/compatibility/aai-loaders.lua | 2 + .../compatibility/lane-splitters.lua | 1 + .../prototypes/content/wood-logistics.lua | 555 +++++++++++++++--- 3 files changed, 463 insertions(+), 95 deletions(-) diff --git a/lignumis/prototypes/compatibility/aai-loaders.lua b/lignumis/prototypes/compatibility/aai-loaders.lua index da3c063..2874aef 100644 --- a/lignumis/prototypes/compatibility/aai-loaders.lua +++ b/lignumis/prototypes/compatibility/aai-loaders.lua @@ -48,6 +48,8 @@ AAILoaders.make_tier({ data.raw.recipe["aai-wood-loader"].additional_categories = { "wood-processing" } +data.raw["loader-1x1"]["aai-wood-loader"].animation_speed_coefficient = 1.01 * 32 + if not basic_circuit_board then local nauvis_recipe = Recipe:new("aai-wood-loader"):clone("wood-loader-electronic-circuit") nauvis_recipe:replaceIngredient("gold-cable", "electronic-circuit") diff --git a/lignumis/prototypes/compatibility/lane-splitters.lua b/lignumis/prototypes/compatibility/lane-splitters.lua index 075cc68..a627a27 100644 --- a/lignumis/prototypes/compatibility/lane-splitters.lua +++ b/lignumis/prototypes/compatibility/lane-splitters.lua @@ -21,6 +21,7 @@ lane_splitter.prototype.structure_patch.east.filename = data.raw.splitter["wood- lane_splitter.prototype.structure_patch.south.filename = data.raw.splitter["wood-splitter"].structure_patch.south.filename lane_splitter.prototype.structure_patch.west.filename = data.raw.splitter["wood-splitter"].structure_patch.west.filename lane_splitter.prototype.structure_patch.north.filename = data.raw.splitter["wood-splitter"].structure_patch.north.filename +lane_splitter.prototype.animation_speed_coefficient = 1.01 * 32 lane_splitter.item.icon = Lignumis.graphics .. "icons/wood-lane-splitter.png" lane_splitter.item.order = "d[lane-splitter]-0[wood-lane-splitter]" lane_splitter.recipe.additional_categories = { "wood-processing" } diff --git a/lignumis/prototypes/content/wood-logistics.lua b/lignumis/prototypes/content/wood-logistics.lua index 31f3809..4475b8f 100644 --- a/lignumis/prototypes/content/wood-logistics.lua +++ b/lignumis/prototypes/content/wood-logistics.lua @@ -1,108 +1,473 @@ -local BeltFactory = require(MF.logistics .. "Belts") -local Belt = BeltFactory("wood", "brown", "slow") - -local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value +local meld = require("meld") +local hit_effects = require("__base__.prototypes.entity.hit-effects") +local sounds = require("__base__.prototypes.entity.sounds") +local item_sounds = require("__base__.prototypes.item_sounds") +local Recipe = require("__cf-lib__/data/Recipe") if mods["wood-logistics"] and settings.startup["wood-logistics-belts"].value then return end -Belt.EntityBuilder:new() - :itemsPerSecond(7.5) - :nextTier("") - :undergroundDistance(4) - :animationSpeedMultiplier(1.01) - :apply({ - transportBelt = { - emissions_per_second = { noise = 2 / 60 } - }, - undergroundBelt = { - emissions_per_second = { noise = 7.5 / 60 }, - factoriopedia_simulation = { - init = - [[ - game.simulation.camera_position = {0, 0.5} - game.simulation.camera_zoom = 1.8 - game.surfaces[1].create_entities_from_blueprint_string - { - string = "0eNqVUNsKgzAM/Zc81+FEBfsrYwwvQQKaltpuivjvS3Wwh8HGnkKSc0tWaIaA1hF70CtMXNvEm6R31MV+Bl0oWECfNwXUGp5AXwRGPddDBHA9Imh4GNMlgTt0vTNSkwYHD5EjsznSrwqQPXnCQ2JvlhuHsUEnAPVdSoE1k7ANv2KlpyOYVLHpyGF7bHMFfrFRidiGGOLDLPvXLP9tZoLf3eRO8jjK5P1YBXd0004oyqzKq6ooqzLNinLbnvlmf6E=", - position = {-0.5, 0} - } - ]] +local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value +local speed = 7.5 / 480 +local name = "wood" +local transportBeltName = name .. "-transport-belt" +local undergroundBeltName = name .. "-underground-belt" +local splitterName = name .. "-splitter" +local gfx = Lignumis.graphics .. "entity/wood-logistics/" + +local function createAnimation() + return meld({ + animation_set = { + filename = gfx .. "wood-transport-belt.png", + priority = "extra-high", + size = 128, + scale = 0.5, + frame_count = 16, + direction_count = 20 + } + }, belt_reader_gfx) +end + +data:extend({ + { + type = "transport-belt", + name = transportBeltName, + icon = Lignumis.graphics .. "icons/wood-transport-belt.png", + flags = { "placeable-neutral", "player-creation" }, + minable = { mining_time = 0.1, result = transportBeltName }, + max_health = 150, + next_upgrade = "transport-belt", + corpse = transportBeltName .. "-remnants", + dying_explosion = "transport-belt-explosion", + resistances = { + { + type = "fire", + percent = 90 } }, - splitter = { - emissions_per_second = { noise = 20 / 60 } - } - }) - -local splitter_item = Belt.ItemBuilder:new() - :itemsPerRocket("transportBelt", 200) - :itemsPerRocket("undergroundBelt", 100) - :itemsPerRocket("splitter", 100) - :order("0") - :apply() - .splitter - -Belt.RecipeBuilder:new() - :beltAmount(2) - :ingredients("transportBelt", { - { type = "item", name = "lumber", amount = 1 }, - { type = "item", name = "wooden-gear-wheel", amount = 1 } - }) - :ingredients("undergroundBelt", { - { type = "item", name = "lumber", amount = 1 }, - { type = "item", name = "wood-transport-belt", amount = 4 }, - }) - :ingredients("splitter", { - { type = "item", name = "wood-transport-belt", amount = 2 }, - { type = "item", name = "lumber", amount = 2 }, - basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 5 } or - { type = "item", name = "gold-cable", amount = 10 } - }) - :apply({ - transportBelt = { - additional_categories = { "wood-processing" } + emissions_per_second = { noise = 2 / 60 }, + collision_box = { { -0.4, -0.4 }, { 0.4, 0.4 } }, + selection_box = { { -0.5, -0.5 }, { 0.5, 0.5 } }, + damaged_trigger_effect = hit_effects.entity(), + open_sound = sounds.transport_belt_open, + close_sound = sounds.transport_belt_close, + working_sound = { + sound = { filename = "__base__/sound/transport-belt.ogg", volume = 0.17 }, + persistent = true }, - undergroundBelt = { - additional_categories = { "wood-processing" } + animation_speed_coefficient = 1.01 * 32, + fast_replaceable_group = "transport-belt", + related_underground_belt = undergroundBeltName, + speed = speed, + belt_animation_set = createAnimation(), + connector_frame_sprites = transport_belt_connector_frame_sprites, + circuit_connector = circuit_connector_definitions["belt"], + circuit_wire_max_distance = transport_belt_circuit_wire_max_distance + }, + { + type = "corpse", + name = transportBeltName .. "-remnants", + icon = Lignumis.graphics .. "icons/wood-transport-belt.png", + hidden_in_factoriopedia = true, + flags = { "placeable-neutral", "not-on-map" }, + subgroup = "belt-remnants", + order = "a-a-a", + selection_box = { { -0.5, -0.5 }, { 0.5, 0.5 } }, + tile_width = 1, + tile_height = 1, + selectable_in_game = false, + time_before_removed = 60 * 60 * 15, -- 15 minutes + expires = false, + final_render_layer = "remnants", + animation = make_rotated_animation_variations_from_sheet(2, { + filename = gfx .. "wood-transport-belt-remnants.png", + line_length = 1, + width = 106, + height = 102, + direction_count = 4, + shift = util.by_pixel(1, -0.5), + scale = 0.5 + }) + }, + { + type = "underground-belt", + name = undergroundBeltName, + icon = Lignumis.graphics .. "icons/wood-underground-belt.png", + flags = { "placeable-neutral", "player-creation" }, + minable = { mining_time = 0.1, result = undergroundBeltName }, + max_health = 150, + next_upgrade = "underground-belt", + corpse = undergroundBeltName .. "-remnants", + dying_explosion = "underground-belt-explosion", + factoriopedia_simulation = { + init = + [[ + game.simulation.camera_position = {0, 0.5} + game.simulation.camera_zoom = 1.8 + game.surfaces[1].create_entities_from_blueprint_string + { + string = "0eNqVUNsKgzAM/Zc81+FEBfsrYwwvQQKaltpuivjvS3Wwh8HGnkKSc0tWaIaA1hF70CtMXNvEm6R31MV+Bl0oWECfNwXUGp5AXwRGPddDBHA9Imh4GNMlgTt0vTNSkwYHD5EjsznSrwqQPXnCQ2JvlhuHsUEnAPVdSoE1k7ANv2KlpyOYVLHpyGF7bHMFfrFRidiGGOLDLPvXLP9tZoLf3eRO8jjK5P1YBXd0004oyqzKq6ooqzLNinLbnvlmf6E=", + position = {-0.5, 0} + } + ]] }, - splitter = { - additional_categories = { "wood-processing" } + max_distance = 4, + open_sound = sounds.machine_open, + close_sound = sounds.machine_close, + working_sound = table.deepcopy(data.raw["underground-belt"]["underground-belt"].working_sound), + underground_sprite = table.deepcopy(data.raw["underground-belt"]["underground-belt"].underground_sprite), + resistances = { + { + type = "fire", + percent = 60 + }, + { + type = "impact", + percent = 30 + } + }, + emissions_per_second = { noise = 7.5 / 60 }, + collision_box = { { -0.4, -0.4 }, { 0.4, 0.4 } }, + selection_box = { { -0.5, -0.5 }, { 0.5, 0.5 } }, + damaged_trigger_effect = hit_effects.entity(), + animation_speed_coefficient = 1.01 * 32, + fast_replaceable_group = "transport-belt", + speed = speed, + structure = { + direction_in = { + sheet = { + filename = gfx .. "wood-underground-belt-structure.png", + priority = "extra-high", + width = 192, + height = 192, + y = 192, + scale = 0.5 + } + }, + direction_out = { + sheet = { + filename = gfx .. "wood-underground-belt-structure.png", + priority = "extra-high", + width = 192, + height = 192, + scale = 0.5 + } + }, + direction_in_side_loading = { + sheet = { + filename = gfx .. "wood-underground-belt-structure.png", + priority = "extra-high", + width = 192, + height = 192, + y = 192 * 3, + scale = 0.5 + } + }, + direction_out_side_loading = { + sheet = { + filename = gfx .. "wood-underground-belt-structure.png", + priority = "extra-high", + width = 192, + height = 192, + y = 192 * 2, + scale = 0.5 + } + }, + back_patch = { + sheet = { + filename = + "__base__/graphics/entity/underground-belt/underground-belt-structure-back-patch.png", + priority = "extra-high", + width = 192, + height = 192, + scale = 0.5 + } + }, + front_patch = { + sheet = { + filename = + "__base__/graphics/entity/underground-belt/underground-belt-structure-front-patch.png", + priority = "extra-high", + width = 192, + height = 192, + scale = 0.5 + } + } + }, + belt_animation_set = createAnimation() + }, + { + type = "corpse", + name = undergroundBeltName .. "-remnants", + icon = Lignumis.graphics .. "icons/wood-underground-belt.png", + hidden_in_factoriopedia = true, + flags = { "placeable-neutral", "not-on-map", "building-direction-8-way" }, + subgroup = "belt-remnants", + order = "a-d-a", + selection_box = { { -0.5, -0.5 }, { 0.5, 0.5 } }, + tile_width = 1, + tile_height = 1, + selectable_in_game = false, + time_before_removed = 60 * 60 * 15, -- 15 minutes + expires = false, + final_render_layer = "remnants", + remove_on_tile_placement = false, + animation = { + filename = gfx .. "wood-underground-belt-remnants.png", + line_length = 1, + width = 156, + height = 144, + direction_count = 8, + shift = util.by_pixel(10.5, 3), + scale = 0.5 } - }) - -Belt.TechnologyBuilder:new() - :prerequisites({ "wood-science-pack" }) - :ingredients({ { "wood-science-pack", 1 } }) - :count(10) - :time(10) - :apply() + }, + { + type = "splitter", + name = splitterName, + icon = Lignumis.graphics .. "icons/wood-splitter.png", + flags = { "placeable-neutral", "player-creation" }, + minable = { mining_time = 0.1, result = splitterName }, + max_health = 170, + next_upgrade = "splitter", + corpse = splitterName .. "-remnants", + dying_explosion = "splitter-explosion", + resistances = { + { + type = "fire", + percent = 60 + } + }, + emissions_per_second = { noise = 20 / 60 }, + collision_box = { { -0.9, -0.4 }, { 0.9, 0.4 } }, + selection_box = { { -0.9, -0.5 }, { 0.9, 0.5 } }, + damaged_trigger_effect = hit_effects.entity(), + animation_speed_coefficient = 1.01 * 32, + structure_animation_speed_coefficient = 0.7, + structure_animation_movement_cooldown = 10, + icon_draw_specification = { scale = 0.5 }, + fast_replaceable_group = "transport-belt", + speed = speed, + open_sound = sounds.machine_open, + close_sound = sounds.machine_close, + working_sound = sounds.splitter, + related_transport_belt = transportBeltName, + structure = { + north = { + filename = gfx .. "wood-splitter-north.png", + frame_count = 32, + line_length = 8, + priority = "extra-high", + width = 160, + height = 70, + shift = util.by_pixel(7, 0), + scale = 0.5 + }, + east = { + filename = gfx .. "wood-splitter-east.png", + frame_count = 32, + line_length = 8, + priority = "extra-high", + width = 90, + height = 84, + shift = util.by_pixel(4, 13), + scale = 0.5 + }, + south = { + filename = gfx .. "wood-splitter-south.png", + frame_count = 32, + line_length = 8, + priority = "extra-high", + width = 164, + height = 64, + shift = util.by_pixel(4, 0), + scale = 0.5 + }, + west = { + filename = gfx .. "wood-splitter-west.png", + frame_count = 32, + line_length = 8, + priority = "extra-high", + width = 90, + height = 86, + shift = util.by_pixel(6, 12), + scale = 0.5 + } + }, + structure_patch = { + north = util.empty_sprite(), + east = { + filename = gfx .. "wood-splitter-east-top_patch.png", + frame_count = 32, + line_length = 8, + priority = "extra-high", + width = 90, + height = 104, + shift = util.by_pixel(4, -20), + scale = 0.5 + }, + south = util.empty_sprite(), + west = { + filename = gfx .. "wood-splitter-west-top_patch.png", + frame_count = 32, + line_length = 8, + priority = "extra-high", + width = 90, + height = 96, + shift = util.by_pixel(6, -18), + scale = 0.5 + } + }, + belt_animation_set = createAnimation() + }, + { + type = "corpse", + name = splitterName .. "-remnants", + icon = Lignumis.graphics .. "icons/wood-splitter.png", + hidden_in_factoriopedia = true, + flags = { "placeable-neutral", "not-on-map" }, + subgroup = "belt-remnants", + order = "a-g-a", + selection_box = { { -0.9, -0.5 }, { 0.9, 0.5 } }, + tile_width = 2, + tile_height = 1, + selectable_in_game = false, + time_before_removed = 60 * 60 * 15, -- 15 minutes + expires = false, + final_render_layer = "remnants", + remove_on_tile_placement = false, + animation = { + filename = gfx .. "wood-splitter-remnants.png", + line_length = 1, + width = 190, + height = 190, + direction_count = 4, + shift = util.by_pixel(3.5, 1.5), + scale = 0.5 + } + }, + { + type = "item", + name = transportBeltName, + icon = Lignumis.graphics .. "icons/wood-transport-belt.png", + subgroup = "belt", + color_hint = { text = "1" }, + order = "a[transport-belt]-0[" .. transportBeltName .. "]", + inventory_move_sound = item_sounds.transport_belt_inventory_move, + pick_sound = item_sounds.transport_belt_inventory_pickup, + drop_sound = item_sounds.transport_belt_inventory_move, + place_result = transportBeltName, + stack_size = 100, + weight = 5 * kg + }, + { + type = "item", + name = undergroundBeltName, + icon = Lignumis.graphics .. "icons/wood-underground-belt.png", + subgroup = "belt", + color_hint = { text = "1" }, + order = "b[underground-belt]-0[" .. undergroundBeltName .. "]", + inventory_move_sound = item_sounds.mechanical_inventory_move, + pick_sound = item_sounds.mechanical_inventory_pickup, + drop_sound = item_sounds.mechanical_inventory_move, + place_result = undergroundBeltName, + stack_size = 50, + weight = 10 * kg + }, + { + type = "item", + name = splitterName, + icon = Lignumis.graphics .. "icons/wood-splitter.png", + subgroup = "belt", + color_hint = { text = "1" }, + order = "c[splitter]-0[" .. splitterName .. "]", + inventory_move_sound = item_sounds.mechanical_inventory_move, + pick_sound = item_sounds.mechanical_inventory_pickup, + drop_sound = item_sounds.mechanical_inventory_move, + place_result = splitterName, + stack_size = 50, + weight = 10 * kg + }, + { + type = "recipe", + name = transportBeltName, + enabled = false, + energy_required = 0.5, + results = { { type = "item", name = transportBeltName, amount = 2 } }, + ingredients = { + { type = "item", name = "lumber", amount = 1 }, + { type = "item", name = "wooden-gear-wheel", amount = 1 } + } + }, + { + type = "recipe", + name = undergroundBeltName, + category = "crafting", + additional_categories = { "wood-processing" }, + enabled = false, + energy_required = 1, + ingredients = { + { type = "item", name = "lumber", amount = 1 }, + { type = "item", name = "wood-transport-belt", amount = 4 }, + }, + results = { { type = "item", name = undergroundBeltName, amount = 2 } } + }, + { + type = "recipe", + name = splitterName, + category = "crafting", + additional_categories = { "wood-processing" }, + enabled = false, + energy_required = 1, + ingredients = { + { type = "item", name = "wood-transport-belt", amount = 2 }, + { type = "item", name = "lumber", amount = 2 }, + basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 5 } or + { type = "item", name = "gold-cable", amount = 10 } + }, + results = { { type = "item", name = splitterName, amount = 1 } } + }, + { + type = "technology", + name = name .. "-logistics", + category = "crafting", + additional_categories = { "wood-processing" }, + icon = Lignumis.graphics .. "technology/wood-logistics.png", + icon_size = 256, + effects = { + { + type = "unlock-recipe", + recipe = "wood-transport-belt" + }, + { + type = "unlock-recipe", + recipe = "wood-underground-belt" + }, + { + type = "unlock-recipe", + recipe = "wood-splitter" + } + }, + prerequisites = { "wood-science-pack" }, + unit = { + count = 10, + ingredients = { { "wood-science-pack", 1 } }, + time = 10 + } + } +}) if not basic_circuit_board then - data:extend({ - Belt.RecipeBuilder:new() - :ingredients("splitter", { - { type = "item", name = "wood-transport-belt", amount = 2 }, - { type = "item", name = "lumber", amount = 2 }, - { type = "item", name = "electronic-circuit", amount = 2 } - }) - :build({ - splitter = { - name = "wood-splitter-electronic-circuit", - localised_name = { "entity-name.wood-splitter" }, - icons = { - { icon = splitter_item.icon }, - { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } - }, - additional_categories = { "wood-processing" } - } - }) - .splitter - }) - - table.insert(data.raw.technology["electronics"].effects, { - type = "unlock-recipe", - recipe = "wood-splitter-electronic-circuit" - }) + Recipe:new("wood-splitter"):clone("wood-splitter-electronic-circuit") + :replaceIngredient("gold-cable", "electronic-circuit", 2) + :assign({ + localised_name = { "entity-name.wood-splitter" }, + icons = { + { icon = gfx .. "wood-splitter-icon.png" }, + { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } + } + }) + :unlockedByTechnology("electronics") + :apply() end \ No newline at end of file From acbf072771f6edaba27a79feb8d1aa1a43b64263 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 21:12:38 +0100 Subject: [PATCH 028/111] Remove Mod Framework --- lignumis/info.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lignumis/info.json b/lignumis/info.json index c35c5f6..998fce9 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -16,9 +16,6 @@ "flib", "gleba-water-cane", "lignumis-assets >= 1.0.3", - "mf-buildings >= 1.0.7", - "mf-core >= 1.0.3", - "mf-logistics >= 1.0.1", "PlanetsLib >= 1.14.7", "pollution-as-surface-property", "Wood-Walls >= 1.2.0", @@ -46,6 +43,11 @@ "! early-agriculture", "! planet-picker", "! wood-universe-modpack", - "! rso-mod" + "! rso-mod", + "! mf-core", + "! mf-buildings", + "! mf-buildings-graphics-1", + "! mf-logistics", + "! mf-logistics-graphics-1" ] } \ No newline at end of file From 2cd984c35e37bf5da2357f8ffb2a60614df28acd Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 21:42:38 +0100 Subject: [PATCH 029/111] 1.1.0 --- lignumis/changelog.txt | 13 +++++++++++++ lignumis/info.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 0d49baa..b67e036 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,17 @@ --------------------------------------------------------------------------------------------------- +Version: 1.1.0 +Date: 16.12.2025 + Breaking Changes: + - Integrate quality assembler with new graphics into this mod (changes from 5x5 to 4x4) + - Quality assembler has module slots dependant on quality (1-6) + Changes: + - Add golden module unlocked by "Experienced quality assembling 3" + - Only move yellow and purple science after space science when progressive technologies are enabled + - Integrate wood logistics code into this mod + - Remove Mod Framework (uninstall the mods please) + Bug Fixes: + - Any planet start: Change description of Lignumis to name the selected parent planet +--------------------------------------------------------------------------------------------------- Version: 1.0.78 Date: 16.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 998fce9..6a84a7a 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.78", + "version": "1.1.0", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis planet mod effects other planets and space ships. Make sure to read the description on the mod portal and check the mod settings.", "author": "cackling fiend", From 2891288a91954a941b5b00ba3ca6f9f41bdad4e6 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 11 Nov 2025 23:58:49 +0100 Subject: [PATCH 030/111] Split mod into mainstream and directors cut --- lignumis-cf/info.json | 19 + lignumis-cf/license.txt | 674 ++++++++++++++++++ lignumis-cf/locale/de/strings.cfg | 5 + lignumis-cf/locale/en/strings.cfg | 5 + lignumis-cf/locale/es-ES/strings.cfg | 5 + lignumis-cf/locale/pl/strings.cfg | 5 + lignumis-cf/locale/ru/strings.cfg | 5 + lignumis-cf/locale/zh-CN/strings.cfg | 5 + lignumis-cf/settings.lua | 31 + lignumis-cf/thumbnail.png | Bin 0 -> 42353 bytes lignumis/info.json | 12 +- lignumis/locale/en/strings.cfg | 4 +- lignumis/locale/es-ES/strings.cfg | 2 +- lignumis/locale/pl/strings.cfg | 2 +- lignumis/locale/ru/strings.cfg | 2 +- lignumis/locale/zh-CN/strings.cfg | 2 +- .../integrations/astroponics-updates.lua | 2 + .../prototypes/integrations/astroponics.lua | 2 + lignumis/settings.lua | 26 +- 19 files changed, 783 insertions(+), 25 deletions(-) create mode 100644 lignumis-cf/info.json create mode 100644 lignumis-cf/license.txt create mode 100644 lignumis-cf/locale/de/strings.cfg create mode 100644 lignumis-cf/locale/en/strings.cfg create mode 100644 lignumis-cf/locale/es-ES/strings.cfg create mode 100644 lignumis-cf/locale/pl/strings.cfg create mode 100644 lignumis-cf/locale/ru/strings.cfg create mode 100644 lignumis-cf/locale/zh-CN/strings.cfg create mode 100644 lignumis-cf/settings.lua create mode 100644 lignumis-cf/thumbnail.png diff --git a/lignumis-cf/info.json b/lignumis-cf/info.json new file mode 100644 index 0000000..aa40a5b --- /dev/null +++ b/lignumis-cf/info.json @@ -0,0 +1,19 @@ +{ + "name": "lignumis-cf", + "version": "1.2.0", + "title": "Lignumis - Directors Cut", + "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version.", + "author": "cackling fiend", + "homepage": "https://discord.gg/ufvFUJtVwk", + "factorio_version": "2.0", + "space_travel_required": true, + "dependencies": [ + "lignumis", + "aquilo-seabloom-algaculture", + "astroponics >= 1.2.0", + "Diversitree", + "fulgora-coralmium-agriculture", + "gleba-water-cane", + "vulcanus-sulfuric-bacteria" + ] +} \ No newline at end of file diff --git a/lignumis-cf/license.txt b/lignumis-cf/license.txt new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/lignumis-cf/license.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/lignumis-cf/locale/de/strings.cfg b/lignumis-cf/locale/de/strings.cfg new file mode 100644 index 0000000..0e597a9 --- /dev/null +++ b/lignumis-cf/locale/de/strings.cfg @@ -0,0 +1,5 @@ +[mod-name] +lignumis=○ Lignumis - Director's Cut + +[mod-description] +lignumis=Tauche ein in die Welt von Lignumis, einem Mond von Nauvis, der nur die grundlegendsten Technologien bietet.\n\n\Dies ist die Version, die die ursprüngliche Idee des Autors repräsentiert. Für eine eher isolierte Planet-Mod-Erfahrung, installiere die reguläre Version. \ No newline at end of file diff --git a/lignumis-cf/locale/en/strings.cfg b/lignumis-cf/locale/en/strings.cfg new file mode 100644 index 0000000..a3226a6 --- /dev/null +++ b/lignumis-cf/locale/en/strings.cfg @@ -0,0 +1,5 @@ +[mod-name] +lignumis=○ Lignumis - Director's Cut + +[mod-description] +lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies. \ No newline at end of file diff --git a/lignumis-cf/locale/es-ES/strings.cfg b/lignumis-cf/locale/es-ES/strings.cfg new file mode 100644 index 0000000..c4440f0 --- /dev/null +++ b/lignumis-cf/locale/es-ES/strings.cfg @@ -0,0 +1,5 @@ +[mod-name] +lignumis=○ Lignumis - Director's Cut + +[mod-description] +lignumis=Sumérgete en el mundo de Lignumis, una luna de Nauvis que ofrece solo las tecnologías más básicas. \ No newline at end of file diff --git a/lignumis-cf/locale/pl/strings.cfg b/lignumis-cf/locale/pl/strings.cfg new file mode 100644 index 0000000..a3226a6 --- /dev/null +++ b/lignumis-cf/locale/pl/strings.cfg @@ -0,0 +1,5 @@ +[mod-name] +lignumis=○ Lignumis - Director's Cut + +[mod-description] +lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies. \ No newline at end of file diff --git a/lignumis-cf/locale/ru/strings.cfg b/lignumis-cf/locale/ru/strings.cfg new file mode 100644 index 0000000..e8cfb99 --- /dev/null +++ b/lignumis-cf/locale/ru/strings.cfg @@ -0,0 +1,5 @@ +[mod-name] +lignumis=○ Лигнумис - Director's Cut + +[mod-description] +lignumis=Погрузитесь в мир Лигнумиса — луны Наувиса, предлагающей лишь самые базовые технологии. \ No newline at end of file diff --git a/lignumis-cf/locale/zh-CN/strings.cfg b/lignumis-cf/locale/zh-CN/strings.cfg new file mode 100644 index 0000000..c606bab --- /dev/null +++ b/lignumis-cf/locale/zh-CN/strings.cfg @@ -0,0 +1,5 @@ +[mod-name] +lignumis=○ 愈创星 - Lignumis - Director's Cut + +[mod-description] +lignumis=潜入木木世界的世界,木星的月亮只提供最基本的技术 \ No newline at end of file diff --git a/lignumis-cf/settings.lua b/lignumis-cf/settings.lua new file mode 100644 index 0000000..2e299f7 --- /dev/null +++ b/lignumis-cf/settings.lua @@ -0,0 +1,31 @@ +local Settings = require("__cf-lib__/settings/Settings") +local force = Settings.force +local forceDefault = Settings.forceDefault + +-- Lignumis +force("lignumis-restrict-sciences", true) +force("lignumis-basic-circuit-board", true) +force("lignumis-belt-progression", true) +force("lignumis-ammo-progression", true) +force("lignumis-technology-progression", true) +force("lignumis-circuit-progression", true) +force("lignumis-fulgora-wood", false) +force("lignumis-vanilla-lab", false) +force("lignumis-lumber-mill-more-recipes", true) +force("lignumis-electric-lumber-mill", false) + +if not mods["aai-industry"] then + force("lignumis-inserter-progression", true) + force("lignumis-assembler-progression", true) +end + +if not mods["wood-military"] then + force("lignumis-ammo-progression", true) +end + +-- Wood Walls +forceDefault("wood-walls-fuelvalue") +forceDefault("wood-walls-wall-cost") +forceDefault("wood-walls-wall-output") +forceDefault("wood-walls-hp") +forceDefault("wood-walls-disable-wall") \ No newline at end of file diff --git a/lignumis-cf/thumbnail.png b/lignumis-cf/thumbnail.png new file mode 100644 index 0000000000000000000000000000000000000000..497345415e405b81835db5123699e9a97ba3459b GIT binary patch literal 42353 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 2.0.53", - "astroponics >= 1.2.0", "bioprocessing-tab", "cf-lib >= 1.1.0", "flib", - "gleba-water-cane", "lignumis-assets >= 1.0.3", "PlanetsLib >= 1.14.7", "pollution-as-surface-property", "Wood-Walls >= 1.2.0", - "vulcanus-sulfuric-bacteria", "? aai-industry", "? aai-loaders", "? aai-loaders-sane", "? any-planet-start", + "? astroponics >= 1.2.0", + "? canal-excavator >= 1.9.0", "? crushing-industry", "? fulgora-coralmium-agriculture", + "? gleba-water-cane", "? hot-metals >= 1.1.0", "? lane-splitters", + "? vulcanus-sulfuric-bacteria", "? wood-industry", "? wood-military >= 2.3.3", - "? canal-excavator >= 1.9.0", "? wood-logistics", "(?) atan-nuclear-science", "(?) Diversitree", diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index f8449a5..bc07c1c 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -1,8 +1,8 @@ [mod-name] -lignumis=○ Lignumis +lignumis=○ Lignumis [mod-description] -lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies. +lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version. [space-location-name] lignumis=Lignumis diff --git a/lignumis/locale/es-ES/strings.cfg b/lignumis/locale/es-ES/strings.cfg index cfc01ba..2088df1 100644 --- a/lignumis/locale/es-ES/strings.cfg +++ b/lignumis/locale/es-ES/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis +lignumis=○ Lignumis [mod-description] lignumis=Sumérgete en el mundo de Lignumis, una luna de Nauvis que ofrece solo las tecnologías más básicas. diff --git a/lignumis/locale/pl/strings.cfg b/lignumis/locale/pl/strings.cfg index 21410af..fbf090f 100644 --- a/lignumis/locale/pl/strings.cfg +++ b/lignumis/locale/pl/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis +lignumis=○ Lignumis [mod-description] lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies. diff --git a/lignumis/locale/ru/strings.cfg b/lignumis/locale/ru/strings.cfg index 8b6a72b..d578d8b 100644 --- a/lignumis/locale/ru/strings.cfg +++ b/lignumis/locale/ru/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Лигнумис +lignumis=○ Лигнумис [mod-description] lignumis=Погрузитесь в мир Лигнумиса — луны Наувиса, предлагающей лишь самые базовые технологии. diff --git a/lignumis/locale/zh-CN/strings.cfg b/lignumis/locale/zh-CN/strings.cfg index 999dfab..8f9652d 100644 --- a/lignumis/locale/zh-CN/strings.cfg +++ b/lignumis/locale/zh-CN/strings.cfg @@ -2,7 +2,7 @@ surface-condition-too-low=__1__不符合. surface-condition-too-high=__1__不符合. [mod-name] -lignumis=○ 愈创星 - Lignumis +lignumis=○ 愈创星 - Lignumis [mod-description] lignumis=潜入木木世界的世界,木星的月亮只提供最基本的技术 diff --git a/lignumis/prototypes/integrations/astroponics-updates.lua b/lignumis/prototypes/integrations/astroponics-updates.lua index c0ef83f..437bdf1 100644 --- a/lignumis/prototypes/integrations/astroponics-updates.lua +++ b/lignumis/prototypes/integrations/astroponics-updates.lua @@ -1,3 +1,5 @@ +if not mods["astroponics"] then return end + local Technology = require("__cf-lib__/data/Technology") -- This just undoes what astroponics changes to tree seeding diff --git a/lignumis/prototypes/integrations/astroponics.lua b/lignumis/prototypes/integrations/astroponics.lua index 491069f..bee736e 100644 --- a/lignumis/prototypes/integrations/astroponics.lua +++ b/lignumis/prototypes/integrations/astroponics.lua @@ -1,3 +1,5 @@ +if not mods["astroponics"] then return end + local infinite = settings.startup["lignumis-infinite-astroponics-productivity-research"].value local base_levels = { diff --git a/lignumis/settings.lua b/lignumis/settings.lua index f043c65..57bd015 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -1,9 +1,12 @@ +local Settings = require("__cf-lib__/settings/Settings") +local force = Settings.force + data:extend({ { type = "bool-setting", name = "lignumis-restrict-sciences", setting_type = "startup", - default_value = false, + default_value = true, order = "a" }, { @@ -17,35 +20,35 @@ data:extend({ type = "bool-setting", name = "lignumis-belt-progression", setting_type = "startup", - default_value = true, + default_value = false, order = "c" }, { type = "bool-setting", name = "lignumis-inserter-progression", setting_type = "startup", - default_value = true, + default_value = false, order = "d" }, { type = "bool-setting", name = "lignumis-ammo-progression", setting_type = "startup", - default_value = true, + default_value = false, order = "e" }, { type = "bool-setting", name = "lignumis-technology-progression", setting_type = "startup", - default_value = true, + default_value = false, order = "f" }, { type = "bool-setting", name = "lignumis-circuit-progression", setting_type = "startup", - default_value = false, + default_value = true, order = "g" }, { @@ -66,7 +69,7 @@ data:extend({ type = "bool-setting", name = "lignumis-vanilla-lab", setting_type = "startup", - default_value = false, + default_value = true, order = "j" }, { @@ -122,13 +125,10 @@ data:extend({ }) if mods["aai-industry"] then - data.raw["bool-setting"]["lignumis-inserter-progression"].forced_value = false - data.raw["bool-setting"]["lignumis-inserter-progression"].hidden = true - data.raw["bool-setting"]["lignumis-assembler-progression"].forced_value = false - data.raw["bool-setting"]["lignumis-assembler-progression"].hidden = true + force("lignumis-inserter-progression", false) + force("lignumis-assembler-progression", false) end if mods["wood-military"] then - data.raw["bool-setting"]["lignumis-ammo-progression"].forced_value = false - data.raw["bool-setting"]["lignumis-ammo-progression"].hidden = true + force("lignumis-ammo-progression", false) end From 0ed5d1144dabfc249d05011af5bce5a55da50e40 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 22:46:17 +0100 Subject: [PATCH 031/111] Move quality assembler to the end of the subgroup --- lignumis/prototypes/content/quality-assembler.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index 67fcced..dc111c7 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -327,7 +327,7 @@ data:extend({ name = name, icon = Lignumis.graphics .. "icons/quality-assembler.png", subgroup = "production-machine", - order = "a[" .. name .. "]", + order = "za[" .. name .. "]", inventory_move_sound = item_sounds.mechanical_large_inventory_move, pick_sound = item_sounds.mechanical_large_inventory_pickup, drop_sound = item_sounds.mechanical_large_inventory_move, From 6c7fb716081b0a9b55e750e4c9dd73a96191ef78 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 23:03:08 +0100 Subject: [PATCH 032/111] Fix mod names/descriptions --- lignumis-cf/locale/de/strings.cfg | 4 ++-- lignumis-cf/locale/en/strings.cfg | 4 ++-- lignumis-cf/locale/es-ES/strings.cfg | 4 ++-- lignumis-cf/locale/pl/strings.cfg | 4 ++-- lignumis-cf/locale/ru/strings.cfg | 4 ++-- lignumis-cf/locale/zh-CN/strings.cfg | 4 ++-- lignumis/locale/de/strings.cfg | 2 +- lignumis/locale/en/strings.cfg | 2 +- lignumis/locale/es-ES/strings.cfg | 2 +- lignumis/locale/pl/strings.cfg | 2 +- lignumis/locale/ru/strings.cfg | 2 +- lignumis/locale/zh-CN/strings.cfg | 2 +- 12 files changed, 18 insertions(+), 18 deletions(-) diff --git a/lignumis-cf/locale/de/strings.cfg b/lignumis-cf/locale/de/strings.cfg index 0e597a9..cd5d62c 100644 --- a/lignumis-cf/locale/de/strings.cfg +++ b/lignumis-cf/locale/de/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis - Director's Cut +lignumis-cf=○🌐Lignumis - Director's Cut [mod-description] -lignumis=Tauche ein in die Welt von Lignumis, einem Mond von Nauvis, der nur die grundlegendsten Technologien bietet.\n\n\Dies ist die Version, die die ursprüngliche Idee des Autors repräsentiert. Für eine eher isolierte Planet-Mod-Erfahrung, installiere die reguläre Version. \ No newline at end of file +lignumis-cf=Tauche ein in die Welt von Lignumis, einem Mond von Nauvis, der nur die grundlegendsten Technologien bietet.\n\n\Dies ist die Version, die die ursprüngliche Idee des Autors repräsentiert. Für eine eher isolierte Planet-Mod-Erfahrung, installiere die reguläre Version. \ No newline at end of file diff --git a/lignumis-cf/locale/en/strings.cfg b/lignumis-cf/locale/en/strings.cfg index a3226a6..4e2e34f 100644 --- a/lignumis-cf/locale/en/strings.cfg +++ b/lignumis-cf/locale/en/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis - Director's Cut +lignumis-cf=○🌐Lignumis - Director's Cut [mod-description] -lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies. \ No newline at end of file +lignumis-cf=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version. \ No newline at end of file diff --git a/lignumis-cf/locale/es-ES/strings.cfg b/lignumis-cf/locale/es-ES/strings.cfg index c4440f0..390ebc4 100644 --- a/lignumis-cf/locale/es-ES/strings.cfg +++ b/lignumis-cf/locale/es-ES/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis - Director's Cut +lignumis-cf=○🌐Lignumis - Director's Cut [mod-description] -lignumis=Sumérgete en el mundo de Lignumis, una luna de Nauvis que ofrece solo las tecnologías más básicas. \ No newline at end of file +lignumis-cf=Sumérgete en el mundo de Lignumis, una luna de Nauvis que ofrece solo las tecnologías más básicas. \ No newline at end of file diff --git a/lignumis-cf/locale/pl/strings.cfg b/lignumis-cf/locale/pl/strings.cfg index a3226a6..7d1760f 100644 --- a/lignumis-cf/locale/pl/strings.cfg +++ b/lignumis-cf/locale/pl/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis - Director's Cut +lignumis-cf=○🌐Lignumis - Director's Cut [mod-description] -lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies. \ No newline at end of file +lignumis-cf=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies. \ No newline at end of file diff --git a/lignumis-cf/locale/ru/strings.cfg b/lignumis-cf/locale/ru/strings.cfg index e8cfb99..0588804 100644 --- a/lignumis-cf/locale/ru/strings.cfg +++ b/lignumis-cf/locale/ru/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Лигнумис - Director's Cut +lignumis-cf=○🌐Лигнумис - Director's Cut [mod-description] -lignumis=Погрузитесь в мир Лигнумиса — луны Наувиса, предлагающей лишь самые базовые технологии. \ No newline at end of file +lignumis-cf=Погрузитесь в мир Лигнумиса — луны Наувиса, предлагающей лишь самые базовые технологии. \ No newline at end of file diff --git a/lignumis-cf/locale/zh-CN/strings.cfg b/lignumis-cf/locale/zh-CN/strings.cfg index c606bab..f7ebb5f 100644 --- a/lignumis-cf/locale/zh-CN/strings.cfg +++ b/lignumis-cf/locale/zh-CN/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ 愈创星 - Lignumis - Director's Cut +lignumis-cf=○🌐愈创星 - Lignumis - Director's Cut [mod-description] -lignumis=潜入木木世界的世界,木星的月亮只提供最基本的技术 \ No newline at end of file +lignumis-cf=潜入木木世界的世界,木星的月亮只提供最基本的技术 \ No newline at end of file diff --git a/lignumis/locale/de/strings.cfg b/lignumis/locale/de/strings.cfg index f87857e..6151416 100644 --- a/lignumis/locale/de/strings.cfg +++ b/lignumis/locale/de/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis +lignumis=○🌐Lignumis [mod-description] lignumis=Tauche ein in die Welt von Lignumis, einem Mond von Nauvis, der nur die grundlegendsten Technologien bietet. diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index bc07c1c..e63f760 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis +lignumis=○🌐Lignumis [mod-description] lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version. diff --git a/lignumis/locale/es-ES/strings.cfg b/lignumis/locale/es-ES/strings.cfg index 2088df1..6675a87 100644 --- a/lignumis/locale/es-ES/strings.cfg +++ b/lignumis/locale/es-ES/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis +lignumis=○🌐Lignumis [mod-description] lignumis=Sumérgete en el mundo de Lignumis, una luna de Nauvis que ofrece solo las tecnologías más básicas. diff --git a/lignumis/locale/pl/strings.cfg b/lignumis/locale/pl/strings.cfg index fbf090f..95cdd7e 100644 --- a/lignumis/locale/pl/strings.cfg +++ b/lignumis/locale/pl/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Lignumis +lignumis=○🌐Lignumis [mod-description] lignumis=Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies. diff --git a/lignumis/locale/ru/strings.cfg b/lignumis/locale/ru/strings.cfg index d578d8b..da69d76 100644 --- a/lignumis/locale/ru/strings.cfg +++ b/lignumis/locale/ru/strings.cfg @@ -1,5 +1,5 @@ [mod-name] -lignumis=○ Лигнумис +lignumis=○🌐Лигнумис [mod-description] lignumis=Погрузитесь в мир Лигнумиса — луны Наувиса, предлагающей лишь самые базовые технологии. diff --git a/lignumis/locale/zh-CN/strings.cfg b/lignumis/locale/zh-CN/strings.cfg index 8f9652d..7e17b25 100644 --- a/lignumis/locale/zh-CN/strings.cfg +++ b/lignumis/locale/zh-CN/strings.cfg @@ -2,7 +2,7 @@ surface-condition-too-low=__1__不符合. surface-condition-too-high=__1__不符合. [mod-name] -lignumis=○ 愈创星 - Lignumis +lignumis=○🌐愈创星 - Lignumis [mod-description] lignumis=潜入木木世界的世界,木星的月亮只提供最基本的技术 From 769759b494391b336f297f39fd6dd68cac737930 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 23:04:37 +0100 Subject: [PATCH 033/111] Remove diversitree --- lignumis-cf/info.json | 1 - 1 file changed, 1 deletion(-) diff --git a/lignumis-cf/info.json b/lignumis-cf/info.json index aa40a5b..59dd012 100644 --- a/lignumis-cf/info.json +++ b/lignumis-cf/info.json @@ -11,7 +11,6 @@ "lignumis", "aquilo-seabloom-algaculture", "astroponics >= 1.2.0", - "Diversitree", "fulgora-coralmium-agriculture", "gleba-water-cane", "vulcanus-sulfuric-bacteria" From ca3c660e3765006681b0abfc7cc90c14e85db09f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 23:19:52 +0100 Subject: [PATCH 034/111] Update Readme --- README-cf.md | 14 ++++++++++++++ README.md | 25 ++++++++----------------- 2 files changed, 22 insertions(+), 17 deletions(-) create mode 100644 README-cf.md diff --git a/README-cf.md b/README-cf.md new file mode 100644 index 0000000..dac3cc8 --- /dev/null +++ b/README-cf.md @@ -0,0 +1,14 @@ +[![foundrygg.com](https://img.shields.io/badge/foundrygg-4a1402?style=for-the-badge&logo=vercel&logoColor=white)](https://foundrygg.com)[![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/ufvFUJtVwk)[![Forgejo](https://img.shields.io/badge/source%20code-%23f4f4f5?style=for-the-badge&logo=forgejo&logoColor=%23c2410c)](https://git.cacklingfiend.info/cacklingfiend/lignumis)[![Downloads](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fmods.factorio.com%2Fapi%2Fmods%2Flignumis&query=%24.downloads_count&suffix=%20Downloads&style=for-the-badge&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI%2FPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDIwMDEwOTA0Ly9FTiIKICJodHRwOi8vd3d3LnczLm9yZy9UUi8yMDAxL1JFQy1TVkctMjAwMTA5MDQvRFREL3N2ZzEwLmR0ZCI%2BCjxzdmcgdmVyc2lvbj0iMS4wIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiB3aWR0aD0iMTIxNnB0IiBoZWlnaHQ9IjEyODBwdCIgdmlld0JveD0iMCAwIDEyMTYgMTI4MCIKIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIG1lZXQiPgo8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDEyODApIHNjYWxlKDAuMSwtMC4xKSIKZmlsbD0iI2ZmZmZmZiIgc3Ryb2tlPSJub25lIj4KPHBhdGggZD0iTTM0NzAgOTYwMCBsMCAtMzIwMCAtMTczMSAwIGMtOTUyIDAgLTE3MjkgLTQgLTE3MjcgLTggNCAtMTIgNjA2MgotNjM5MCA2MDY4IC02MzkwIDYgMCA2MDY0IDYzNzggNjA2OCA2MzkwIDIgNCAtNzc1IDggLTE3MjcgOCBsLTE3MzEgMCAwIDMyMDAKMCAzMjAwIC0yNjEwIDAgLTI2MTAgMCAwIC0zMjAweiIvPgo8L2c%2BCjwvc3ZnPgo%3D&label=&labelColor=%23e39827&color=%23e39827)](https://mods.factorio.com/mod/lignumis/metrics?range=last_two_months&type=mod_downloads)[![Ko-fi](https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white)](https://ko-fi.com/cacklingfiend) + +_________________ +![Lignumis poster](https://git.cacklingfiend.info/cacklingfiend/lignumis-assets/raw/branch/main/sources/readme/poster.jpg) + +## Lignumis + +This mod extends the early game of Space Age by putting you on the moon "Lignumis" before you escape to Nauvis. It concentrates on wood and steam technologies, giving you some early game production chains for those resources. + +**The is the director's cut of the mod with additional wood mods and most settings enforced. It changes the experience outside of Lignumis by adding the requirement for wood and the Lignumis science packs. For the mainstream experience, install the [Regular version](https://mods.factorio.com/mod/lignumis).** + +## More information + +Please continue reading the description of the [Regular version](https://mods.factorio.com/mod/lignumis). \ No newline at end of file diff --git a/README.md b/README.md index c8d614e..b58cbb3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/ufvFUJtVwk)[![Forgejo](https://img.shields.io/badge/source%20code-%23f4f4f5?style=for-the-badge&logo=forgejo&logoColor=%23c2410c)](https://git.cacklingfiend.info/cacklingfiend/lignumis)[![Downloads](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fmods.factorio.com%2Fapi%2Fmods%2Flignumis&query=%24.downloads_count&suffix=%20Downloads&style=for-the-badge&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI%2FPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDIwMDEwOTA0Ly9FTiIKICJodHRwOi8vd3d3LnczLm9yZy9UUi8yMDAxL1JFQy1TVkctMjAwMTA5MDQvRFREL3N2ZzEwLmR0ZCI%2BCjxzdmcgdmVyc2lvbj0iMS4wIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiB3aWR0aD0iMTIxNnB0IiBoZWlnaHQ9IjEyODBwdCIgdmlld0JveD0iMCAwIDEyMTYgMTI4MCIKIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIG1lZXQiPgo8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDEyODApIHNjYWxlKDAuMSwtMC4xKSIKZmlsbD0iI2ZmZmZmZiIgc3Ryb2tlPSJub25lIj4KPHBhdGggZD0iTTM0NzAgOTYwMCBsMCAtMzIwMCAtMTczMSAwIGMtOTUyIDAgLTE3MjkgLTQgLTE3MjcgLTggNCAtMTIgNjA2MgotNjM5MCA2MDY4IC02MzkwIDYgMCA2MDY0IDYzNzggNjA2OCA2MzkwIDIgNCAtNzc1IDggLTE3MjcgOCBsLTE3MzEgMCAwIDMyMDAKMCAzMjAwIC0yNjEwIDAgLTI2MTAgMCAwIC0zMjAweiIvPgo8L2c%2BCjwvc3ZnPgo%3D&label=&labelColor=%23e39827&color=%23e39827)](https://mods.factorio.com/mod/lignumis/metrics?range=last_two_months&type=mod_downloads)[![Ko-fi](https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white)](https://ko-fi.com/cacklingfiend) +[![foundrygg.com](https://img.shields.io/badge/foundrygg-4a1402?style=for-the-badge&logo=vercel&logoColor=white)](https://foundrygg.com)[![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?style=for-the-badge&logo=discord&logoColor=white)](https://discord.gg/ufvFUJtVwk)[![Forgejo](https://img.shields.io/badge/source%20code-%23f4f4f5?style=for-the-badge&logo=forgejo&logoColor=%23c2410c)](https://git.cacklingfiend.info/cacklingfiend/lignumis)[![Downloads](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fmods.factorio.com%2Fapi%2Fmods%2Flignumis&query=%24.downloads_count&suffix=%20Downloads&style=for-the-badge&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI%2FPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDIwMDEwOTA0Ly9FTiIKICJodHRwOi8vd3d3LnczLm9yZy9UUi8yMDAxL1JFQy1TVkctMjAwMTA5MDQvRFREL3N2ZzEwLmR0ZCI%2BCjxzdmcgdmVyc2lvbj0iMS4wIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiB3aWR0aD0iMTIxNnB0IiBoZWlnaHQ9IjEyODBwdCIgdmlld0JveD0iMCAwIDEyMTYgMTI4MCIKIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWRZTWlkIG1lZXQiPgo8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDEyODApIHNjYWxlKDAuMSwtMC4xKSIKZmlsbD0iI2ZmZmZmZiIgc3Ryb2tlPSJub25lIj4KPHBhdGggZD0iTTM0NzAgOTYwMCBsMCAtMzIwMCAtMTczMSAwIGMtOTUyIDAgLTE3MjkgLTQgLTE3MjcgLTggNCAtMTIgNjA2MgotNjM5MCA2MDY4IC02MzkwIDYgMCA2MDY0IDYzNzggNjA2OCA2MzkwIDIgNCAtNzc1IDggLTE3MjcgOCBsLTE3MzEgMCAwIDMyMDAKMCAzMjAwIC0yNjEwIDAgLTI2MTAgMCAwIC0zMjAweiIvPgo8L2c%2BCjwvc3ZnPgo%3D&label=&labelColor=%23e39827&color=%23e39827)](https://mods.factorio.com/mod/lignumis/metrics?range=last_two_months&type=mod_downloads)[![Ko-fi](https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white)](https://ko-fi.com/cacklingfiend) _________________ ![Lignumis poster](https://git.cacklingfiend.info/cacklingfiend/lignumis-assets/raw/branch/main/sources/readme/poster.jpg) @@ -7,9 +7,7 @@ _________________ This mod extends the early game of Space Age by putting you on the moon "Lignumis" before you escape to Nauvis. It concentrates on wood and steam technologies, giving you some early game production chains for those resources. -The duration of the stay on Lignumis will be rather short. The impact of the later game will still be substantial. There are several mod settings to alter the experience after leaving Lignumis to make it match your personal taste. - -**Warning:** When playing with default settings, this mod will have an impact on all other planets and how space ships are built. Check out the settings to disable what you don't like. +**The is the mainstream version of the mod with very few changes outside of Lignumis. For the full experience as intended by me, install the [Director's Cut](https://mods.factorio.com/mod/lignumis-cf).** #### Streamers featuring Lignumis @@ -62,21 +60,13 @@ Sources of wood per planet. The following mods can be a great addition for this mod: -#### [Inserter Fuel Leech](https://mods.factorio.com/mod/InserterFuelLeech) - -While optional, the intended way is to use this mod for the burner phase as it improves the fueling experience of burner entities. - -For UPS optimizations, you can disable this mod once the burner phase is over. - -Alternatives: [Burner Leech Fork](https://mods.factorio.com/mod/Burner-Leech-Fork), [Burner Leech](https://mods.factorio.com/mod/Burner-Leech) - #### Optional wood mods - [Wooden Fulgora: Coralmium Agriculture](https://mods.factorio.com/mod/fulgora-coralmium-agriculture) +- [Wooden Gleba: Water Cane](https://mods.factorio.com/mod/gleba-water-cane) - [Wooden Aquilo: Seabloom Algaculture](https://mods.factorio.com/mod/aquilo-seabloom-algaculture) - [Wooden Cerys: Lunaponics](https://mods.factorio.com/mod/cerys-lunaponics) - [Wooden Moshine: Solaponics](https://mods.factorio.com/mod/moshine-solaponics) -- [Wooden Arig](https://mods.factorio.com/mod/wooden-arig) #### [Any Planet Start](https://mods.factorio.com/mod/any-planet-start) @@ -99,6 +89,10 @@ If you want more of it than Lignumis offers, add this mod. It adds ammo for shot If you like go more into the charcoal direction. It has no overlap with Lignumis and starts to get relevant on Nauvis. +#### [Wooden Logistics](https://mods.factorio.com/mod/wood-logistics) + +This mod adds a few more things around wood. It also changes some recipes that Lignumis also adds. The lumber mill will be two tiles smaller with this mod installed. + #### [Crushing Industry](https://mods.factorio.com/mod/crushing-industry) with [Crushing Industry - Productivity Research](https://mods.factorio.com/mod/crushing-industry-productivity-research) Recommended with high science cost settings. It adds crushers and crushed ores to increase productivity. @@ -179,13 +173,9 @@ _________________ ## Todo -- Fix pipe graphics on desiccation furnace and quality assembler - Trees must not die when absorbing noise - https://lua-api.factorio.com/latest/types/TreeVariation.html - Add information in Factoriopedia -- Compatibility with [On Wayward Seas](https://mods.factorio.com/mod/wayward-seas) -- Compatibility with [Exotic Space Industries](https://mods.factorio.com/mod/exotic-space-industries) -- Compatibility with [Noble Metals](https://mods.factorio.com/mod/bzgold) once it's updated _________________ @@ -255,6 +245,7 @@ _________________ [Pixabay](https://pixabay.com) - [AudioPapkin: Forest ambience](https://pixabay.com/sound-effects/forest-ambience-296528/) +- Various sounds for the Lumber Mill, Deep Miner and Quality Assembler [SafTheLamb](https://mods.factorio.com/user/SafTheLamb) From 79a5aa1bcdbe29a4904410bb631d9371bb1cb2c1 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 23:23:17 +0100 Subject: [PATCH 035/111] 1.2.0 --- lignumis/changelog.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index b67e036..36cf896 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 1.2.0 +Date: 16.12.2025 + Changes: + - This is now considered the "mainstream version" of the mod. Install the "director's cut" for the full experience. This is currently only relevant for new games. + - Move quality assembler to the end of the subgroup +--------------------------------------------------------------------------------------------------- Version: 1.1.0 Date: 16.12.2025 Breaking Changes: From 6e918ca9bdbd7f0d3ea5b5035ad9cd0cc20c539f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 23:27:57 +0100 Subject: [PATCH 036/111] Correct mod name --- lignumis-cf/info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis-cf/info.json b/lignumis-cf/info.json index 59dd012..3b8fde2 100644 --- a/lignumis-cf/info.json +++ b/lignumis-cf/info.json @@ -1,7 +1,7 @@ { "name": "lignumis-cf", "version": "1.2.0", - "title": "Lignumis - Directors Cut", + "title": "Lignumis - Director's Cut", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version.", "author": "cackling fiend", "homepage": "https://discord.gg/ufvFUJtVwk", From c37af3779148732c70c64beed026a2cdc198642f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 16 Dec 2025 23:28:05 +0100 Subject: [PATCH 037/111] Readme --- README-cf.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README-cf.md b/README-cf.md index dac3cc8..286a129 100644 --- a/README-cf.md +++ b/README-cf.md @@ -3,7 +3,7 @@ _________________ ![Lignumis poster](https://git.cacklingfiend.info/cacklingfiend/lignumis-assets/raw/branch/main/sources/readme/poster.jpg) -## Lignumis +## Lignumis - Director's Cut This mod extends the early game of Space Age by putting you on the moon "Lignumis" before you escape to Nauvis. It concentrates on wood and steam technologies, giving you some early game production chains for those resources. From a0a89a84ae456beae1e9164412a8c533bdd79e16 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 17 Dec 2025 23:33:57 +0100 Subject: [PATCH 038/111] Hide Astroponics setting when the mod is not active --- lignumis/settings.lua | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/lignumis/settings.lua b/lignumis/settings.lua index 57bd015..3dd53c4 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -93,13 +93,6 @@ data:extend({ default_value = false, order = "m" }, - { - type = "bool-setting", - name = "lignumis-infinite-astroponics-productivity-research", - setting_type = "startup", - default_value = false, - order = "n" - }, { type = "bool-setting", name = "lignumis-electric-lumber-mill", @@ -124,6 +117,18 @@ data:extend({ } }) +if mods["atroponics"] then + data:extend({ + { + type = "bool-setting", + name = "lignumis-infinite-astroponics-productivity-research", + setting_type = "startup", + default_value = false, + order = "n" + } + }) +end + if mods["aai-industry"] then force("lignumis-inserter-progression", false) force("lignumis-assembler-progression", false) From f99bff84592f79aa101d632d270d0056844d7aff Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 00:14:47 +0100 Subject: [PATCH 039/111] Fix recipe category of the wood belt --- lignumis/prototypes/content/wood-logistics.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lignumis/prototypes/content/wood-logistics.lua b/lignumis/prototypes/content/wood-logistics.lua index 4475b8f..0caeb6d 100644 --- a/lignumis/prototypes/content/wood-logistics.lua +++ b/lignumis/prototypes/content/wood-logistics.lua @@ -392,6 +392,8 @@ data:extend({ { type = "recipe", name = transportBeltName, + category = "crafting", + additional_categories = { "wood-processing" }, enabled = false, energy_required = 0.5, results = { { type = "item", name = transportBeltName, amount = 2 } }, @@ -431,8 +433,6 @@ data:extend({ { type = "technology", name = name .. "-logistics", - category = "crafting", - additional_categories = { "wood-processing" }, icon = Lignumis.graphics .. "technology/wood-logistics.png", icon_size = 256, effects = { From ec2f4efc0e8ad54d942ca4106060a88adedda05d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 00:19:48 +0100 Subject: [PATCH 040/111] 1.2.1 --- lignumis/changelog.txt | 6 ++++++ lignumis/info.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 36cf896..fcd26c2 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 1.2.1 +Date: 18.12.2025 + Bug Fixes: + - Hide Astroponics setting when the mod is not active + - Fix recipe category of the wood belt +--------------------------------------------------------------------------------------------------- Version: 1.2.0 Date: 16.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 5c6e769..7cc2667 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.2.0", + "version": "1.2.1", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 9312e645673fef876b06f71ca5ae60c5b088436c Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 01:07:04 +0100 Subject: [PATCH 041/111] Lumber mill accepts productivity modules again --- lignumis/prototypes/content/lumber-mill.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 26bb3f7..709bb25 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -53,7 +53,7 @@ data:extend({ icons_positioning = { { inventory_index = defines.inventory.assembling_machine_modules, shift = { 0, 1.25 } } }, - allowed_effects = { "consumption", "speed", "pollution", "quality" }, + allowed_effects = { "consumption", "speed", "pollution", "quality", "productivity" }, crafting_categories = { "wood-processing" }, crafting_speed = 2, energy_source = energy_source, From 90d94890f1047dfcbfd8ac95b78e66357116cc2e Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 01:07:12 +0100 Subject: [PATCH 042/111] Fix crash with Astroponics --- lignumis/settings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/settings.lua b/lignumis/settings.lua index 3dd53c4..114d16e 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -117,7 +117,7 @@ data:extend({ } }) -if mods["atroponics"] then +if mods["astroponics"] then data:extend({ { type = "bool-setting", From b682773d44136d1656c8ada9dcf507b925faa1b6 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 01:08:00 +0100 Subject: [PATCH 043/111] 1.2.2 --- lignumis/changelog.txt | 6 ++++++ lignumis/info.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index fcd26c2..836f6b4 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 1.2.2 +Date: 18.12.2025 + Bug Fixes: + - Lumber mill accepts productivity modules again + - Fix crash with Astroponics +--------------------------------------------------------------------------------------------------- Version: 1.2.1 Date: 18.12.2025 Bug Fixes: diff --git a/lignumis/info.json b/lignumis/info.json index 7cc2667..36aca88 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.2.1", + "version": "1.2.2", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 25aa4a1c813edbd84a78a2ccd6180b33571519df Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 13:03:39 +0100 Subject: [PATCH 044/111] Set weight and default import location for gold plate --- lignumis/prototypes/content/gold/intermediates.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/gold/intermediates.lua b/lignumis/prototypes/content/gold/intermediates.lua index 3c7c56e..0cf3d85 100644 --- a/lignumis/prototypes/content/gold/intermediates.lua +++ b/lignumis/prototypes/content/gold/intermediates.lua @@ -13,7 +13,9 @@ data:extend({ pick_sound = item_sounds.metal_small_inventory_pickup, drop_sound = item_sounds.metal_small_inventory_move, stack_size = 100, - enabled = true + enabled = true, + weight = 1 * kg, + default_import_location = "lignumis" }, { type = "recipe", @@ -35,6 +37,7 @@ data:extend({ drop_sound = item_sounds.wire_inventory_move, stack_size = 200, weight = 0.25 * kg, + default_import_location = "lignumis", ingredient_to_weight_coefficient = 0.25 }, { From c24016e67b3c15db86d8b0e472417fbf3494cc73 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 13:05:11 +0100 Subject: [PATCH 045/111] Move code for AAI Industry behind Wooden Logistics --- lignumis/prototypes/compatibility/updates.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lignumis/prototypes/compatibility/updates.lua b/lignumis/prototypes/compatibility/updates.lua index 2042d0d..6f41c02 100644 --- a/lignumis/prototypes/compatibility/updates.lua +++ b/lignumis/prototypes/compatibility/updates.lua @@ -1,5 +1,5 @@ -require("aai-industry") require("gleba-reborn") require("crushing-industry-updates") require("k2so") -require("wood-logistics") \ No newline at end of file +require("wood-logistics") +require("aai-industry") From 537e570efeff82faed0e1e4d5165fc01874a712a Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 17:34:12 +0100 Subject: [PATCH 046/111] Add lumber mill from Lignumis if Wooden Logistics is active but lumber mill is disabled in the settings --- lignumis/prototypes/content/lumber-mill.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 709bb25..9ffcafc 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -17,7 +17,7 @@ local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].val local has_oxygen = data.raw["surface-property"]["oxygen"] ~= nil local electric_lumber_mill = settings.startup["lignumis-electric-lumber-mill"].value -if mods["wood-logistics"] then +if mods["wood-logistics"] and settings.startup["wood-logistics-lumber-mill"].value then return end From 7e3f9b4014b2f37c29f9d5927dc691302ed21d9e Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 18 Dec 2025 18:40:21 +0100 Subject: [PATCH 047/111] Remove burner leech hint --- lignumis/scripts/init.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lignumis/scripts/init.lua b/lignumis/scripts/init.lua index 75773e3..694a4cc 100644 --- a/lignumis/scripts/init.lua +++ b/lignumis/scripts/init.lua @@ -67,10 +67,6 @@ Init.events[defines.events.on_player_created] = function(event) storage.init[event.player_index] = true - if not script.active_mods["Burner-Leech-Fork"] and not script.active_mods["Burner-Leech"] and not script.active_mods["InserterFuelLeech"] then - game.print("Lignumis: You are starting a new game without a burner leech mod. The intended experience is to use one of the available options. You can disable such a mod after the burner phase of the game. See the mod page for more details.") - end - if not script.active_mods["any-planet-start"] then init_player(event) init_freeplay(event) From 8334da6f5b0f82f798d6efe2f60f41c29bb65063 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 19 Dec 2025 22:17:20 +0100 Subject: [PATCH 048/111] Wooden Logistics: Fix crafting categories --- .../compatibility/wood-logistics.lua | 62 +++++++------------ 1 file changed, 23 insertions(+), 39 deletions(-) diff --git a/lignumis/prototypes/compatibility/wood-logistics.lua b/lignumis/prototypes/compatibility/wood-logistics.lua index 98ea43f..1dfc138 100644 --- a/lignumis/prototypes/compatibility/wood-logistics.lua +++ b/lignumis/prototypes/compatibility/wood-logistics.lua @@ -9,11 +9,9 @@ end local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value local electric_lumber_mill = settings.startup["lignumis-electric-lumber-mill"].value - --- Lumber -if settings.startup["wood-logistics-lumber"].value then - Recipe:new("lumber"):addCategory("wood-processing") -end +table.insert(data.raw["assembling-machine"]["burner-assembling-machine"].crafting_categories, "crafting-or-carpentry") +table.insert(data.raw["assembling-machine"]["steam-assembling-machine"].crafting_categories, "crafting-or-carpentry") +table.insert(data.raw["assembling-machine"]["steam-assembling-machine"].crafting_categories, "advanced-crafting-or-carpentry") -- Lumber mill @@ -45,16 +43,13 @@ if settings.startup["wood-logistics-lumber-mill"].value then data.raw.item["lumber-mill"].default_import_location = "lignumis" - table.assign(data.raw.recipe["lumber-mill"], { - additional_categories = { "wood-processing" }, - ingredients = table.trim({ - { type = "item", name = "stone-brick", amount = 40 }, - { type = "item", name = "lumber", amount = 50 }, - { type = "item", name = "wooden-gear-wheel", amount = 50 }, - { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, - basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, - { type = "item", name = "burner-assembling-machine", amount = 2 } - }) + data.raw.recipe["lumber-mill"].ingredients = table.trim({ + { type = "item", name = "stone-brick", amount = 40 }, + { type = "item", name = "lumber", amount = 50 }, + { type = "item", name = "wooden-gear-wheel", amount = 50 }, + { type = "item", name = "gold-plate", amount = basic_circuit_board and 20 or 40 }, + basic_circuit_board and { type = "item", name = "basic-circuit-board", amount = 20 } or nil, + { type = "item", name = "burner-assembling-machine", amount = 2 } }) Recipe:new("lumber-mill") @@ -104,35 +99,24 @@ end -- Wooden belts if settings.startup["wood-logistics-belts"].value then Recipe:new("wood-transport-belt") - :replaceIngredient("copper-cable", "wooden-gear-wheel", 1) - :assign({ - additional_categories = { "wood-processing" } - }) - - Recipe:new("wood-underground-belt") - :assign({ - additional_categories = { "wood-processing" } - }) + :replaceIngredient("copper-cable", "wooden-gear-wheel", 1) Recipe:new("wood-splitter") - :replaceIngredient("copper-cable", basic_circuit_board and "basic-circuit-board" or "gold-cable", basic_circuit_board and 5 or nil) - :assign({ - additional_categories = { "wood-processing" } - }) + :replaceIngredient("copper-cable", basic_circuit_board and "basic-circuit-board" or "gold-cable", basic_circuit_board and 5 or nil) if not basic_circuit_board then Recipe:new("wood-splitter") - :clone("wood-splitter-electronic-circuit") - :replaceIngredient(basic_circuit_board and "gold-cable" or "basic-circuit-board", "electronic-circuit", 2) - :assign({ - localised_name = { "entity-name.wood-splitter" }, - icons = { - { icon = data.raw.item["wood-splitter"].icon }, - { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } - } - }) - :unlockedByTechnology("electronics") - :apply() + :clone("wood-splitter-electronic-circuit") + :replaceIngredient(basic_circuit_board and "gold-cable" or "basic-circuit-board", "electronic-circuit", 2) + :assign({ + localised_name = { "entity-name.wood-splitter" }, + icons = { + { icon = data.raw.item["wood-splitter"].icon }, + { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } + } + }) + :unlockedByTechnology("electronics") + :apply() end Item:new("wood-transport-belt") From ede0bcff12370696f5c13a03b7a64a105b0fc0d3 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 19 Dec 2025 22:26:12 +0100 Subject: [PATCH 049/111] 1.2.3 --- lignumis/changelog.txt | 10 ++++++++++ lignumis/info.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 836f6b4..417f836 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,14 @@ --------------------------------------------------------------------------------------------------- +Version: 1.2.3 +Date: 19.12.2025 + Changes: + - Remove burner leech hint + Bug Fixes: + - Set weight and default import location for gold plate + - Move code for AAI Industry behind Wooden Logistics + - Add lumber mill from Lignumis if Wooden Logistics is active but lumber mill is disabled in the settings + - Wooden Logistics: Fix crafting categories +--------------------------------------------------------------------------------------------------- Version: 1.2.2 Date: 18.12.2025 Bug Fixes: diff --git a/lignumis/info.json b/lignumis/info.json index 36aca88..69cb180 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.2.2", + "version": "1.2.3", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 23a52139c20db20ce1b7801390ffb61e803b0ce1 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 20 Dec 2025 17:00:16 +0100 Subject: [PATCH 050/111] Fix surface condition for tree seed recipe --- lignumis/prototypes/compatibility/diversitree.lua | 4 ++-- .../content/burner-agricultural-tower.lua | 8 +------- lignumis/prototypes/content/gold/stromatolite.lua | 2 +- lignumis/prototypes/integrations/vanilla.lua | 14 +++++--------- 4 files changed, 9 insertions(+), 19 deletions(-) diff --git a/lignumis/prototypes/compatibility/diversitree.lua b/lignumis/prototypes/compatibility/diversitree.lua index af5e8f1..3207139 100644 --- a/lignumis/prototypes/compatibility/diversitree.lua +++ b/lignumis/prototypes/compatibility/diversitree.lua @@ -2,11 +2,11 @@ if not mods["Diversitree"] then return end -data.raw.plant["s6xdvt-fake-tree"].surface_conditions[1].min = 900 +PlanetsLib.relax_surface_conditions(data.raw.plant["s6xdvt-fake-tree"], {property = "pressure", min = 900}) local tree_plant = data.raw.plant["s6xdvt-fake-tree"] tree_plant.growth_ticks = 5 * minute tree_plant.minable.results = { { type = "item", name = "wood", amount = 5 } } tree_plant.minable.count = nil -tree_plant.surface_conditions[1].min = 900 +PlanetsLib.relax_surface_conditions(tree_plant, {property = "pressure", min = 900}) table.insert(tree_plant.autoplace.tile_restriction, "natural-gold-soil") \ No newline at end of file diff --git a/lignumis/prototypes/content/burner-agricultural-tower.lua b/lignumis/prototypes/content/burner-agricultural-tower.lua index dc5a31e..cb3fa2d 100644 --- a/lignumis/prototypes/content/burner-agricultural-tower.lua +++ b/lignumis/prototypes/content/burner-agricultural-tower.lua @@ -24,13 +24,7 @@ agricultural_tower.resistances = nil agricultural_tower.input_inventory_size = 1 agricultural_tower.output_inventory_size = 3 agricultural_tower.radius = 2 -if agricultural_tower.surface_conditions then - for _, condition in pairs(agricultural_tower.surface_conditions) do - if condition.property == "pressure" then - condition.min = 900 - end - end -end +PlanetsLib.relax_surface_conditions(agricultural_tower, {property = "pressure", min = 900}) local crane = agricultural_tower.crane crane.parts[1].rotated_sprite.filenames = { gfx .. "burner-agricultural-tower-crane-1-1.png", gfx .. diff --git a/lignumis/prototypes/content/gold/stromatolite.lua b/lignumis/prototypes/content/gold/stromatolite.lua index 4e46c2d..6d6cf85 100644 --- a/lignumis/prototypes/content/gold/stromatolite.lua +++ b/lignumis/prototypes/content/gold/stromatolite.lua @@ -162,7 +162,7 @@ plant.autoplace = { probability_expression = "0", tile_restriction = { "natural-gold-soil" } } -plant.surface_conditions[1].min = 900 +PlanetsLib.relax_surface_conditions(plant, {property = "pressure", min = 900}) local seed = { type = "item", diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 5d79f97..f6b8035 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -77,20 +77,15 @@ end -- Gun turret + data.raw["ammo-turret"]["gun-turret"].attack_parameters.range = 20 Item:new("gun-turret"):itemsPerRocket(50) -- Agricultural tower -local agricultural_tower = data.raw["agricultural-tower"]["agricultural-tower"] -if agricultural_tower.surface_conditions then - for _, condition in pairs(agricultural_tower.surface_conditions) do - if condition.property == "pressure" then - condition.min = 900 - end - end -end +PlanetsLib.relax_surface_conditions(data.raw["agricultural-tower"]["agricultural-tower"], {property = "pressure", min = 900}) + -- Solar panal Item:new("solar-panel"):itemsPerRocket(50) @@ -101,6 +96,7 @@ Item:new("solar-panel"):itemsPerRocket(50) local wood_processing = data.raw.recipe["wood-processing"] wood_processing.ingredients[1].amount = 1 wood_processing.icon = data.raw.item["tree-seed"].icon +PlanetsLib.relax_surface_conditions(wood_processing, {property = "pressure", min = 900}) for _, tree in pairs(data.raw.tree) do local function isWoodResult(result) @@ -127,7 +123,7 @@ local tree_plant = data.raw.plant["tree-plant"] tree_plant.growth_ticks = 5 * minute tree_plant.minable.results = { { type = "item", name = "wood", amount = 5 } } tree_plant.minable.count = nil -tree_plant.surface_conditions[1].min = 900 +PlanetsLib.relax_surface_conditions(tree_plant, {property = "pressure", min = 900}) table.insert(tree_plant.autoplace.tile_restriction, "natural-gold-soil") table.insert(data.raw["assembling-machine"]["assembling-machine-1"].crafting_categories, "organic-or-assembling") From fa5e644db173a90f9e8531d2628b4a9b9beb9a9a Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 20 Dec 2025 19:54:13 +0100 Subject: [PATCH 051/111] Add menu simulation --- lignumis/data.lua | 2 ++ lignumis/logo.lua | 16 ++++++++++++++++ lignumis/menu-simulations.lua | 19 +++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 lignumis/logo.lua create mode 100644 lignumis/menu-simulations.lua diff --git a/lignumis/data.lua b/lignumis/data.lua index 6508692..eca0755 100644 --- a/lignumis/data.lua +++ b/lignumis/data.lua @@ -38,6 +38,8 @@ end require("__cf-lib__/util") +require("logo") +require("menu-simulations") require("prototypes/content/data") require("prototypes/integrations/data") require("prototypes/compatibility/data") \ No newline at end of file diff --git a/lignumis/logo.lua b/lignumis/logo.lua new file mode 100644 index 0000000..bb346ff --- /dev/null +++ b/lignumis/logo.lua @@ -0,0 +1,16 @@ +data:extend({ + { + type = "simple-entity", + name = "lignumis-logo", + picture = { + filename = "__lignumis-assets__/title.png", + width = 575, + height = 181, + scale = 1, + draw_as_glow = true + }, + collision_mask = { layers = {} }, + render_layer = "air-object", + hidden_in_factoriopedia = true + } +}) \ No newline at end of file diff --git a/lignumis/menu-simulations.lua b/lignumis/menu-simulations.lua new file mode 100644 index 0000000..7f47f20 --- /dev/null +++ b/lignumis/menu-simulations.lua @@ -0,0 +1,19 @@ +local main_menu_simulations = data.raw["utility-constants"]["default"].main_menu_simulations +main_menu_simulations.lignumis_early = { + checkboard = false, + planet = "lignumis", + save = "__lignumis-assets__/menu-simulations/lignumis1.zip", + length = 60 * 20, + mods = { "lignumis" }, + game_view_settings = { default_show_value = false }, + init = [[ + game.simulation.camera_surface_index = game.surfaces["lignumis"].index -- Surface of camera + game.simulation.camera_position = {-6, 10} -- Position of camera + game.simulation.camera_zoom = 0.75 -- Zoom of camera + game.tick_paused = false + game.surfaces["lignumis"].daytime = 0.3 + game.players[1].game_view_settings.show_controller_gui = false + game.players[1].game_view_settings.show_quickbar = false + game.players[1].game_view_settings.show_shortcut_bar = false + ]] +} \ No newline at end of file From 98279687386809cc0990141a483f121c697eb617 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 20 Dec 2025 19:54:51 +0100 Subject: [PATCH 052/111] Hide noise cancelling recipe from Factoriopedia --- lignumis/prototypes/content/active-noise-cancelling-tower.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/active-noise-cancelling-tower.lua b/lignumis/prototypes/content/active-noise-cancelling-tower.lua index 294e5f5..5a3f29c 100644 --- a/lignumis/prototypes/content/active-noise-cancelling-tower.lua +++ b/lignumis/prototypes/content/active-noise-cancelling-tower.lua @@ -117,9 +117,11 @@ data:extend({ ingredients = {}, results = {}, category = "active-noise-cancelling", + surface_conditions = { { property = "pollutant-type", min = 3, max = 3 } }, hide_from_stats = true, hide_from_player_crafting = true, - surface_conditions = { { property = "pollutant-type", min = 3, max = 3 } } + hide_from_signal_gui = true, + hidden_in_factoriopedia = true }, { type = "technology", From 27dccedd0f3c285d19e34ffce0835093a351b742 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 20 Dec 2025 19:55:22 +0100 Subject: [PATCH 053/111] 1.2.4 --- lignumis/changelog.txt | 8 ++++++++ lignumis/info.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 417f836..37c9e22 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,12 @@ --------------------------------------------------------------------------------------------------- +Version: 1.2.4 +Date: 20.12.2025 + Changes: + - Add menu simulation + Bug Fixes: + - Fix surface condition for tree seed recipe + - Hide noise cancelling recipe from Factoriopedia +--------------------------------------------------------------------------------------------------- Version: 1.2.3 Date: 19.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 69cb180..9201b78 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.2.3", + "version": "1.2.4", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From e6e4fc610660359a9591162ebafdeee60eaf056b Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 22 Dec 2025 12:02:46 +0100 Subject: [PATCH 054/111] Add steam inserters --- lignumis/locale/en/strings.cfg | 2 + .../content/burner-long-handed-inserter.lua | 4 +- lignumis/prototypes/content/data.lua | 1 + .../prototypes/content/steam-inserters.lua | 107 ++++++++++++++++++ 4 files changed, 113 insertions(+), 1 deletion(-) create mode 100644 lignumis/prototypes/content/steam-inserters.lua diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index e63f760..3b0d74c 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -22,6 +22,8 @@ peat=Peat burner-agricultural-tower=Burner agricultural tower burner-assembling-machine=Burner assembling machine burner-long-handed-inserter=Burner long handed inserter +steam-inserter=Steam inserter +steam-long-handed-inserter=Steam long handed inserter lumber-mill=Lumber mill gold-stromatolite=Gold stromatolite gold-stromatolite-plant=Gold stromatolite plant diff --git a/lignumis/prototypes/content/burner-long-handed-inserter.lua b/lignumis/prototypes/content/burner-long-handed-inserter.lua index b6dffcf..f3bc55e 100644 --- a/lignumis/prototypes/content/burner-long-handed-inserter.lua +++ b/lignumis/prototypes/content/burner-long-handed-inserter.lua @@ -58,7 +58,9 @@ data:extend({ pick_sound = item_sounds.inserter_inventory_pickup, drop_sound = item_sounds.inserter_inventory_move, place_result = "burner-long-handed-inserter", - stack_size = 50 + stack_size = 50, + weight = 20 * kg, + default_import_location = "lignumis" }, { type = "recipe", diff --git a/lignumis/prototypes/content/data.lua b/lignumis/prototypes/content/data.lua index 9dca318..f7a6d22 100644 --- a/lignumis/prototypes/content/data.lua +++ b/lignumis/prototypes/content/data.lua @@ -15,6 +15,7 @@ require("gold") require("deep-miner") require("desiccation-furnace") require("steam-assembling-machine") +require("steam-inserters") require("steam-science") require("wood-liquefaction") require("wooden-rocket-silo") diff --git a/lignumis/prototypes/content/steam-inserters.lua b/lignumis/prototypes/content/steam-inserters.lua new file mode 100644 index 0000000..f326156 --- /dev/null +++ b/lignumis/prototypes/content/steam-inserters.lua @@ -0,0 +1,107 @@ +require("__base__.prototypes.entity.pipecovers") +local item_sounds = require("__base__.prototypes.item_sounds") +local pipecovers = require("__lignumis__.prototypes.content.gold.pipecovers") +local machinepipes = require("__lignumis__.prototypes.content.gold.machinepipes") +local Technology = require("__cf-lib__/data/Technology") + +local inserter = table.deepcopy(data.raw["inserter"]["burner-inserter"]) +inserter.name = "steam-inserter" +inserter.icon = nil +inserter.icons = { + { icon = Lignumis.graphics .. "icons/burner-inserter.png", icon_size = 64 }, + { icon = "__base__/graphics/icons/fluid/steam.png", icon_size = 64, scale = 0.25, shift = { 8, -8 } }, +} +inserter.minable.result = "steam-inserter" +inserter.energy_source = { + type = "fluid", + maximum_temperature = 165, + scale_fluid_usage = true, + effectivity = 1, + fluid_box = { + filter = "steam", + pipe_covers = pipecovers(), + pipe_picture = machinepipes(), + volume = 50, + pipe_connections = { + { direction = defines.direction.north, position = { 0, 0 } }, + { direction = defines.direction.south, position = { 0, 0 } }, + { direction = defines.direction.west, position = { 0, 0 } }, + { direction = defines.direction.east, position = { 0, 0 } }, + }, + production_type = "input-output", + secondary_draw_orders = { north = -1 } + } +} +inserter.extension_speed = 0.035 +inserter.rotation_speed = 0.0135 + +local long_handed_inserter = table.deepcopy(data.raw["inserter"]["burner-long-handed-inserter"]) +long_handed_inserter.name = "steam-long-handed-inserter" +long_handed_inserter.icon = nil +long_handed_inserter.icons = { + { icon = Lignumis.graphics .. "icons/burner-long-handed-inserter.png" }, + { icon = "__base__/graphics/icons/fluid/steam.png", icon_size = 64, scale = 0.25, shift = { 8, -8 } } +} +long_handed_inserter.minable.result = "steam-long-handed-inserter" +long_handed_inserter.energy_source = inserter.energy_source +long_handed_inserter.extension_speed = 0.04 +long_handed_inserter.rotation_speed = 0.016 + +data:extend({ + inserter, + long_handed_inserter, + { + type = "item", + name = "steam-inserter", + icons = inserter.icons, + subgroup = "inserter", + order = "b1[steam-inserter]", + inventory_move_sound = item_sounds.inserter_inventory_move, + pick_sound = item_sounds.inserter_inventory_pickup, + drop_sound = item_sounds.inserter_inventory_move, + place_result = "steam-inserter", + stack_size = 50, + weight = 20 * kg, + default_import_location = "lignumis" + }, + { + type = "recipe", + name = "steam-inserter", + category = "crafting", + enabled = false, + ingredients = { + { type = "item", name = "gold-pipe", amount = 2 }, + { type = "item", name = "burner-inserter", amount = 1 } + }, + results = { { type = "item", name = "steam-inserter", amount = 1 } } + }, + { + type = "item", + name = "steam-long-handed-inserter", + icons = long_handed_inserter.icons, + subgroup = "inserter", + order = "b2[steam-long-handed-inserter]", + inventory_move_sound = item_sounds.inserter_inventory_move, + pick_sound = item_sounds.inserter_inventory_pickup, + drop_sound = item_sounds.inserter_inventory_move, + place_result = "steam-long-handed-inserter", + stack_size = 50, + weight = 20 * kg, + default_import_location = "lignumis" + }, + { + type = "recipe", + name = "steam-long-handed-inserter", + category = "crafting", + enabled = false, + ingredients = { + { type = "item", name = "gold-pipe", amount = 2 }, + { type = "item", name = "burner-long-handed-inserter", amount = 1 } + }, + results = { { type = "item", name = "steam-long-handed-inserter", amount = 1 } } + } +}) + +Technology:new("steam-automation") + :addRecipe("steam-inserter") + :addRecipe("steam-long-handed-inserter") \ No newline at end of file From 4171ec89c588c0ef9f5b16e1beaf6c9d9cfcbc51 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 22 Dec 2025 12:39:52 +0100 Subject: [PATCH 055/111] 1.3.0 --- lignumis/changelog.txt | 5 +++++ lignumis/info.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 37c9e22..43f49c5 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 1.3.0 +Date: 22.12.2025 + Changes: + - Add steam inserters +--------------------------------------------------------------------------------------------------- Version: 1.2.4 Date: 20.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 9201b78..0fe5221 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.2.4", + "version": "1.3.0", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 6a20f7d618e1fc6ee59e07d5d7ec9329db70212d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 24 Dec 2025 08:17:05 +0100 Subject: [PATCH 056/111] Fix crash when basic circuit boards are disabled --- lignumis/prototypes/content/wood-logistics.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/wood-logistics.lua b/lignumis/prototypes/content/wood-logistics.lua index 0caeb6d..0e69379 100644 --- a/lignumis/prototypes/content/wood-logistics.lua +++ b/lignumis/prototypes/content/wood-logistics.lua @@ -464,7 +464,7 @@ if not basic_circuit_board then :assign({ localised_name = { "entity-name.wood-splitter" }, icons = { - { icon = gfx .. "wood-splitter-icon.png" }, + { icon = Lignumis.graphics .. "icons/wood-splitter.png" }, { icon = "__base__/graphics/icons/electronic-circuit.png", scale = 0.25, shift = { 8, 8 } } } }) From 0b4db261d24b51dc01a7dc51e7aafc84f5d4d2d6 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 24 Dec 2025 08:52:31 +0100 Subject: [PATCH 057/111] Several things Mark basic circuit board setting as deprecated Add icons to overhaul settings labels Invert the meaning of the vanilla lab setting --- lignumis/locale/en/strings.cfg | 22 ++++++------- lignumis/prototypes/integrations/vanilla.lua | 8 ++--- lignumis/settings.lua | 34 ++++++++++---------- 3 files changed, 32 insertions(+), 32 deletions(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 3b0d74c..1fd946f 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -187,17 +187,17 @@ quality-catalyst=Quality catalyst [mod-setting-name] lignumis-restrict-sciences=Restrict Lignumis science recipes to Lignumis -lignumis-belt-progression=[color=orange][font=heading-2]Overhaul[/font][/color] Enable telescopic belt recipes -lignumis-inserter-progression=[color=orange][font=heading-2]Overhaul[/font][/color] Enable telescopic inserter recipes -lignumis-ammo-progression=[color=orange][font=heading-2]Overhaul[/font][/color] Enable telescopic ammo recipes -lignumis-technology-progression=[color=orange][font=heading-2]Overhaul[/font][/color] Enable progressive technologies -lignumis-basic-circuit-board=Enable basic circuit board -lignumis-circuit-progression=[color=orange][font=heading-2]Overhaul[/font][/color] Enable telescopic circuit recipes -lignumis-assembler-progression=[color=orange][font=heading-2]Overhaul[/font][/color] Enable telescopic assembler recipes +lignumis-belt-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=wood-transport-belt] Enable telescopic belt recipes +lignumis-inserter-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=burner-inserter] Enable telescopic inserter recipes +lignumis-ammo-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=wood-darts-magazine] Enable telescopic ammo recipes +lignumis-technology-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=wood-science-pack] Enable progressive technologies +lignumis-basic-circuit-board=[color=gray][font=heading-2]Deprecated (please enable)[/font] Enable basic circuit board[/color] +lignumis-circuit-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=basic-circuit-board] Enable telescopic circuit recipes +lignumis-assembler-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=burner-assembling-machine] Enable telescopic assembler recipes lignumis-lumber-mill-more-recipes=[color=green][font=heading-2]Easy[/font][/color] Enable more recipes for the lumber mill -lignumis-fulgora-wood=[color=orange][font=heading-2]Overhaul[/font][/color] Add wood to Fulgora +lignumis-fulgora-wood=[color=orange][font=heading-2]Overhaul[/font][/color] [planet=fulgora] Add wood to Fulgora lignumis-early-robots=[color=green][font=heading-2]Easy[/font][/color] Even earlier personal robots -lignumis-vanilla-lab=[color=orange][font=heading-2]Overhaul[/font][/color] Keep vanilla lab recipe +lignumis-lab=[color=orange][font=heading-2]Overhaul[/font][/color] [item=lab] Lab requires wooden belts lignumis-double-rocket=[color=green][font=heading-2]Easy[/font][/color] Double provisional rocket cargo capacity lignumis-sciences-spoil=[color=red][font=heading-2]Hard[/font][/color] Lignumis science packs spoil lignumis-infinite-astroponics-productivity-research=[color=green][font=heading-2]Easy[/font][/color] Infinite productivity research for Astroponics @@ -208,13 +208,13 @@ lignumis-belt-progression=Yellow belts will require wood belts to craft. lignumis-inserter-progression=Yellow electric inserter will require burner inserter to craft. lignumis-ammo-progression=Firearm magazines will require wooden darts magazines to craft. lignumis-technology-progression=Adds wood and steam science packs to most late game technologies. Disabling this removes the relevance of Lignumis' science packs in the late game. -lignumis-basic-circuit-board=Recipes use basic circuit boards instead of gold cables and gold plates where appropriate. Both gold and copper recipes will be added. +lignumis-basic-circuit-board=Please enable for new games. This option will be mandatory in the future. lignumis-circuit-progression=Electric circuits will require basic circuit boards to craft. lignumis-assembler-progression=Assembling machine 1 will require burner assembling machines to craft. lignumis-lumber-mill-more-recipes=The lumber mill can also craft basic turrets, burner assemblers and burner inserters. Improves balancing wood usage when all telescopic recipes are enabled and helps with marathon games. lignumis-fulgora-wood=This adds wooden gear wheels to scrap recycling as the main source of wood. Disable this is you have a different source of wood or import everything from other planets. lignumis-early-robots=Personal robots are moved from steam to wood science and are a tiny bit faster. -lignumis-vanilla-lab=Moves the transport belt recipe to Iron processing so the lab can be crafted with the original recipe without requiring to research logistics. +lignumis-lab=Moves the transport belt recipe to logistics research and uses wooden belts for the lab recipe so it can be crafted when landing on Nauvis. lignumis-double-rocket=The provisional rocket can carry 80 instead of 40 slots. lignumis-sciences-spoil=Both wood science packs and steam science packs spoil for additional difficulty. lignumis-infinite-astroponics-productivity-research=Productivity research for Astroponics is infinite instead of being capped to level 5 (which results in 50% productivity). diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index f6b8035..29fe4db 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -66,13 +66,13 @@ stone_furnace_remnants.animation[1].filename = Lignumis.graphics .. "entity/ston -- Lab -if settings.startup["lignumis-vanilla-lab"].value then - Recipe:new("transport-belt"):unlockedByTechnology("iron-processing") -else +if settings.startup["lignumis-lab"].value then Recipe:new("lab"):replaceIngredient("transport-belt", "wood-transport-belt") if not mods["wood-logistics"] or not settings.startup["wood-logistics-belts"].value then Recipe:new("transport-belt"):unlockedByTechnology("logistics") end +else + Recipe:new("transport-belt"):unlockedByTechnology("iron-processing") end @@ -173,7 +173,7 @@ automation_science_pack_technology.unit = { if not mods["aai-industry"] then local electronics_technology = data.raw.technology["electronics"] - electronics_technology.prerequisites = { "copper-processing" } + electronics_technology.prerequisites = { "copper-processing", "iron-processing" } local steam_power_technology = data.raw.technology["steam-power"] steam_power_technology.prerequisites = { "iron-processing" } diff --git a/lignumis/settings.lua b/lignumis/settings.lua index 114d16e..985783f 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -11,7 +11,7 @@ data:extend({ }, { type = "bool-setting", - name = "lignumis-basic-circuit-board", + name = "lignumis-circuit-progression", setting_type = "startup", default_value = true, order = "b" @@ -39,21 +39,21 @@ data:extend({ }, { type = "bool-setting", - name = "lignumis-technology-progression", + name = "lignumis-assembler-progression", setting_type = "startup", default_value = false, order = "f" }, { type = "bool-setting", - name = "lignumis-circuit-progression", + name = "lignumis-technology-progression", setting_type = "startup", - default_value = true, + default_value = false, order = "g" }, { type = "bool-setting", - name = "lignumis-assembler-progression", + name = "lignumis-lab", setting_type = "startup", default_value = false, order = "h" @@ -65,47 +65,47 @@ data:extend({ default_value = false, order = "i" }, - { - type = "bool-setting", - name = "lignumis-vanilla-lab", - setting_type = "startup", - default_value = true, - order = "j" - }, { type = "bool-setting", name = "lignumis-lumber-mill-more-recipes", setting_type = "startup", default_value = false, - order = "k" + order = "j" }, { type = "bool-setting", name = "lignumis-early-robots", setting_type = "startup", default_value = false, - order = "l" + order = "k" }, { type = "bool-setting", name = "lignumis-double-rocket", setting_type = "startup", default_value = false, - order = "m" + order = "l" }, { type = "bool-setting", name = "lignumis-electric-lumber-mill", setting_type = "startup", default_value = false, - order = "o" + order = "m" }, { type = "bool-setting", name = "lignumis-sciences-spoil", setting_type = "startup", default_value = false, - order = "p" + order = "n" + }, + { + type = "bool-setting", + name = "lignumis-basic-circuit-board", + setting_type = "startup", + default_value = true, + order = "z" }, { type = "string-setting", From 24dfb383a7876975e264c847bb6d72a5adac411a Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 24 Dec 2025 23:40:45 +0100 Subject: [PATCH 058/111] Add alternative electronic circuit recipe --- lignumis/locale/en/strings.cfg | 1 + .../prototypes/content/basic-circuit-board.lua | 14 +++++++++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 1fd946f..69ab41b 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -121,6 +121,7 @@ refresh-steam-science-pack=Refresh steam science pack moist-stromatolite-remnant-desiccation-without-steam=Used for balancing the production of steam. gold-stromatolite-seed-to-peat=Used for voiding excess gold stromatolite seeds. refresh-steam-science-pack=Heats a science flask with water to the right temperature to be used as steam science pack. +electronic-circuit-iron=Inefficient alternative recipe that doesn't require wood ingredients. [technology-name] wood-science-pack=Wood science pack diff --git a/lignumis/prototypes/content/basic-circuit-board.lua b/lignumis/prototypes/content/basic-circuit-board.lua index 8858fdf..0e36b8e 100644 --- a/lignumis/prototypes/content/basic-circuit-board.lua +++ b/lignumis/prototypes/content/basic-circuit-board.lua @@ -1,5 +1,6 @@ local item_sounds = require("__base__.prototypes.item_sounds") local Technology = require("__cf-lib__/data/Technology") +local Recipe = require("__cf-lib__/data/Recipe") if not settings.startup["lignumis-basic-circuit-board"].value then return end @@ -56,5 +57,16 @@ data:extend({ Technology:new("copper-processing"):addRecipe("basic-circuit-board-copper") if settings.startup["lignumis-circuit-progression"].value then - table.insert(data.raw.recipe["electronic-circuit"].ingredients, { type = "item", name = "basic-circuit-board", amount = 1 }) + local wood_recipe = Recipe:new("electronic-circuit") + local iron_recipe = wood_recipe:clone("electronic-circuit-iron"):apply() + + wood_recipe:addIngredient("basic-circuit-board", 1) + iron_recipe:replaceIngredient("iron-plate", 2) + :replaceIngredient("copper-cable", 6) + :addIndicatorIcon("__base__/graphics/icons/iron-plate.png") + :assign({ + localised_name = { "item-name.electronic-circuit" }, + order = "b[circuits]-b0[electronic-circuit-iron]" + }) + :unlockedByTechnology("electronics") end \ No newline at end of file From afcd3f1cdb1d325cd060da22ee11bd3b780614f5 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 24 Dec 2025 23:46:39 +0100 Subject: [PATCH 059/111] 1.3.1 --- lignumis/changelog.txt | 10 ++++++++++ lignumis/info.json | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 43f49c5..68e8de8 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,14 @@ --------------------------------------------------------------------------------------------------- +Version: 1.3.1 +Date: 24.12.2025 + Changes: + - Mark basic circuit board setting as deprecated + - Add icons to overhaul settings labels + - Invert the meaning of the vanilla lab setting + - Add alternative electronic circuit recipe + Bug Fixes: + - Fix crash when basic circuit boards are disabled +--------------------------------------------------------------------------------------------------- Version: 1.3.0 Date: 22.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 0fe5221..292519f 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.3.0", + "version": "1.3.1", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 7929a6ffa76b941f6b4aeb44a09f5d62ad3401a0 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 26 Dec 2025 21:27:34 +0100 Subject: [PATCH 060/111] Fix error after renaming the lab setting --- lignumis-cf/settings.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lignumis-cf/settings.lua b/lignumis-cf/settings.lua index 2e299f7..c5c2e0e 100644 --- a/lignumis-cf/settings.lua +++ b/lignumis-cf/settings.lua @@ -4,15 +4,15 @@ local forceDefault = Settings.forceDefault -- Lignumis force("lignumis-restrict-sciences", true) -force("lignumis-basic-circuit-board", true) +force("lignumis-circuit-progression", true) force("lignumis-belt-progression", true) force("lignumis-ammo-progression", true) force("lignumis-technology-progression", true) -force("lignumis-circuit-progression", true) +force("lignumis-lab", false) force("lignumis-fulgora-wood", false) -force("lignumis-vanilla-lab", false) force("lignumis-lumber-mill-more-recipes", true) force("lignumis-electric-lumber-mill", false) +force("lignumis-basic-circuit-board", true) if not mods["aai-industry"] then force("lignumis-inserter-progression", true) From c2671119d50db44c348237509c3ab084db6a8f64 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 26 Dec 2025 21:28:45 +0100 Subject: [PATCH 061/111] cf-1.2.1 --- lignumis-cf/changelog.txt | 5 +++++ lignumis-cf/info.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 lignumis-cf/changelog.txt diff --git a/lignumis-cf/changelog.txt b/lignumis-cf/changelog.txt new file mode 100644 index 0000000..0a97211 --- /dev/null +++ b/lignumis-cf/changelog.txt @@ -0,0 +1,5 @@ +--------------------------------------------------------------------------------------------------- +Version: 1.2.1 +Date: 26.12.2025 + Bug Fixes: + - Fix error after renaming the lab setting diff --git a/lignumis-cf/info.json b/lignumis-cf/info.json index 3b8fde2..c245d7e 100644 --- a/lignumis-cf/info.json +++ b/lignumis-cf/info.json @@ -1,6 +1,6 @@ { "name": "lignumis-cf", - "version": "1.2.0", + "version": "1.2.1", "title": "Lignumis - Director's Cut", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version.", "author": "cackling fiend", From 8b7ed178ddcfadf8468a78f108389d32ccf28f49 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 28 Dec 2025 18:54:16 +0100 Subject: [PATCH 062/111] Add the deep miner to the quality assembler --- lignumis/prototypes/content/quality-assembler.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index dc111c7..a0c730a 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -471,7 +471,10 @@ local function qa(recipeName) end -- Lignumis +--qa("quality-assembler") +--qa("gold-module-3") qa("lumber-mill") +qa("deep-miner") -- Nauvis qa("logistic-robot") From ff19f24579f17ace7d8febbae3af439fceda9d92 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 29 Dec 2025 16:02:42 +0100 Subject: [PATCH 063/111] Any Planet Start: Planet discovery Nauvis requires wood and steam science packs --- lignumis/prototypes/compatibility/any-planet-start-final.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lignumis/prototypes/compatibility/any-planet-start-final.lua b/lignumis/prototypes/compatibility/any-planet-start-final.lua index 61c38a7..d91745d 100644 --- a/lignumis/prototypes/compatibility/any-planet-start-final.lua +++ b/lignumis/prototypes/compatibility/any-planet-start-final.lua @@ -28,6 +28,9 @@ if planet_discovery then :setPrerequisites({ "provisional-rocketry" }) Technology:new("iron-processing"):replacePrerequisite("planet-discovery-nauvis", planet_discovery.name) Technology:new("copper-processing"):replacePrerequisite("planet-discovery-nauvis", planet_discovery.name) + if settings.startup["lignumis-technology-progression"].value then + Technology:new("planet-discovery-nauvis"):addIngredients({ "wood-science-pack", "steam-science-pack" }) + end end From 436c3262a411559bcc29b9d7542294aa69528676 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 29 Dec 2025 16:06:22 +0100 Subject: [PATCH 064/111] Set auto_recycle = false for the alternative green circuit recipe --- lignumis/prototypes/content/basic-circuit-board.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/basic-circuit-board.lua b/lignumis/prototypes/content/basic-circuit-board.lua index 0e36b8e..fc0679d 100644 --- a/lignumis/prototypes/content/basic-circuit-board.lua +++ b/lignumis/prototypes/content/basic-circuit-board.lua @@ -66,7 +66,8 @@ if settings.startup["lignumis-circuit-progression"].value then :addIndicatorIcon("__base__/graphics/icons/iron-plate.png") :assign({ localised_name = { "item-name.electronic-circuit" }, - order = "b[circuits]-b0[electronic-circuit-iron]" + order = "b[circuits]-b0[electronic-circuit-iron]", + auto_recycle = false }) :unlockedByTechnology("electronics") end \ No newline at end of file From 7e8ba99397943d632df107cdd6e4ec17965efc75 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 29 Dec 2025 16:31:44 +0100 Subject: [PATCH 065/111] Add raise_teleported flag to the teleport function calls --- lignumis/scripts/init.lua | 2 +- lignumis/scripts/to-nauvis.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lignumis/scripts/init.lua b/lignumis/scripts/init.lua index 694a4cc..2cc8a0b 100644 --- a/lignumis/scripts/init.lua +++ b/lignumis/scripts/init.lua @@ -15,7 +15,7 @@ local function init_player(event) if not player.character or not surface then return end - player.teleport(surface.find_non_colliding_position("character", { 0, 0 }, 0, 1), "lignumis") + player.teleport(surface.find_non_colliding_position("character", { 0, 0 }, 0, 1), "lignumis", true) local main_inventory = player.character.get_main_inventory() -- Add some starting items to player inventory diff --git a/lignumis/scripts/to-nauvis.lua b/lignumis/scripts/to-nauvis.lua index a3694fa..8e8d634 100644 --- a/lignumis/scripts/to-nauvis.lua +++ b/lignumis/scripts/to-nauvis.lua @@ -45,7 +45,7 @@ local function teleport_player(player) local nauvis = game.planets[storage.target_planet].surface if player.surface.name == "lignumis" then local position = nauvis.find_non_colliding_position("character", { 2, 2 }, 100, 1) or { 0, 0 } - player.teleport(position, storage.target_planet) + player.teleport(position, storage.target_planet, true) chart_starting_area(nauvis, player) end end From 9c1a51315e0e25a1e806bfa38e881f10999d7ea1 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 29 Dec 2025 17:58:27 +0100 Subject: [PATCH 066/111] 1.3.2 --- lignumis/changelog.txt | 9 +++++++++ lignumis/info.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 68e8de8..b803f78 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,13 @@ --------------------------------------------------------------------------------------------------- +Version: 1.3.2 +Date: 29.12.2025 + Changes: + - Add the deep miner to the quality assembler + - Any Planet Start: Planet discovery Nauvis requires wood and steam science packs + Bug Fixes: + - Set auto_recycle = false for the alternative green circuit recipe + - Add raise_teleported flag to the teleport function calls (required for OARC) +--------------------------------------------------------------------------------------------------- Version: 1.3.1 Date: 24.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 292519f..8dbf129 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.3.1", + "version": "1.3.2", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 278366a202c0ffbca41b94f79ba30c2996c5f82f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 00:47:48 +0100 Subject: [PATCH 067/111] Remove the number from the golden module --- lignumis/locale/en/strings.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 69ab41b..216eb72 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -85,7 +85,7 @@ wood-darts-magazine=Wood darts magazine basic-circuit-board=Basic circuit board crushed-gold-ore=Crushed gold ore steam-science-pack-spoiled=Science flask with water -gold-module-3=Golden module 3 +gold-module-3=Golden module [item-description] wooden-wall=Use wooden walls to protect your base from the locals and to reduce noise levels. From c1a2f4b4122064d2d9f7724ebc3e0fae45413d6b Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 01:55:12 +0100 Subject: [PATCH 068/111] Correct default import locations --- lignumis/prototypes/content/quality-assembler.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index a0c730a..f9e989a 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -95,6 +95,7 @@ data:extend({ fuel_category = "quality-catalyst", fuel_value = "2MJ", weight = 1000 / 50 * kg, + default_import_location = "lignumis" }, { type = "recipe", @@ -333,7 +334,7 @@ data:extend({ drop_sound = item_sounds.mechanical_large_inventory_move, place_result = name, stack_size = 20, - default_import_location = "nauvis", + default_import_location = "lignumis", weight = 200 * kg }, { @@ -393,7 +394,8 @@ data:extend({ drop_sound = item_sounds.module_inventory_move, stack_size = 50, weight = 20 * kg, - effect = { quality = 0.75, speed = -0.1 } + effect = { quality = 0.75, speed = -0.1 }, + default_import_location = "fulgora" }, { type = "recipe", From 829e32acd4ea3ef639653e2515990eb647daa1b8 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 13:31:30 +0100 Subject: [PATCH 069/111] Add circuit connectors for lumber mill and quality assembler --- lignumis/prototypes/content/lumber-mill.lua | 15 +++++++++++---- lignumis/prototypes/content/quality-assembler.lua | 11 +++++++++++ 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index 9ffcafc..d8900b7 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -59,6 +59,13 @@ data:extend({ energy_source = energy_source, energy_usage = "1MW", effect_receiver = { base_effect = { productivity = 0.5 } }, + circuit_wire_max_distance = assembling_machine_circuit_wire_max_distance, + circuit_connector = circuit_connector_definitions.create_vector(universal_connector_template, { + { variation = 30, main_offset = util.by_pixel(94, 112), shadow_offset = util.by_pixel(94, 120), show_shadow = true }, + { variation = 30, main_offset = util.by_pixel(94, 112), shadow_offset = util.by_pixel(94, 120), show_shadow = true }, + { variation = 30, main_offset = util.by_pixel(94, 112), shadow_offset = util.by_pixel(94, 120), show_shadow = true }, + { variation = 30, main_offset = util.by_pixel(94, 112), shadow_offset = util.by_pixel(94, 120), show_shadow = true }, + }), surface_conditions = { { property = has_oxygen and "oxygen" or "pressure", @@ -175,10 +182,10 @@ data:extend({ max_sounds_per_type = 2, sound = { filename = "__space-age__/sound/entity/foundry/foundry.ogg", volume = 0.6 }, sound_accents = { - { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-1.ogg", volume = 0.8, audible_distance_modifier = 0.5 }, frame = 26 }, - { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-fall.ogg", volume = 1.2, audible_distance_modifier = 0.5 }, frame = 42 }, - { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-2.ogg", volume = 0.8, audible_distance_modifier = 0.4 }, frame = 53 }, - { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-split.ogg", volume = 0.4, audible_distance_modifier = 0.3 }, frame = 62 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-1.ogg", volume = 0.8, audible_distance_modifier = 0.5 }, frame = 26 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-fall.ogg", volume = 1.2, audible_distance_modifier = 0.5 }, frame = 42 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-saw-2.ogg", volume = 0.8, audible_distance_modifier = 0.4 }, frame = 53 }, + { sound = { filename = Lignumis.sound .. "entity/lumber-mill/lumber-mill-split.ogg", volume = 0.4, audible_distance_modifier = 0.3 }, frame = 62 }, { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5), audible_distance_modifier = 0.3 }, frame = 14 }, { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5), audible_distance_modifier = 0.3 }, frame = 34 }, { sound = { variations = sound_variations(Lignumis.sound .. "entity/lumber-mill/lumber-mill-plank", 3, 0.5), audible_distance_modifier = 0.3 }, frame = 54 }, diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index f9e989a..a969b9a 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -147,6 +147,17 @@ data:extend({ }, energy_usage = "1MW", heating_energy = "200kW", + circuit_wire_max_distance = assembling_machine_circuit_wire_max_distance, + circuit_connector = circuit_connector_definitions.create_vector + ( + universal_connector_template, + { + { variation = 17, main_offset = util.by_pixel(-42, -9), shadow_offset = util.by_pixel(-33, -7), show_shadow = true }, + { variation = 17, main_offset = util.by_pixel(-42, -9), shadow_offset = util.by_pixel(-33, -7), show_shadow = true }, + { variation = 17, main_offset = util.by_pixel(-42, -9), shadow_offset = util.by_pixel(-33, -7), show_shadow = true }, + { variation = 17, main_offset = util.by_pixel(-42, -9), shadow_offset = util.by_pixel(-33, -7), show_shadow = true } + } + ), perceived_performance = { minimum = 0.25, performance_to_activity_rate = 0.25, maximum = 4 }, graphics_set = { animation = { From 6ddb7d2e27c9c2a7c648e4e855afe8a049d30672 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 19:23:28 +0100 Subject: [PATCH 070/111] Fix some possible errors with the wooden rocket silo --- lignumis/scripts/wooden-rocket-silo.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lignumis/scripts/wooden-rocket-silo.lua b/lignumis/scripts/wooden-rocket-silo.lua index 7d3795b..d24be2a 100644 --- a/lignumis/scripts/wooden-rocket-silo.lua +++ b/lignumis/scripts/wooden-rocket-silo.lua @@ -87,16 +87,17 @@ local function launch(event) if event.element.name ~= "provisional-rocket-silo-launch-button" then return end local player = game.get_player(event.player_index) local fake_silo = storage.rocket_silo_guis[player.index].fake_silo + if not fake_silo.valid then return end rocket_content = fake_silo.get_inventory(defines.inventory.chest).get_contents() for _, entry in pairs(storage.rocket_silos) do - if entry.fake_silo == fake_silo then + if entry.fake_silo == fake_silo and entry.real_silo.valid and entry.real_silo.rocket.valid then entry.player = event.player_index entry.rocket_content = rocket_content entry.cargo_pod = entry.real_silo.rocket.attached_cargo_pod fake_silo.destroy() entry.real_silo.launch_rocket() entry.cargo_pod.set_passenger(player) - break + return end end end From e7197e23b78aa71f3fa45da15214bf671b181e99 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 20:35:43 +0100 Subject: [PATCH 071/111] Fixes that remote view sets "nauvis visited" to true --- lignumis/scripts/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lignumis/scripts/init.lua b/lignumis/scripts/init.lua index 2cc8a0b..359e84f 100644 --- a/lignumis/scripts/init.lua +++ b/lignumis/scripts/init.lua @@ -80,11 +80,11 @@ Init.events[defines.events.on_player_changed_surface] = function(event) if player.controller_type ~= defines.controllers.character then return end - if player and player.surface.name == storage.target_planet then + if player and player.physical_surface.name == storage.target_planet then storage.nauvis_visited = true end - if player and player.surface.name ~= "lignumis" and player.force then + if player and player.physical_surface.name ~= "lignumis" and player.force then local automation = player.force.technologies["automation-science-pack"] if not automation.researched then automation.enabled = true From dc79de6e97bf7df3032ebb3fa64998fd54a8695a Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 20:36:33 +0100 Subject: [PATCH 072/111] Resets evolution on first visit of the orbited planet --- lignumis/scripts/init.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lignumis/scripts/init.lua b/lignumis/scripts/init.lua index 359e84f..92a8326 100644 --- a/lignumis/scripts/init.lua +++ b/lignumis/scripts/init.lua @@ -77,6 +77,7 @@ end -- Watch Nauvis being visited for the first time Init.events[defines.events.on_player_changed_surface] = function(event) local player = game.get_player(event.player_index) + local first_visit = storage.nauvis_visited == false if player.controller_type ~= defines.controllers.character then return end @@ -90,6 +91,9 @@ Init.events[defines.events.on_player_changed_surface] = function(event) automation.enabled = true automation.researched = true end + if first_visit then + game.forces.enemy.set_evolution_factor(0.0, storage.target_planet) + end end end From 81e41285b7e950f4d79bea4bfbfd282f33464989 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 20:53:05 +0100 Subject: [PATCH 073/111] Prevent mining and interacting with the wooden rocket silo after launch --- lignumis/scripts/wooden-rocket-silo.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lignumis/scripts/wooden-rocket-silo.lua b/lignumis/scripts/wooden-rocket-silo.lua index d24be2a..c4a0052 100644 --- a/lignumis/scripts/wooden-rocket-silo.lua +++ b/lignumis/scripts/wooden-rocket-silo.lua @@ -95,6 +95,9 @@ local function launch(event) entry.rocket_content = rocket_content entry.cargo_pod = entry.real_silo.rocket.attached_cargo_pod fake_silo.destroy() + entry.real_silo.minable = false + entry.real_silo.minable_flag = false + entry.real_silo.operable = false entry.real_silo.launch_rocket() entry.cargo_pod.set_passenger(player) return From 6ecf74110832df52c3aac14de9380bed4b5ce488 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 20:56:07 +0100 Subject: [PATCH 074/111] Prevent crash when the wooden rocket silo is destroyed before it explodes --- lignumis/scripts/to-nauvis.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/scripts/to-nauvis.lua b/lignumis/scripts/to-nauvis.lua index 8e8d634..cb54aa0 100644 --- a/lignumis/scripts/to-nauvis.lua +++ b/lignumis/scripts/to-nauvis.lua @@ -101,6 +101,7 @@ end local function explode_silo(silo) + if not silo.valid then return end silo.die() end From a7297fe91a7ab15ed44a01a1a0fb1a7c9ddf81dc Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 30 Dec 2025 21:02:47 +0100 Subject: [PATCH 075/111] 1.3.3 --- lignumis/changelog.txt | 13 +++++++++++++ lignumis/info.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index b803f78..914ee79 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,17 @@ --------------------------------------------------------------------------------------------------- +Version: 1.3.3 +Date: 30.12.2025 + Changes: + - Remove the number from the golden module + - Correct some default import locations + - Add circuit connectors for lumber mill and quality assembler + Bug Fixes: + - Fix some possible errors with the wooden rocket silo + - Fixes that remote view sets "nauvis visited" to true + - Resets evolution on first visit of the orbited planet + - Prevent mining and interacting with the wooden rocket silo after launch + - Prevent crash when the wooden rocket silo is destroyed before it explodes +--------------------------------------------------------------------------------------------------- Version: 1.3.2 Date: 29.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 8dbf129..6738a13 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.3.2", + "version": "1.3.3", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 6224583c0051e5488ddaef9e62b7890bf9f7a0ac Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 4 Jan 2026 01:08:35 +0100 Subject: [PATCH 076/111] Show filter icons on top of the steam inserters (thanks Talandar) --- lignumis/prototypes/content/steam-inserters.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lignumis/prototypes/content/steam-inserters.lua b/lignumis/prototypes/content/steam-inserters.lua index f326156..b88552b 100644 --- a/lignumis/prototypes/content/steam-inserters.lua +++ b/lignumis/prototypes/content/steam-inserters.lua @@ -34,6 +34,10 @@ inserter.energy_source = { } inserter.extension_speed = 0.035 inserter.rotation_speed = 0.0135 +inserter.icon_draw_specification = { + scale = 0.8, + render_layer = "entity-info-icon-above", +} local long_handed_inserter = table.deepcopy(data.raw["inserter"]["burner-long-handed-inserter"]) long_handed_inserter.name = "steam-long-handed-inserter" @@ -46,6 +50,10 @@ long_handed_inserter.minable.result = "steam-long-handed-inserter" long_handed_inserter.energy_source = inserter.energy_source long_handed_inserter.extension_speed = 0.04 long_handed_inserter.rotation_speed = 0.016 +long_handed_inserter.icon_draw_specification = { + scale = 0.8, + render_layer = "entity-info-icon-above", +} data:extend({ inserter, From c0f2fd6dd3bb3bd2c44a3c9325782b7dc0a7f363 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 4 Jan 2026 01:12:45 +0100 Subject: [PATCH 077/111] Allow flipping the desiccation furnace --- lignumis/prototypes/content/desiccation-furnace.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/prototypes/content/desiccation-furnace.lua b/lignumis/prototypes/content/desiccation-furnace.lua index d4bfb04..03862a5 100644 --- a/lignumis/prototypes/content/desiccation-furnace.lua +++ b/lignumis/prototypes/content/desiccation-furnace.lua @@ -22,6 +22,7 @@ furnace.fluid_boxes = { furnace.crafting_categories = { "desiccation" } furnace.minable.result = "desiccation-furnace" furnace.graphics_set.animation.layers[1].filename = Lignumis.graphics .. "entity/stone-furnace/stone-furnace.png" +furnace.forced_symmetry = "horizontal" furnace.fluid_boxes[1].pipe_covers.north.layers[1].filename = Lignumis.graphics .. "entity/gold-pipe/gold-pipe-cover-north.png" From a3a6d096f5f3163d120af864f04b071c99e9d735 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 4 Jan 2026 01:29:36 +0100 Subject: [PATCH 078/111] Allow circuit connections for the deep miner --- lignumis/prototypes/content/deep-miner.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lignumis/prototypes/content/deep-miner.lua b/lignumis/prototypes/content/deep-miner.lua index 8585062..8f9ddc3 100644 --- a/lignumis/prototypes/content/deep-miner.lua +++ b/lignumis/prototypes/content/deep-miner.lua @@ -64,6 +64,17 @@ data:extend({ }, energy_usage = "25MW", perceived_performance = { minimum = 0.25, performance_to_activity_rate = 0.25, maximum = 2 }, + circuit_wire_max_distance = assembling_machine_circuit_wire_max_distance + 3, + circuit_connector = circuit_connector_definitions.create_vector + ( + universal_connector_template, + { + { variation = 17, main_offset = util.by_pixel(-145, 3), shadow_offset = util.by_pixel(-136, 1), show_shadow = false }, + { variation = 17, main_offset = util.by_pixel(-145, 3), shadow_offset = util.by_pixel(-136, 1), show_shadow = false }, + { variation = 17, main_offset = util.by_pixel(-145, 3), shadow_offset = util.by_pixel(-136, 1), show_shadow = false }, + { variation = 17, main_offset = util.by_pixel(-145, 3), shadow_offset = util.by_pixel(-136, 1), show_shadow = false } + } + ), graphics_set = { animation = { layers = { From 9255ce7127f7ae7f28518ad582f4aeadbce021f9 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 4 Jan 2026 01:37:54 +0100 Subject: [PATCH 079/111] Remove alternative recipes from calculations for "total raw" --- .../prototypes/content/mid-game-recipes.lua | 71 ++++++++++--------- 1 file changed, 38 insertions(+), 33 deletions(-) diff --git a/lignumis/prototypes/content/mid-game-recipes.lua b/lignumis/prototypes/content/mid-game-recipes.lua index 6b3c7eb..aab6769 100644 --- a/lignumis/prototypes/content/mid-game-recipes.lua +++ b/lignumis/prototypes/content/mid-game-recipes.lua @@ -100,11 +100,11 @@ data:extend({ { type = "recipe", name = "plastic-from-cupriavidus-necator", - category = "organic-or-chemistry", icons = { { icon = "__base__/graphics/icons/plastic-bar.png" }, { icon = Lignumis.graphics .. "icons/cupriavidus-necator-1.png", scale = 0.25, shift = { 8, 8 } } }, + category = "organic-or-chemistry", energy_required = 12.8, enabled = false, auto_recycle = false, @@ -122,16 +122,17 @@ data:extend({ enabled = false, subgroup = "lignumis-bioprocessing", order = "0[lignumis]-d1[plastic]", - allow_productivity = true + allow_productivity = true, + allow_decomposition = false }, { type = "recipe", name = "plastic-from-dead-cupriavidus-necator", - category = "organic-or-chemistry", icons = { { icon = "__base__/graphics/icons/plastic-bar.png" }, { icon = Lignumis.graphics .. "icons/dead-cupriavidus-necator-1.png", scale = 0.25, shift = { 8, 8 } } }, + category = "organic-or-chemistry", energy_required = 12.8, enabled = false, auto_recycle = false, @@ -149,11 +150,16 @@ data:extend({ enabled = false, subgroup = "lignumis-bioprocessing", order = "0[lignumis]-d2[plastic]", - allow_productivity = true + allow_productivity = true, + allow_decomposition = false }, { type = "recipe", name = "low-density-structure-gold", + icons = { + { icon = "__base__/graphics/icons/low-density-structure.png" }, + { icon = Lignumis.graphics .. "icons/gold-plate.png", scale = 0.25, shift = { 8, 8 } } + }, category = "crafting", energy_required = 15, enabled = false, @@ -165,14 +171,15 @@ data:extend({ }, results = { { type = "item", name = "low-density-structure", amount = 2 } }, allow_productivity = true, - icons = { - { icon = "__base__/graphics/icons/low-density-structure.png" }, - { icon = Lignumis.graphics .. "icons/gold-plate.png", scale = 0.25, shift = { 8, 8 } } - } + allow_decomposition = false }, { type = "recipe", name = "nutrients-from-wood-pulp", + icons = { + { icon = "__space-age__/graphics/icons/nutrients.png" }, + { icon = "__base__/graphics/icons/wood.png", scale = 0.25, shift = { 8, 8 } } + }, category = "organic-or-chemistry", energy_required = 1, enabled = false, @@ -181,36 +188,33 @@ data:extend({ results = { { type = "item", name = "nutrients", amount = 5 } }, allow_productivity = true, subgroup = "lignumis-bioprocessing", - icons = { - { icon = "__space-age__/graphics/icons/nutrients.png" }, - { icon = "__base__/graphics/icons/wood.png", scale = 0.25, shift = { 8, 8 } } - }, order = "0[lignumis]-a[nutrients]", }, { type = "recipe", name = "rocket-fuel-from-wood-pulp-and-peat", - energy_required = 15, - enabled = false, - auto_recycle = false, - category = "crafting-with-fluid", - ingredients = - { - { type = "item", name = "peat", amount = 9 }, - { type = "fluid", name = "wood-pulp", amount = 45 } - }, - results = { { type = "item", name = "rocket-fuel", amount = 1 } }, - crafting_machine_tint = - { - primary = { r = 1.0, g = 0.7, b = 0.0, a = 1.000 }, - secondary = { r = 1.0, g = 0.7, b = 0.0, a = 1.000 }, - }, - allow_productivity = true, icons = { { icon = "__base__/graphics/icons/rocket-fuel.png" }, { icon = Lignumis.graphics .. "icons/peat.png", scale = 0.25, shift = { 8, 8 } }, { icon = Lignumis.graphics .. "icons/wood-pulp.png", scale = 0.25, shift = { 8, 8 } } }, + category = "crafting-with-fluid", + energy_required = 15, + enabled = false, + auto_recycle = false, + ingredients = +{ + { type = "item", name = "peat", amount = 9 }, + { type = "fluid", name = "wood-pulp", amount = 45 } + }, + results = { { type = "item", name = "rocket-fuel", amount = 1 } }, + crafting_machine_tint = +{ + primary = { r = 1.0, g = 0.7, b = 0.0, a = 1.000 }, + secondary = { r = 1.0, g = 0.7, b = 0.0, a = 1.000 }, + }, + allow_productivity = true, + allow_decomposition = false, subgroup = "lignumis-bioprocessing", order = "0[lignumis]-e[rocket-fuel]", } @@ -221,13 +225,17 @@ if settings.startup["lignumis-basic-circuit-board"].value then { type = "recipe", name = "processing-unit-gold", + icons = { + { icon = "__base__/graphics/icons/processing-unit.png" }, + { icon = Lignumis.graphics .. "icons/gold-cable.png", scale = 0.25, shift = { 8, 8 } } + }, category = "crafting-with-steam", additional_categories = { "electromagnetics" }, enabled = false, auto_recycle = false, energy_required = 10, ingredients = - { + { { type = "item", name = "basic-circuit-board", amount = 20 }, { type = "item", name = "gold-cable", amount = 8 }, { type = "item", name = "plastic-bar", amount = 3 }, @@ -235,10 +243,7 @@ if settings.startup["lignumis-basic-circuit-board"].value then }, results = { { type = "item", name = "processing-unit", amount = 1 } }, allow_productivity = true, - icons = { - { icon = "__base__/graphics/icons/processing-unit.png" }, - { icon = Lignumis.graphics .. "icons/gold-cable.png", scale = 0.25, shift = { 8, 8 } } - } + allow_decomposition = false } }) Technology:new("processing-unit"):addRecipe("processing-unit-gold") From 7d4cbf4ec2dc6314a2a7419ad502313c9c560019 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 4 Jan 2026 01:40:30 +0100 Subject: [PATCH 080/111] Add advanced-crafting to steam assembler --- lignumis/prototypes/content/steam-assembling-machine.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/prototypes/content/steam-assembling-machine.lua b/lignumis/prototypes/content/steam-assembling-machine.lua index 687ed02..e8138e4 100644 --- a/lignumis/prototypes/content/steam-assembling-machine.lua +++ b/lignumis/prototypes/content/steam-assembling-machine.lua @@ -18,6 +18,7 @@ gfx .. "steam-assembling-machine.png" assembling_machine.crafting_categories = { "basic-crafting", "crafting", + "advanced-crafting", "electronics", "pressing", "organic-or-assembling", From 8e4648ea2979374680a95df305e61d2360eb1694 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 4 Jan 2026 01:53:51 +0100 Subject: [PATCH 081/111] Show level 2 robot speed and damage technologies when 1 and 3 are researched --- lignumis/prototypes/integrations/vanilla.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 29fe4db..45dde80 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -208,6 +208,7 @@ robots_speed_technology_2.unit = { ingredients = { { "automation-science-pack", 1 }, { "logistic-science-pack", 1 } }, time = 30 } +robots_speed_technology_2.upgrade = false local robots_speed_technology_3 = data.raw.technology["worker-robots-speed-3"] robots_speed_technology_3.prerequisites = { "robotics", "chemical-science-pack" } @@ -243,6 +244,7 @@ weapon_speed_technology_1.unit.ingredients = table.deepcopy(physical_damage_tech local physical_damage_technology_2 = data.raw.technology["physical-projectile-damage-2"] physical_damage_technology_2.prerequisites = { "physical-projectile-damage-1", "steam-science-pack" } physical_damage_technology_2.unit.ingredients = { { "wood-science-pack", 1 }, { "steam-science-pack", 1 } } +physical_damage_technology_2.upgrade = false table.insert(physical_damage_technology_2.effects, { type = "turret-attack", turret_id = "basic-gun-turret", @@ -252,6 +254,7 @@ table.insert(physical_damage_technology_2.effects, { local weapon_speed_technology_2 = data.raw.technology["weapon-shooting-speed-2"] weapon_speed_technology_2.prerequisites = { "weapon-shooting-speed-1", "steam-science-pack" } weapon_speed_technology_2.unit.ingredients = table.deepcopy(physical_damage_technology_2.unit.ingredients) +weapon_speed_technology_2.upgrade = false local physical_damage_technology_3 = data.raw.technology["physical-projectile-damage-3"] physical_damage_technology_3.prerequisites = { "military-2", "logistic-science-pack" } From 563ef98bde2d36cd2923a2e91176d99a83d124bb Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 4 Jan 2026 02:00:59 +0100 Subject: [PATCH 082/111] Readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b58cbb3..e4b386a 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ This mod extends the early game of Space Age by putting you on the moon "Lignumi #### Streamers featuring Lignumis +[![Lignumis part 1 of 2 - Creator Constellations - Laurence Plays Factorio: Planetary Pioneers +](https://i.ytimg.com/vi/LhRrVx19Wm4/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDD4HV8lQTRi5cF-oZsjrXKSHuvTQ)](https://www.youtube.com/watch?v=LhRrVx19Wm4)[![Lignumis part 2 of 2- Creator Constellations - Laurence Plays Factorio: Planetary Pioneers](https://i.ytimg.com/vi/5iLz1Jxb5vs/hqdefault.jpg?sqp=-oaymwEcCNACELwBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDO8vfkUd4A-LAnhIgfUtwYVjWIrA)](https://www.youtube.com/watch?v=5iLz1Jxb5vs) [![S1-E01 - Lumber Support - Laurence Plays Factorio: Planetary Pioneers](https://i.ytimg.com/vi/1eH4oJtlBpE/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD6UdmD7HuhCdhQBCCSL38Ke_FpXg)](https://www.youtube.com/watch?v=1eH4oJtlBpE) [![S1-E01 - Lumber Support - Laurence Plays Factorio: Planetary Pioneers](https://i.ytimg.com/vi/TNR1-Z5XFxI/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAvatJCSqylrWAZQyTkcBW_lB82rA)](https://www.youtube.com/watch?v=TNR1-Z5XFxI) [![Factorio Multiplayer: Planetary Pioneers - Space Age - E01 - 02/06/25 - Laurence Streams](https://i.ytimg.com/vi/OMDpDhZdTmU/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLCVQhrlcmwsZbzRDNQo8vgMKtUHaA)](https://www.youtube.com/live/OMDpDhZdTmU?feature=shared&t=290&list=PLALTzJaRcgW97ItZgtZvkqFBcdVjKNVHz&index=2) [![Factorio Multiplayer: Planetary Pioneers - Space Age - E01.5 - 02/06/25 - Laurence Streams](https://i.ytimg.com/vi/d4n1H6Z4KPc/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLA5TNZBTs7GpUFdVB1CG1-hzYw0tw)](https://www.youtube.com/live/d4n1H6Z4KPc?list=PLALTzJaRcgW97ItZgtZvkqFBcdVjKNVHz&index=3) [![Factorio Multiplayer: Planetary Pioneers - Space Age - E02 - 09/06/25 - Laurence Streams](https://i.ytimg.com/vi/guWhjqPrVN0/hqdefault.jpg?sqp=-oaymwEbCKgBEF5IVfKriqkDDggBFQAAiEIYAXABwAEG&rs=AOn4CLAP1kKquScBtrf5w41Eaarp-y5UPA)](https://www.youtube.com/live/guWhjqPrVN0?list=PLALTzJaRcgW97ItZgtZvkqFBcdVjKNVHz&index=4&t=362) _________________ @@ -256,6 +258,6 @@ _________________ - Burner lamp -Talandar +[Talandar](https://mods.factorio.com/user/Talandar99) - Planet graphics \ No newline at end of file From 82ea32b7e214fb8d2ff2ed6fbbc069cd093a2a79 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 5 Jan 2026 12:49:53 +0100 Subject: [PATCH 083/111] Increase steam from moist-stromatolite-remnant a tiny bit --- lignumis/prototypes/content/gold/stromatolite.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/gold/stromatolite.lua b/lignumis/prototypes/content/gold/stromatolite.lua index 6d6cf85..f705b0c 100644 --- a/lignumis/prototypes/content/gold/stromatolite.lua +++ b/lignumis/prototypes/content/gold/stromatolite.lua @@ -249,7 +249,7 @@ local desiccation_recipe = { ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 10 } }, results = { { type = "item", name = "peat", amount = 1 }, - { type = "fluid", name = "steam", amount = 150, temperature = 165 } + { type = "fluid", name = "steam", amount = 180, temperature = 165 } }, enabled = false } From 6563753a8d7bd60d07624a6175a483b9decd1ea8 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 5 Jan 2026 14:56:23 +0100 Subject: [PATCH 084/111] Revisit noise values --- lignumis/locale/en/strings.cfg | 2 + .../content/burner-agricultural-tower.lua | 3 +- .../content/burner-assembling-machine.lua | 1 - lignumis/prototypes/content/deep-miner.lua | 3 +- lignumis/prototypes/content/lumber-mill.lua | 3 +- lignumis/prototypes/content/noise.lua | 169 ++++++++++++++---- .../prototypes/content/quality-assembler.lua | 2 +- .../content/steam-assembling-machine.lua | 1 - lignumis/prototypes/content/wood-lab.lua | 2 +- .../prototypes/content/wood-logistics.lua | 3 - .../prototypes/content/wooden-rocket-silo.lua | 2 - 11 files changed, 137 insertions(+), 54 deletions(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 216eb72..e0c568a 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -93,6 +93,8 @@ stone-wall=Better acoustic and physical protection than the wooden counterpart. gold-stromatolite-seed=Plant the seed to grow gold stromatolites. They house bacteria that enrich gold from the ground.\n__REMARK_COLOR_BEGIN__Expected yield:__REMARK_COLOR_END__ 1.5 [item=gold-ore]/m steam-science-pack-spoiled=Spoiled steam science pack. Put it in a furnace to bring it to the right temperature. gold-module-3=When you mastered quality assembling, this pristine module is unlocked, enabling you to craft the finest items available. +produces-noise=Produces __1__ noise/m +consumes-noise=Consumes __1__ noise/m [fluid-name] wood-pulp=Wood pulp diff --git a/lignumis/prototypes/content/burner-agricultural-tower.lua b/lignumis/prototypes/content/burner-agricultural-tower.lua index cb3fa2d..5bfaade 100644 --- a/lignumis/prototypes/content/burner-agricultural-tower.lua +++ b/lignumis/prototypes/content/burner-agricultural-tower.lua @@ -17,8 +17,7 @@ agricultural_tower.energy_source = { type = "burner", fuel_categories = { "chemical" }, effectivity = 1, - fuel_inventory_size = 1, - emissions_per_minute = { noise = 75 } + fuel_inventory_size = 1 } agricultural_tower.resistances = nil agricultural_tower.input_inventory_size = 1 diff --git a/lignumis/prototypes/content/burner-assembling-machine.lua b/lignumis/prototypes/content/burner-assembling-machine.lua index 0c46bad..71ee452 100644 --- a/lignumis/prototypes/content/burner-assembling-machine.lua +++ b/lignumis/prototypes/content/burner-assembling-machine.lua @@ -27,7 +27,6 @@ assembling_machine.energy_source = { fuel_categories = { "chemical" }, effectivity = 1, fuel_inventory_size = 1, - emissions_per_minute = { noise = 50, pollution = 6 }, smoke = { { name = "smoke", diff --git a/lignumis/prototypes/content/deep-miner.lua b/lignumis/prototypes/content/deep-miner.lua index 8f9ddc3..555ad96 100644 --- a/lignumis/prototypes/content/deep-miner.lua +++ b/lignumis/prototypes/content/deep-miner.lua @@ -59,8 +59,7 @@ data:extend({ resource_drain_rate_percent = 75, energy_source = { type = "electric", - usage_priority = "secondary-input", - emissions_per_minute = { noise = 2000 } + usage_priority = "secondary-input" }, energy_usage = "25MW", perceived_performance = { minimum = 0.25, performance_to_activity_rate = 0.25, maximum = 2 }, diff --git a/lignumis/prototypes/content/lumber-mill.lua b/lignumis/prototypes/content/lumber-mill.lua index d8900b7..f7cdd50 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -24,13 +24,12 @@ end local energy_source = electric_lumber_mill and { type = "electric", usage_priority = "secondary-input", - emissions_per_minute = { noise = 100 } } or { type = "burner", fuel_categories = { "chemical" }, effectivity = 1, fuel_inventory_size = 3, - emissions_per_minute = { pollution = 10, noise = 100 } + emissions_per_minute = { pollution = 10 } } data:extend({ diff --git a/lignumis/prototypes/content/noise.lua b/lignumis/prototypes/content/noise.lua index 0505138..48aa597 100644 --- a/lignumis/prototypes/content/noise.lua +++ b/lignumis/prototypes/content/noise.lua @@ -1,16 +1,33 @@ -- Entities added by Lignumis define noise emissions/absorption in their own file. +local function add_description(prototype, amount) + if prototype and not prototype.localised_description then + if amount > 0 then + prototype.localised_description = { "item-description.produces-noise", tostring(amount) } + else + prototype.localised_description = { "item-description.consumes-noise", tostring(amount * -1) } + end + end +end + + local function emit(type, name, amount) local entity = data.raw[type][name] - entity.energy_source = entity.energy_source or {} - entity.energy_source.emissions_per_minute = entity.energy_source.emissions_per_minute or {} - entity.energy_source.emissions_per_minute.noise = amount + if entity and entity.energy_source then + entity.energy_source.emissions_per_minute = entity.energy_source.emissions_per_minute or {} + entity.energy_source.emissions_per_minute.noise = amount + end end local function emit_constant(type, name, amount) local entity = data.raw[type][name] - entity.emissions_per_second = entity.emissions_per_second or {} - entity.emissions_per_second.noise = amount / 60 + local item = data.raw.item[name] + if entity then + entity.emissions_per_second = entity.emissions_per_second or {} + entity.emissions_per_second.noise = amount / 60 + add_description(entity, amount) + add_description(item, amount) + end end data:extend({ @@ -72,46 +89,120 @@ emit_constant("gate", "gate", -30) -- Buildings emit noise -emit("furnace", "stone-furnace", 10) -emit("furnace", "electric-furnace", 10) -emit("mining-drill", "burner-mining-drill", 50) -emit("mining-drill", "electric-mining-drill", 100) -emit("mining-drill", "big-mining-drill", 200) ---emit("mining-drill", "deep-miner", 2000) ---emit("agricultural-tower", "burner-agricultural-tower", 75) -emit("agricultural-tower", "agricultural-tower", 75) ---emit("assembling-machine", "burner-assembling-machine", 50) ---emit("assembling-machine", "steam-assembling-machine", 50) -emit("assembling-machine", "assembling-machine-1", 10) -emit("assembling-machine", "assembling-machine-2", 15) -emit("assembling-machine", "assembling-machine-3", 20) -emit("assembling-machine", "chemical-plant", 10) +-- Belts +emit_constant("transport-belt", "wood-transport-belt", 2) +emit_constant("transport-belt", "transport-belt", 2.5) +emit_constant("transport-belt", "fast-transport-belt", 3) +emit_constant("transport-belt", "express-transport-belt", 4) +emit_constant("transport-belt", "turbo-transport-belt", 6) +emit_constant("underground-belt", "wood-underground-belt", 4) +emit_constant("underground-belt", "underground-belt", 5) +emit_constant("underground-belt", "fast-underground-belt", 6) +emit_constant("underground-belt", "express-underground-belt", 8) +emit_constant("underground-belt", "turbo-underground-belt", 12) +emit_constant("splitter", "wood-splitter", 10) +emit_constant("splitter", "splitter", 12.5) +emit_constant("splitter", "fast-splitter", 15) +emit_constant("splitter", "express-splitter", 20) +emit_constant("splitter", "turbo-splitter", 30) + +-- Electricity emit("boiler", "boiler", 5) emit("generator", "steam-engine", 10) emit("boiler", "heat-exchanger", 1) emit("generator", "steam-turbine", 20) ---emit("rocket-silo", "provisional-rocket-silo", 10000) ---emit_constant("rocket-silo", "provisional-rocket-silo", 1000) -emit("rocket-silo", "rocket-silo", 10000) -emit_constant("rocket-silo", "rocket-silo", 1000) ---emit("lab", "wood-lab", 10) +emit("reactor", "nuclear-reactor", 20) +emit("fusion-generator", "fusion-generator", 50) +emit("fusion-reactor", "fusion-reactor", 50) +emit("reactor", "heating-tower", 10) + +-- Mining drills +emit("mining-drill", "burner-mining-drill", 50) +emit("mining-drill", "electric-mining-drill", 100) +emit("mining-drill", "big-mining-drill", 200) +emit("mining-drill", "deep-miner", 2000) + +-- Furnaces and assembling machines +emit("furnace", "stone-furnace", 20) +emit("furnace", "desiccation-furnace", 20) +emit("furnace", "electric-furnace", 20) +emit("assembling-machine", "foundry", 100) +emit("furnace", "recylcer", 40) +emit("agricultural-tower", "burner-agricultural-tower", 50) +emit("agricultural-tower", "agricultural-tower", 50) +emit("assembling-machine", "biochamber", 20) +emit("assembling-machine", "burner-assembling-machine", 40) +emit("assembling-machine", "steam-assembling-machine", 40) +emit("assembling-machine", "assembling-machine-1", 20) +emit("assembling-machine", "assembling-machine-2", 40) +emit("assembling-machine", "assembling-machine-3", 60) +emit("assembling-machine", "chemical-plant", 20) +emit("assembling-machine", "lumber-mill", 100) +emit("assembling-machine", "electromagnetic-plant", 75) +emit("lab", "wood-lab", 10) emit("lab", "lab", 5) emit("lab", "biolab", 20) +emit("assembling-machine", "quality-assembler", 60) + +-- Misc stuff +emit("rocket-silo", "provisional-rocket-silo", 10000) +emit_constant("rocket-silo", "provisional-rocket-silo", 1000) +emit("rocket-silo", "rocket-silo", 10000) +emit_constant("rocket-silo", "rocket-silo", 1000) emit("locomotive", "locomotive", 200) emit_constant("locomotive", "locomotive", 10) -emit_constant("transport-belt", "wood-transport-belt", 2) -emit_constant("transport-belt", "transport-belt", 3) -emit_constant("transport-belt", "fast-transport-belt", 4) -emit_constant("transport-belt", "express-transport-belt", 6) -emit_constant("transport-belt", "turbo-transport-belt", 8) -emit_constant("underground-belt", "wood-underground-belt", 7.5) -emit_constant("underground-belt", "underground-belt", 10) -emit_constant("underground-belt", "fast-underground-belt", 20) -emit_constant("underground-belt", "express-underground-belt", 30) -emit_constant("underground-belt", "turbo-underground-belt", 40) -emit_constant("splitter", "wood-splitter", 20) -emit_constant("splitter", "splitter", 30) -emit_constant("splitter", "fast-splitter", 40) -emit_constant("splitter", "express-splitter", 50) -emit_constant("splitter", "turbo-splitter", 60) \ No newline at end of file + +-- Mods + +-- Loaders +emit_constant("loader-1x1", "aai-wood-loader", 10) +emit_constant("loader-1x1", "aai-loader", 12.5) +emit_constant("loader-1x1", "aai-fast-loader", 15) +emit_constant("loader-1x1", "aai-express-loader", 20) +emit_constant("loader-1x1", "aai-turbo-loader", 30) + +-- AAI Industry +emit("burner-generator", "burner-turbine", 20) +emit("assembling-machine", "fuel-processor", 40) + +-- Canal excavator +emit("mining-drill", "canex-excavator", 200) + +-- Crushing Industry +emit("furnace", "burner-crusher", 100) +emit("furnace", "electric-crusher", 100) +emit("assembling-machine", "big-crusher", 200) + +-- Wooden Industry +emit("furnace", "brick-kiln", 20) +emit("furnace", "electric-kiln", 20) + +-- Advanced belts +emit_constant("transport-belt", "extreme-transport-belt", 8) +emit_constant("transport-belt", "ultimate-transport-belt", 10) +emit_constant("transport-belt", "high-speed-transport-belt", 12) +emit_constant("underground-belt", "extreme-underground-belt", 16) +emit_constant("underground-belt", "ultimate-underground-belt", 20) +emit_constant("underground-belt", "high-speed-underground-belt", 24) +emit_constant("splitter", "extreme-splitter", 40) +emit_constant("splitter", "ultimate-splitter", 50) +emit_constant("splitter", "high-speed-splitter", 60) +emit_constant("loader-1x1", "aai-extreme-loader", 40) +emit_constant("loader-1x1", "aai-ultimate-loader", 50) +emit_constant("loader-1x1", "aai-high-speed-loader", 60) + +-- Castra +emit_constant("transport-belt", "military-transport-belt", 4) +emit_constant("underground-belt", "military-underground-belt", 8) +emit_constant("splitter", "military-splitter", 20) +emit("assembling-machine", "forge", 80) +emit_constant("wall", "carbon-fiber-wall", -80) + +-- Arig +emit_constant("transport-belt", "planetaris-hyper-transport-belt", 7) +emit_constant("underground-belt", "planetaris-hyper-underground-belt", 14) +emit_constant("splitter", "planetaris-hyper-splitter", 35) + +-- Rubia +emit_constant("wall", "craptonite-wall", -60) \ No newline at end of file diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index a969b9a..8e73767 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -143,7 +143,7 @@ data:extend({ fuel_categories = { "quality-catalyst" }, effectivity = 1, fuel_inventory_size = 1, - emissions_per_minute = { noise = 100, pollution = 6 }, + emissions_per_minute = { pollution = 6 }, }, energy_usage = "1MW", heating_energy = "200kW", diff --git a/lignumis/prototypes/content/steam-assembling-machine.lua b/lignumis/prototypes/content/steam-assembling-machine.lua index e8138e4..5425ee6 100644 --- a/lignumis/prototypes/content/steam-assembling-machine.lua +++ b/lignumis/prototypes/content/steam-assembling-machine.lua @@ -33,7 +33,6 @@ assembling_machine.energy_source = { maximum_temperature = 165, scale_fluid_usage = true, effectivity = 1, - emissions_per_minute = { noise = 50 }, fluid_box = { filter = "steam", production_type = "input", diff --git a/lignumis/prototypes/content/wood-lab.lua b/lignumis/prototypes/content/wood-lab.lua index 2010910..f7855ea 100644 --- a/lignumis/prototypes/content/wood-lab.lua +++ b/lignumis/prototypes/content/wood-lab.lua @@ -105,7 +105,7 @@ data:extend({ fuel_categories = { "chemical" }, effectivity = 1, fuel_inventory_size = 1, - emissions_per_minute = { pollution = 12, noise = 10 }, + emissions_per_minute = { pollution = 12 }, light_flicker = { color = { 0, 0, 0 } }, smoke = { { diff --git a/lignumis/prototypes/content/wood-logistics.lua b/lignumis/prototypes/content/wood-logistics.lua index 0e69379..5b3b425 100644 --- a/lignumis/prototypes/content/wood-logistics.lua +++ b/lignumis/prototypes/content/wood-logistics.lua @@ -46,7 +46,6 @@ data:extend({ percent = 90 } }, - emissions_per_second = { noise = 2 / 60 }, collision_box = { { -0.4, -0.4 }, { 0.4, 0.4 } }, selection_box = { { -0.5, -0.5 }, { 0.5, 0.5 } }, damaged_trigger_effect = hit_effects.entity(), @@ -127,7 +126,6 @@ data:extend({ percent = 30 } }, - emissions_per_second = { noise = 7.5 / 60 }, collision_box = { { -0.4, -0.4 }, { 0.4, 0.4 } }, selection_box = { { -0.5, -0.5 }, { 0.5, 0.5 } }, damaged_trigger_effect = hit_effects.entity(), @@ -239,7 +237,6 @@ data:extend({ percent = 60 } }, - emissions_per_second = { noise = 20 / 60 }, collision_box = { { -0.9, -0.4 }, { 0.9, 0.4 } }, selection_box = { { -0.9, -0.5 }, { 0.9, 0.5 } }, damaged_trigger_effect = hit_effects.entity(), diff --git a/lignumis/prototypes/content/wooden-rocket-silo.lua b/lignumis/prototypes/content/wooden-rocket-silo.lua index f4ddba2..99d8454 100644 --- a/lignumis/prototypes/content/wooden-rocket-silo.lua +++ b/lignumis/prototypes/content/wooden-rocket-silo.lua @@ -15,7 +15,6 @@ silo.energy_source = { fuel_categories = { "chemical" }, effectivity = 1, fuel_inventory_size = 1, - emissions_per_minute = { noise = 10000 }, smoke = { { name = "smoke", @@ -27,7 +26,6 @@ silo.energy_source = { } } } -silo.emissions_per_second = { noise = 1000 / 60 } silo.energy_usage = "1MW" silo.rocket_entity = "provisional-rocket" silo.fixed_recipe = "provisional-rocket-part" From 8a9b36edd2a2e7ded5ecb0132aa41d1692bb26c7 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 5 Jan 2026 14:58:50 +0100 Subject: [PATCH 085/111] 1.3.4 --- lignumis/changelog.txt | 13 +++++++++++++ lignumis/info.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 914ee79..6578060 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,17 @@ --------------------------------------------------------------------------------------------------- +Version: 1.3.4 +Date: 05.01.2025 + Changes: + - Allow flipping the desiccation furnace + - Allow circuit connections for the deep miner + - Add advanced-crafting to steam assembler + - Increase steam from moist-stromatolite-remnant a tiny bit (150 to 180) + - Revisit noise values including many mod entities + Bug Fixes: + - Show filter icons on top of the steam inserters (thanks Talandar) + - Remove alternative recipes from calculations for "total raw" + - Show level 2 robot speed and damage technologies when 1 and 3 are researched +--------------------------------------------------------------------------------------------------- Version: 1.3.3 Date: 30.12.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 6738a13..f504af4 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.3.3", + "version": "1.3.4", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 55e2b337b89223407a97224529701e0dce3e854c Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 5 Jan 2026 23:43:55 +0100 Subject: [PATCH 086/111] Use a more generic way to set graphics filenames --- .../content/burner-long-handed-inserter.lua | 18 +++++++++------- lignumis/prototypes/integrations/vanilla.lua | 21 ++++++++++--------- 2 files changed, 21 insertions(+), 18 deletions(-) diff --git a/lignumis/prototypes/content/burner-long-handed-inserter.lua b/lignumis/prototypes/content/burner-long-handed-inserter.lua index f3bc55e..9cfa841 100644 --- a/lignumis/prototypes/content/burner-long-handed-inserter.lua +++ b/lignumis/prototypes/content/burner-long-handed-inserter.lua @@ -1,4 +1,5 @@ local item_sounds = require("__base__.prototypes.item_sounds") +local Entity = require("__cf-lib__/data/Entity") local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value local gfx = Lignumis.graphics .. "entity/burner-long-handed-inserter/" @@ -10,10 +11,6 @@ long_handed_inserter.minable.result = "burner-long-handed-inserter" long_handed_inserter.next_upgrade = "long-handed-inserter" long_handed_inserter.corpse = "burner-long-handed-inserter-remnants" long_handed_inserter.resistances = nil -long_handed_inserter.hand_base_picture.filename = gfx .. "burner-long-handed-inserter-hand-base.png" -long_handed_inserter.hand_closed_picture.filename = gfx .. "burner-long-handed-inserter-hand-closed.png" -long_handed_inserter.hand_open_picture.filename = gfx .. "burner-long-handed-inserter-hand-open.png" -long_handed_inserter.platform_picture.sheet.filename = gfx .. "burner-long-handed-inserter-platform.png" long_handed_inserter.energy_per_movement = "70kJ" long_handed_inserter.energy_per_rotation = "70kJ" long_handed_inserter.energy_source = { @@ -35,13 +32,18 @@ long_handed_inserter.energy_source = { long_handed_inserter.extension_speed = 0.035 long_handed_inserter.rotation_speed = 0.014 +Entity.setFilename(long_handed_inserter.hand_base_picture, gfx .. "burner-long-handed-inserter-hand-base.png") +Entity.setFilename(long_handed_inserter.hand_closed_picture, gfx .. "burner-long-handed-inserter-hand-closed.png") +Entity.setFilename(long_handed_inserter.hand_open_picture, gfx .. "burner-long-handed-inserter-hand-open.png") +Entity.setFilename(long_handed_inserter.platform_picture, gfx .. "burner-long-handed-inserter-platform.png") + local remnants = table.deepcopy(data.raw["corpse"]["long-handed-inserter-remnants"]) remnants.name = "burner-long-handed-inserter-remnants" remnants.icon = Lignumis.graphics .. "icons/burner-long-handed-inserter.png" -remnants.animation[1].filename = gfx .. "burner-long-handed-inserter-remnants.png" -remnants.animation[2].filename = gfx .. "burner-long-handed-inserter-remnants.png" -remnants.animation[3].filename = gfx .. "burner-long-handed-inserter-remnants.png" -remnants.animation[4].filename = gfx .. "burner-long-handed-inserter-remnants.png" +Entity.setFilename(remnants.animation[1], gfx .. "burner-long-handed-inserter-remnants.png") +Entity.setFilename(remnants.animation[2], gfx .. "burner-long-handed-inserter-remnants.png") +Entity.setFilename(remnants.animation[3], gfx .. "burner-long-handed-inserter-remnants.png") +Entity.setFilename(remnants.animation[4], gfx .. "burner-long-handed-inserter-remnants.png") remnants.order = "a-c-0" data:extend({ diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 45dde80..d8da7a1 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -1,6 +1,7 @@ local Technology = require("__cf-lib__/data/Technology") local Recipe = require("__cf-lib__/data/Recipe") local Item = require("__cf-lib__/data/Item") +local Entity = require("__cf-lib__/data/Entity") local basic_circuit_board = settings.startup["lignumis-basic-circuit-board"].value @@ -12,10 +13,10 @@ drill.resource_searching_radius = 1.99 drill.icon = Lignumis.graphics .. "icons/burner-mining-drill.png" drill.impact_category = "wood" drill.radius_visualisation_picture = table.deepcopy(data.raw["mining-drill"]["electric-mining-drill"].radius_visualisation_picture) -drill_animation.north.layers[1].filename = Lignumis.graphics .. "entity/burner-mining-drill/burner-mining-drill-N.png" -drill_animation.east.layers[1].filename = Lignumis.graphics .. "entity/burner-mining-drill/burner-mining-drill-E.png" -drill_animation.south.layers[1].filename = Lignumis.graphics .. "entity/burner-mining-drill/burner-mining-drill-S.png" -drill_animation.west.layers[1].filename = Lignumis.graphics .. "entity/burner-mining-drill/burner-mining-drill-W.png" +Entity.setFilename(drill_animation.north, Lignumis.graphics .. "entity/burner-mining-drill/burner-mining-drill-N.png") +Entity.setFilename(drill_animation.east, Lignumis.graphics .. "entity/burner-mining-drill/burner-mining-drill-E.png") +Entity.setFilename(drill_animation.south, Lignumis.graphics .. "entity/burner-mining-drill/burner-mining-drill-S.png") +Entity.setFilename(drill_animation.west, Lignumis.graphics .. "entity/burner-mining-drill/burner-mining-drill-W.png") local drill_item = data.raw["item"]["burner-mining-drill"] drill_item.icon = Lignumis.graphics .. "icons/burner-mining-drill.png" @@ -35,10 +36,10 @@ drill_recipe.ingredients = { local burner_inserter = data.raw["inserter"]["burner-inserter"] burner_inserter.icon = Lignumis.graphics .. "icons/burner-inserter.png" -burner_inserter.hand_base_picture.filename = Lignumis.graphics .. "entity/burner-inserter/burner-inserter-hand-base.png" -burner_inserter.hand_closed_picture.filename = Lignumis.graphics .. "entity/burner-inserter/burner-inserter-hand-closed.png" -burner_inserter.hand_open_picture.filename = Lignumis.graphics .. "entity/burner-inserter/burner-inserter-hand-open.png" -burner_inserter.platform_picture.sheet.filename = Lignumis.graphics .. "entity/burner-inserter/burner-inserter-platform.png" +Entity.setFilename(burner_inserter.hand_base_picture, Lignumis.graphics .. "entity/burner-inserter/burner-inserter-hand-base.png") +Entity.setFilename(burner_inserter.hand_closed_picture, Lignumis.graphics .. "entity/burner-inserter/burner-inserter-hand-closed.png") +Entity.setFilename(burner_inserter.hand_open_picture, Lignumis.graphics .. "entity/burner-inserter/burner-inserter-hand-open.png") +Entity.setFilename(burner_inserter.platform_picture, Lignumis.graphics .. "entity/burner-inserter/burner-inserter-platform.png") burner_inserter.energy_source.initial_fuel_percent = 0.15 data.raw.item["burner-inserter"].icon = Lignumis.graphics .. "icons/burner-inserter.png" @@ -57,11 +58,11 @@ end local stone_furnace = data.raw["furnace"]["stone-furnace"] stone_furnace.icon = Lignumis.graphics .. "icons/stone-furnace.png" -stone_furnace.graphics_set.animation.layers[1].filename = Lignumis.graphics .. "entity/stone-furnace/stone-furnace.png" +Entity.setFilename(stone_furnace.graphics_set.animation, Lignumis.graphics .. "entity/stone-furnace/stone-furnace.png") local stone_furnace_remnants = data.raw["corpse"]["stone-furnace-remnants"] stone_furnace_remnants.icon = Lignumis.graphics .. "icons/stone-furnace.png" -stone_furnace_remnants.animation[1].filename = Lignumis.graphics .. "entity/stone-furnace/stone-furnace-remnants.png" +Entity.setFilename(stone_furnace_remnants.animation[1], Lignumis.graphics .. "entity/stone-furnace/stone-furnace-remnants.png") -- Lab From dfc5fa5fc81c3758f53148f3152cb516769cea25 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 6 Jan 2026 00:34:35 +0100 Subject: [PATCH 087/111] DC: Force setting astroponics-garden-speed --- lignumis-cf/settings.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lignumis-cf/settings.lua b/lignumis-cf/settings.lua index c5c2e0e..d54b7f5 100644 --- a/lignumis-cf/settings.lua +++ b/lignumis-cf/settings.lua @@ -28,4 +28,7 @@ forceDefault("wood-walls-fuelvalue") forceDefault("wood-walls-wall-cost") forceDefault("wood-walls-wall-output") forceDefault("wood-walls-hp") -forceDefault("wood-walls-disable-wall") \ No newline at end of file +forceDefault("wood-walls-disable-wall") + +-- Astroponics +forceDefault("astroponics-garden-speed") \ No newline at end of file From 296aadd24616ef7ecc641ace8bec639a16a41bea Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 6 Jan 2026 00:38:44 +0100 Subject: [PATCH 088/111] Muluna: Increase wood per tree from 4 to 5 --- lignumis/info.json | 1 + lignumis/prototypes/compatibility/data.lua | 3 ++- lignumis/prototypes/compatibility/muluna.lua | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 lignumis/prototypes/compatibility/muluna.lua diff --git a/lignumis/info.json b/lignumis/info.json index f504af4..3e0c869 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -37,6 +37,7 @@ "(?) gleba-reborn", "(?) Krastorio2-spaced-out", "(?) metal-and-stars", + "(?) planet-muluna", "(?) secretas", "(?) Wood_Gasification_updated", "! apm_power_ldinc", diff --git a/lignumis/prototypes/compatibility/data.lua b/lignumis/prototypes/compatibility/data.lua index 0ed7173..e63117d 100644 --- a/lignumis/prototypes/compatibility/data.lua +++ b/lignumis/prototypes/compatibility/data.lua @@ -8,4 +8,5 @@ require("lane-splitters") require("wood-industry") require("crushing-industry") require("canal-excavator") -require("diversitree") \ No newline at end of file +require("diversitree") +require("muluna") \ No newline at end of file diff --git a/lignumis/prototypes/compatibility/muluna.lua b/lignumis/prototypes/compatibility/muluna.lua new file mode 100644 index 0000000..1fdc7ce --- /dev/null +++ b/lignumis/prototypes/compatibility/muluna.lua @@ -0,0 +1,5 @@ +local Recipe = require("__cf-lib__/data/Recipe") + +if not mods["planet-muluna"] then return end + +Recipe:new("muluna-tree-crushing"):replaceResult("wood", 5) \ No newline at end of file From c5db6f07531bfeb1577ed763a94d2ee86a80508b Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 6 Jan 2026 01:02:02 +0100 Subject: [PATCH 089/111] Add more wood setting --- lignumis/locale/en/strings.cfg | 9 ++-- .../prototypes/integrations/astroponics.lua | 2 + .../prototypes/integrations/more-wood.lua | 43 +++++++++++++++++++ lignumis/prototypes/integrations/updates.lua | 1 + lignumis/prototypes/integrations/vanilla.lua | 5 ++- lignumis/settings.lua | 39 ++++++++++------- lignumis/settings/astroponics.lua | 8 ++++ lignumis/settings/updates.lua | 3 +- 8 files changed, 87 insertions(+), 23 deletions(-) create mode 100644 lignumis/prototypes/integrations/more-wood.lua create mode 100644 lignumis/settings/astroponics.lua diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index e0c568a..b0940aa 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -194,17 +194,18 @@ lignumis-belt-progression=[color=orange][font=heading-2]Overhaul[/font][/color] lignumis-inserter-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=burner-inserter] Enable telescopic inserter recipes lignumis-ammo-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=wood-darts-magazine] Enable telescopic ammo recipes lignumis-technology-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=wood-science-pack] Enable progressive technologies -lignumis-basic-circuit-board=[color=gray][font=heading-2]Deprecated (please enable)[/font] Enable basic circuit board[/color] lignumis-circuit-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=basic-circuit-board] Enable telescopic circuit recipes lignumis-assembler-progression=[color=orange][font=heading-2]Overhaul[/font][/color] [item=burner-assembling-machine] Enable telescopic assembler recipes -lignumis-lumber-mill-more-recipes=[color=green][font=heading-2]Easy[/font][/color] Enable more recipes for the lumber mill lignumis-fulgora-wood=[color=orange][font=heading-2]Overhaul[/font][/color] [planet=fulgora] Add wood to Fulgora -lignumis-early-robots=[color=green][font=heading-2]Easy[/font][/color] Even earlier personal robots lignumis-lab=[color=orange][font=heading-2]Overhaul[/font][/color] [item=lab] Lab requires wooden belts +lignumis-more-wood=[color=green][font=heading-2]Easy[/font][/color] Increase wood from all sources +lignumis-lumber-mill-more-recipes=[color=green][font=heading-2]Easy[/font][/color] Enable more recipes for the lumber mill +lignumis-early-robots=[color=green][font=heading-2]Easy[/font][/color] Even earlier personal robots lignumis-double-rocket=[color=green][font=heading-2]Easy[/font][/color] Double provisional rocket cargo capacity -lignumis-sciences-spoil=[color=red][font=heading-2]Hard[/font][/color] Lignumis science packs spoil lignumis-infinite-astroponics-productivity-research=[color=green][font=heading-2]Easy[/font][/color] Infinite productivity research for Astroponics lignumis-electric-lumber-mill=[color=green][font=heading-2]Easy[/font][/color] Electric lumber mill +lignumis-sciences-spoil=[color=red][font=heading-2]Hard[/font][/color] Lignumis science packs spoil +lignumis-basic-circuit-board=[color=gray][font=heading-2]Deprecated (please enable)[/font] Enable basic circuit board[/color] [mod-setting-description] lignumis-belt-progression=Yellow belts will require wood belts to craft. diff --git a/lignumis/prototypes/integrations/astroponics.lua b/lignumis/prototypes/integrations/astroponics.lua index bee736e..df6f485 100644 --- a/lignumis/prototypes/integrations/astroponics.lua +++ b/lignumis/prototypes/integrations/astroponics.lua @@ -1,5 +1,7 @@ if not mods["astroponics"] then return end +-- Astroponics productivity research + local infinite = settings.startup["lignumis-infinite-astroponics-productivity-research"].value local base_levels = { diff --git a/lignumis/prototypes/integrations/more-wood.lua b/lignumis/prototypes/integrations/more-wood.lua new file mode 100644 index 0000000..102903a --- /dev/null +++ b/lignumis/prototypes/integrations/more-wood.lua @@ -0,0 +1,43 @@ +local Recipe = require("__cf-lib__/data/Recipe") + +if not settings.startup["lignumis-more-wood"].value then return end + +if mods["astroponics"] then + Recipe:new("tree-astroponics"):replaceResult("wood", 10) +end + +if mods["planet-muluna"] then + Recipe:new("muluna-tree-crushing"):replaceResult("wood", 10) +end + +if mods["cerys-lunaponics"] then + Recipe:new("cerys-crude-lunaponics"):replaceResult("wood", 8) +end + +if mods["fulgora-coralmium-agriculture"] then + Recipe:new("synthetic-wood"):replaceResult("wood", 6) +end + +if mods["gleba-water-cane"] or mods["wayward-seas"] then + Recipe:new("water-cane-separation"):replaceResult("wood", 2) +end + +if mods["aquilo-seabloom-algaculture"] then + Recipe:new("seaweed-blanching"):replaceResult("wood", 10) +end + +if mods["vulcanus-sulfuric-bacteria"] then + Recipe:new("sulfuric-bacteria-cultivation"):replaceResult("sulfuric-bacteria", 8) +end + +if mods["moshine-solaponics"] then + Recipe:new("tree-solaponics"):replaceResult("wood", 16) +end + +if mods["planetaris-arig"] then + Recipe:new("planetaris-cactus-wood"):replaceResult("wood", 8) +end + +if mods["pelagos"] then + data.raw.plant["coconut-palm"].minable.results[2].amount = 10 +end \ No newline at end of file diff --git a/lignumis/prototypes/integrations/updates.lua b/lignumis/prototypes/integrations/updates.lua index b8f72cc..a21b359 100644 --- a/lignumis/prototypes/integrations/updates.lua +++ b/lignumis/prototypes/integrations/updates.lua @@ -1,2 +1,3 @@ +require("more-wood") require("vanilla-updates") require("astroponics-updates") \ No newline at end of file diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index d8da7a1..ee52fac 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -98,6 +98,7 @@ local wood_processing = data.raw.recipe["wood-processing"] wood_processing.ingredients[1].amount = 1 wood_processing.icon = data.raw.item["tree-seed"].icon PlanetsLib.relax_surface_conditions(wood_processing, {property = "pressure", min = 900}) +local wood_multiplier = settings.startup["lignumis-more-wood"].value and 2 or 1 for _, tree in pairs(data.raw.tree) do local function isWoodResult(result) @@ -110,7 +111,7 @@ for _, tree in pairs(data.raw.tree) do if not isRegularTree then goto continue end tree.minable.result = nil tree.minable.count = nil - local woodResult = { type = "item", name = "wood", amount = nil, amount_min = 2, amount_max = 8 } + local woodResult = { type = "item", name = "wood", amount = nil, amount_min = 4 * wood_multiplier, amount_max = 6 * wood_multiplier } if minable.results and #woodResults > 0 then table.assign(woodResults[1], woodResult) woodResults[1].amount = nil @@ -122,7 +123,7 @@ end local tree_plant = data.raw.plant["tree-plant"] tree_plant.growth_ticks = 5 * minute -tree_plant.minable.results = { { type = "item", name = "wood", amount = 5 } } +tree_plant.minable.results = { { type = "item", name = "wood", amount = 5 * wood_multiplier } } tree_plant.minable.count = nil PlanetsLib.relax_surface_conditions(tree_plant, {property = "pressure", min = 900}) table.insert(tree_plant.autoplace.tile_restriction, "natural-gold-soil") diff --git a/lignumis/settings.lua b/lignumis/settings.lua index 985783f..87f9608 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -7,105 +7,112 @@ data:extend({ name = "lignumis-restrict-sciences", setting_type = "startup", default_value = true, - order = "a" + order = "a[general]-a" }, { type = "bool-setting", name = "lignumis-circuit-progression", setting_type = "startup", default_value = true, - order = "b" + order = "b[overhaul]-a" }, { type = "bool-setting", name = "lignumis-belt-progression", setting_type = "startup", default_value = false, - order = "c" + order = "b[overhaul]-b" }, { type = "bool-setting", name = "lignumis-inserter-progression", setting_type = "startup", default_value = false, - order = "d" + order = "b[overhaul]-c" }, { type = "bool-setting", name = "lignumis-ammo-progression", setting_type = "startup", default_value = false, - order = "e" + order = "b[overhaul]-d" }, { type = "bool-setting", name = "lignumis-assembler-progression", setting_type = "startup", default_value = false, - order = "f" + order = "b[overhaul]-e" }, { type = "bool-setting", name = "lignumis-technology-progression", setting_type = "startup", default_value = false, - order = "g" + order = "b[overhaul]-f" }, { type = "bool-setting", name = "lignumis-lab", setting_type = "startup", default_value = false, - order = "h" + order = "b[overhaul]-g" }, { type = "bool-setting", name = "lignumis-fulgora-wood", setting_type = "startup", default_value = false, - order = "i" + order = "b[overhaul]-h" + }, + { + type = "bool-setting", + name = "lignumis-more-wood", + setting_type = "startup", + default_value = false, + order = "c[easy]-a" }, { type = "bool-setting", name = "lignumis-lumber-mill-more-recipes", setting_type = "startup", default_value = false, - order = "j" + order = "c[easy]-b" }, { type = "bool-setting", name = "lignumis-early-robots", setting_type = "startup", default_value = false, - order = "k" + order = "c[easy]-c" }, { type = "bool-setting", name = "lignumis-double-rocket", setting_type = "startup", default_value = false, - order = "l" + order = "c[easy]-d" }, { type = "bool-setting", name = "lignumis-electric-lumber-mill", setting_type = "startup", default_value = false, - order = "m" + order = "c[easy]-e" }, { type = "bool-setting", name = "lignumis-sciences-spoil", setting_type = "startup", default_value = false, - order = "n" + order = "d[hard]-a" }, { type = "bool-setting", name = "lignumis-basic-circuit-board", setting_type = "startup", default_value = true, - order = "z" + order = "z[deprecated]-a" }, { type = "string-setting", @@ -124,7 +131,7 @@ if mods["astroponics"] then name = "lignumis-infinite-astroponics-productivity-research", setting_type = "startup", default_value = false, - order = "n" + order = "c[easy]-z[mods]-a" } }) end diff --git a/lignumis/settings/astroponics.lua b/lignumis/settings/astroponics.lua new file mode 100644 index 0000000..d14426e --- /dev/null +++ b/lignumis/settings/astroponics.lua @@ -0,0 +1,8 @@ +if not mods["astroponics"] then + return +end + +local Settings = require("__cf-lib__/settings/Settings") +local force = Settings.force + +force("astroponics-more-wood", false) \ No newline at end of file diff --git a/lignumis/settings/updates.lua b/lignumis/settings/updates.lua index 37ac7b9..2cd9a36 100644 --- a/lignumis/settings/updates.lua +++ b/lignumis/settings/updates.lua @@ -1,2 +1,3 @@ require("wood-logistics") -require("wood-military") \ No newline at end of file +require("wood-military") +require("astroponics") \ No newline at end of file From da3ef5b0e276685af00a6402002bd6171fc174ae Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 21:00:00 +0100 Subject: [PATCH 090/111] Hide provisional-rocket-silo-ready in Factoriopedia --- lignumis/prototypes/content/wooden-rocket-silo.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/prototypes/content/wooden-rocket-silo.lua b/lignumis/prototypes/content/wooden-rocket-silo.lua index 99d8454..0ce24fd 100644 --- a/lignumis/prototypes/content/wooden-rocket-silo.lua +++ b/lignumis/prototypes/content/wooden-rocket-silo.lua @@ -137,6 +137,7 @@ local silo_ready = { collision_mask = { layers = {} }, collision_box = table.deepcopy(silo.collision_box), selection_box = table.deepcopy(silo.selection_box), + hidden_in_factoriopedia = true } local silo_ready_item = table.deepcopy(data.raw["item"]["rocket-silo"]) From 43fac63b021bfc667ad4f0a629a8210c08415bd0 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 21:37:35 +0100 Subject: [PATCH 091/111] Add tips and tricks pages --- lignumis/data.lua | 3 +- lignumis/locale/en/strings.cfg | 12 ++ .../{ => prototypes}/menu-simulations.lua | 0 lignumis/prototypes/tips-and-tricks.lua | 134 ++++++++++++++++++ 4 files changed, 148 insertions(+), 1 deletion(-) rename lignumis/{ => prototypes}/menu-simulations.lua (100%) create mode 100644 lignumis/prototypes/tips-and-tricks.lua diff --git a/lignumis/data.lua b/lignumis/data.lua index eca0755..443e436 100644 --- a/lignumis/data.lua +++ b/lignumis/data.lua @@ -39,7 +39,8 @@ end require("__cf-lib__/util") require("logo") -require("menu-simulations") +require("prototypes/menu-simulations") +require("prototypes/tips-and-tricks") require("prototypes/content/data") require("prototypes/integrations/data") require("prototypes/compatibility/data") \ No newline at end of file diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index b0940aa..88a527c 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -243,3 +243,15 @@ provisional-rocket-silo-button=Escape to __1__ provisional-rocket-silo-button-tooltip-inventory=Your personal inventory must be empty! provisional-rocket-silo-button-tooltip-target=You don't know yet where to go! provisional-rocket-silo-description=Fill the rocket inventory and launch the rocket to escape to __1__.\nBe sure to take material to jumpstart your iron, copper and wood production. + +[tips-and-tricks-item-name] +lignumis-briefing=Lignumis briefing +lignumis-burner-agriculture=Burner agriculture +lignumis-noise=Noise pollution +lignumis-escaping=Escaping Lignumis + +[tips-and-tricks-item-description] +lignumis-briefing=[planet=lignumis] is a moon of [planet=nauvis] that you must escape to in order to get access to more advanced technologies. The main resources are [item=wood], [item=gold-ore], [item=peat] and [item=stone]. The moon is lacking iron and copper and therefore your possibilities are very limited with the seemingly not so valuable [item=gold-ore] as the only available metal. Electricity is something not discovered until after you escaped.\n\n[img=utility/warning_icon] Lignumis has some impact on the rest of the game. Have a look at the mod settings to change them to match your taste. Or install the Director's Cut from the mod portal for the full experience. +lignumis-burner-agriculture=Feeding agricultural towers both with seeds and fuel requires trickier solutions compared to the more advanced electrical counterpart. Due to an engine limitation, inserters will keep grabbing seeds while ignoring the fuel if it is on the wrong side of the belt. Use circuits or multiple inserters to prevent these kinds of problems altogether. +lignumis-noise=The natives on [planet=lignumis] are sensitive to [img=airborne-pollutant/noise] loud noises. Anything mechanical created by you is potentially quite loud. Keep your base small and add walls to keep the noise inside.\nSome tools to reduce noise levels: [img=item/wooden-wall] walls, [img=entity/tree-01] trees, [img=item/efficiency-module] efficiency modules, [item=active-noise-cancelling-tower]. +lignumis-escaping=The [entity=provisional-rocket-silo] allows you to take a generous inventory with you. Pack mostly infrastructure items to have a quick start on Nauvis. Leave fuel, gold and science packs behind. \ No newline at end of file diff --git a/lignumis/menu-simulations.lua b/lignumis/prototypes/menu-simulations.lua similarity index 100% rename from lignumis/menu-simulations.lua rename to lignumis/prototypes/menu-simulations.lua diff --git a/lignumis/prototypes/tips-and-tricks.lua b/lignumis/prototypes/tips-and-tricks.lua new file mode 100644 index 0000000..9276ee3 --- /dev/null +++ b/lignumis/prototypes/tips-and-tricks.lua @@ -0,0 +1,134 @@ +data:extend({ + { + type = "tips-and-tricks-item", + name = "lignumis-briefing", + tag = "[planet=lignumis]", + category = "space-age", + order = "0-[lignumis]-a", + trigger = { + type = "research", + technology = "wood-science-pack" + }, + skip_trigger = { + type = "research", + technology = "automation-science-pack" + }, + simulation = { + checkboard = false, + planet = "lignumis", + save = "__lignumis-assets__/menu-simulations/lignumis1.zip", + length = 60 * 20, + game_view_settings = { default_show_value = false }, + init = [[ + game.simulation.camera_surface_index = game.surfaces["lignumis"].index + game.simulation.camera_position = {-6, 2} + game.simulation.camera_zoom = 0.75 + game.tick_paused = false + game.surfaces["lignumis"].daytime = 0.3 + game.players[1].game_view_settings.show_controller_gui = false + game.players[1].game_view_settings.show_quickbar = false + game.players[1].game_view_settings.show_shortcut_bar = false + ]] + } + }, + { + type = "tips-and-tricks-item", + name = "lignumis-burner-agriculture", + tag = "[item=burner-agricultural-tower]", + category = "space-age", + order = "0-[lignumis]-b", + indent = 1, + trigger = { + type = "research", + technology = "tree-seeding" + }, + skip_trigger = { + type = "research", + technology = "automation-science-pack" + }, + simulation = { + planet = "lignumis", + game_view_settings = { default_show_value = false }, + init_update_count = 300, + length = 600, + init = [[ + game.simulation.camera_position = {0, 0.5} + game.simulation.camera_alt_info = true + game.surfaces[1].create_entities_from_blueprint_string + { + string = "0eNrFl91u4jAQhd/F104VOwQI0j5JhSKTTKm1iZ11bFiE8u47ToBSmrL5WWmvKHE838zxzDE9k13hoDJSWbI5E5lpVZPN65nUcq9E4Z8pUQLZkJ0zCkwg9kZmrrDOiCKw+giGNJRIlcNvsmEN7dl51DoPHL5h9kbjZ7CDwt7t4s2WElBWWgkdvP1ySpUrdxh/w+jzUJRUusbdWnkqRgz46iWm5OT/WrzEiMqlgax7g3FK7Kny4aSqnM/kC5F/JlojVF1pY7/lLZ/xegDR+JLiQSVpZ7+paTEeyeapGI9VMRyp4nJ0SSyZqeLqhpTqTSpcCrJ3qHtZiwfWdUdag7VS7Wv/poFSHyB1uFZYMJCn0kKJS2+iqIGS7nE3FxdyBcLzMiwUp5aFISWlzv2KsEEBos3mNpLbpqeM9ZyR4lOaIZk+UnxQM7BwOiFCQl9INmdM+aQGYx/ec7FcqWow2APPadEjbdEXPKJ/9/MeTPSAwWvCGl2kO3gXB6lN18giT/0CMrFdrXHQq+ksH5rUeuzBiOqqkPYbQT8sKBrSc8sxh8WeHFa/ppk0mZPWG0Z6M4JW2c/GcB32WzbWAAQ1QI55/HIC60UuUdqUeDV7VlkJI6ynkB/EX8BduPRiJLtCZD8L2TqJq+ER/lWI1Rwrnjgp6xHi35lxJ/5T+S4OO0y5QfqMtb+7fIfZHw/Hn0A8b644m3YA7BG2/ufdPORMOJ90l4f/8S6n5z5Jbpuf7OX+dwAKc0TVfQKveBUwiv7FtvjUp9lO/fV/AUoOmGgrQLzkySJJ4jWLkiRcNM0f5XQGsA==", + position = {0, 2} + } + for x = -11, 10, 1 do + for y = -5, 6 do + game.surfaces[1].set_tiles{{position = {x, y}, name = "grass-1"}} + end + end + ]] + } + }, + { + type = "tips-and-tricks-item", + name = "lignumis-noise", + tag = "[img=airborne-pollutant/noise]", + category = "space-age", + order = "0-[lignumis]-c", + indent = 1, + trigger = { + type = "build-entity", + entity = "burner-assembling-machine" + }, + skip_trigger = { + type = "research", + technology = "automation-science-pack" + }, + simulation = { + planet = "lignumis", + game_view_settings = { default_show_value = false }, + length = 600, + init = [[ + game.simulation.camera_position = {0, 0.5} + game.simulation.camera_zoom = 1.2 + game.simulation.camera_alt_info = true + game.surfaces[1].create_entities_from_blueprint_string + { + string = "0eNq1md1u4jAQhd/F16SKHefHvMqqqtLgVlaDzSaBLqp49w1FXXYrTuyzVSVuAPvLjOeMsQ9v4rHf293g/CTWb8J1wY9i/eNNjO7Zt/35M99urViL3RAObnRh/jQbQvdip2x0fRCnlXB+Y3+JtTytbsy7PVad7lfC+slNzl4e+P7m+OD320c7zLDVB+A1hI312Wvb92IldmGc5wR/fsKZk9+VK3EU6+KuPJ2f/wmjEjFyGVMkYtQyRidiimVMmYjRy5gqEVMuY+pETLWMaRIx9TLGJGKaZYzMEzkmwknUcRHRsUwUchERskxUchFRsrxKeZyCtwgT0Y4s0zCRossqDRORoKzTMLGaN2mYmARNEkZHKq7yNExsI5VpmMjWpVQaJiI/VaRhIvJTaSrWkY1UpalYR1Ss0lSsIypWNfnTWQJOQ3I04BhyywHxFDnJAfEUktu6EEZxGJTVVcltN7mDzXxwo8261ne2751/zqbwOo/Eu9k5wJUYbOd2CxjxMeTh577t5xDmoT4M2/mwdisszUkaLRLZGWiRqv9dJP2ti8R2Wg3SYzutAhy200A8mu00EI8mOw1hyE5DWRWcFlE0ZGegaEqy5gZwKpLTAM5Vy+imh4/05t/mugHYtcPENZduSBGiBWKbAixQmXMqRBiyJ0BW5bUnFkv053T4qURpZZmv65PdXu7nbvPXpd4+PbnOWd8ds23Y7HubqffL/WX0PNg/OH+YYw7D8TL7+m7un3Fquxexzs+J3fxGnu5P8+tG3mQToyqQTYyqwDaxlADEdrHMAagm1Q4jYtsPRmQ4wSNORfYfSqySXOlhPIrkoHgKtvTIztEsSAFQyZYeRVSxIBRRTdYecRqSgxIzZO1BPHVOcpAFx7qlEhy0a9YvhSBa1eAGUWvSeoURlaT5CkFXVT+HfpPt5p/O+fqRPQ9h7zcLNixMsSb9XBhZQzq6EGRITxeBmpx0dSFIkr4uBCnS2IWggnR2IUiT1i4E0fs2AtH7NlB2w+7biMPu2ygxw9nNiGPyL5s28jsMCSM5HxzmpzgjHHIKzgmHHM1Z4ZBTcl445FScGQ45NeeGQ07D2eGQYzg/HHFkzh5sNAKxp3UYkfqyhfgtLSvzgnP9LxneXy7b86Tr//crcbDD+D6lrJTRxpSNLIzJ9en0GwbKTP8=", + position = {0, 0} + } + ]] + } + }, + { + type = "tips-and-tricks-item", + name = "lignumis-escaping", + tag = "[item=provisional-rocket-silo]", + category = "space-age", + order = "0-[lignumis]-d", + indent = 1, + trigger = { + type = "build-entity", + entity = "provisional-rocket-silo" + }, + skip_trigger = { + type = "research", + technology = "automation-science-pack" + }, + simulation = { + planet = "lignumis", + game_view_settings = { default_show_value = false }, + init_update_count = 1500, + length = 600, + init = [[ + game.simulation.camera_position = {0, 0.5} + game.simulation.camera_zoom = 1.5 + local silo = game.surfaces[1].create_entity{name = "provisional-rocket-silo", position = {-1, 1}} + silo.get_fuel_inventory().insert({ name = "peat", count = 50 }) + silo.rocket_parts = 50 + ]], + update = [[ + local silo = game.surfaces[1].find_entity("provisional-rocket-silo", {-1, 1}) + silo.launch_rocket() + ]] + } + } +}) \ No newline at end of file From 85394e10ad307c304c2ea21aa9383d6f59752836 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 21:42:02 +0100 Subject: [PATCH 092/111] 1.3.5 --- lignumis/changelog.txt | 11 +++++++++++ lignumis/info.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 6578060..0bccd8e 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,3 +1,14 @@ + +--------------------------------------------------------------------------------------------------- +Version: 1.3.5 +Date: 10.01.2025 + Changes: + - Muluna: Increase wood per tree from 4 to 5 + - Add a "more wood" setting + - Add tips and tricks pages + Bug Fixes: + - Use a more generic way to set graphics filenames to avoid potential mod conflicts + - Hide provisional-rocket-silo-ready in Factoriopedia --------------------------------------------------------------------------------------------------- Version: 1.3.4 Date: 05.01.2025 diff --git a/lignumis/info.json b/lignumis/info.json index 3e0c869..4ca19a7 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.3.4", + "version": "1.3.5", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From e67ccd2146785b0fd24c3dd8275338262e1ebc05 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 21:52:53 +0100 Subject: [PATCH 093/111] Make Lignumis briefing a bit more clear --- lignumis/locale/en/strings.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 88a527c..74c7a8a 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -251,7 +251,7 @@ lignumis-noise=Noise pollution lignumis-escaping=Escaping Lignumis [tips-and-tricks-item-description] -lignumis-briefing=[planet=lignumis] is a moon of [planet=nauvis] that you must escape to in order to get access to more advanced technologies. The main resources are [item=wood], [item=gold-ore], [item=peat] and [item=stone]. The moon is lacking iron and copper and therefore your possibilities are very limited with the seemingly not so valuable [item=gold-ore] as the only available metal. Electricity is something not discovered until after you escaped.\n\n[img=utility/warning_icon] Lignumis has some impact on the rest of the game. Have a look at the mod settings to change them to match your taste. Or install the Director's Cut from the mod portal for the full experience. +lignumis-briefing=[planet=lignumis] is a moon of [planet=nauvis] that you must escape to in order to get access to more advanced technologies. The main resources are [item=wood], [item=gold-ore], [item=peat] and [item=stone]. The moon is lacking iron and copper and therefore your possibilities are very limited with the seemingly not so valuable [item=gold-ore] as the only available metal. Electricity is something not discovered until after you escaped.\n\n[img=utility/warning_icon] Lignumis has some impact on the rest of the game by changing vanilla recipes and technologies. Have a look at the mod settings to change them to match your taste. Or install the Director's Cut from the mod portal for the full experience. lignumis-burner-agriculture=Feeding agricultural towers both with seeds and fuel requires trickier solutions compared to the more advanced electrical counterpart. Due to an engine limitation, inserters will keep grabbing seeds while ignoring the fuel if it is on the wrong side of the belt. Use circuits or multiple inserters to prevent these kinds of problems altogether. lignumis-noise=The natives on [planet=lignumis] are sensitive to [img=airborne-pollutant/noise] loud noises. Anything mechanical created by you is potentially quite loud. Keep your base small and add walls to keep the noise inside.\nSome tools to reduce noise levels: [img=item/wooden-wall] walls, [img=entity/tree-01] trees, [img=item/efficiency-module] efficiency modules, [item=active-noise-cancelling-tower]. lignumis-escaping=The [entity=provisional-rocket-silo] allows you to take a generous inventory with you. Pack mostly infrastructure items to have a quick start on Nauvis. Leave fuel, gold and science packs behind. \ No newline at end of file From c14dead637d2e25d3bf28771aa50b870272b65f0 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 22:03:15 +0100 Subject: [PATCH 094/111] Tips and tricks: Make room for an additional page --- lignumis/prototypes/tips-and-tricks.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lignumis/prototypes/tips-and-tricks.lua b/lignumis/prototypes/tips-and-tricks.lua index 9276ee3..2dc012a 100644 --- a/lignumis/prototypes/tips-and-tricks.lua +++ b/lignumis/prototypes/tips-and-tricks.lua @@ -36,7 +36,7 @@ data:extend({ name = "lignumis-burner-agriculture", tag = "[item=burner-agricultural-tower]", category = "space-age", - order = "0-[lignumis]-b", + order = "0-[lignumis]-c", indent = 1, trigger = { type = "research", @@ -72,7 +72,7 @@ data:extend({ name = "lignumis-noise", tag = "[img=airborne-pollutant/noise]", category = "space-age", - order = "0-[lignumis]-c", + order = "0-[lignumis]-d", indent = 1, trigger = { type = "build-entity", @@ -103,7 +103,7 @@ data:extend({ name = "lignumis-escaping", tag = "[item=provisional-rocket-silo]", category = "space-age", - order = "0-[lignumis]-d", + order = "0-[lignumis]-e", indent = 1, trigger = { type = "build-entity", From f06fb0ea0a5587426477737eefad17038b6398bb Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 22:46:20 +0100 Subject: [PATCH 095/111] 1.3.6 --- lignumis/changelog.txt | 7 ++++++- lignumis/info.json | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 0bccd8e..8d435dd 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,9 @@ - +--------------------------------------------------------------------------------------------------- +Version: 1.3.6 +Date: 10.01.2025 + Changes: + - Tips and tricks: Make Lignumis briefing a bit more clear + - Tips and tricks: Make room for an additional page --------------------------------------------------------------------------------------------------- Version: 1.3.5 Date: 10.01.2025 diff --git a/lignumis/info.json b/lignumis/info.json index 4ca19a7..ed30103 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.3.5", + "version": "1.3.6", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 3a29d8032dd24469422c20ed663aacd577c5df3f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 22:52:52 +0100 Subject: [PATCH 096/111] DC: Add tips and tricks page for the DC --- lignumis-cf/data.lua | 1 + lignumis-cf/graphics/dc.png | Bin 0 -> 4371 bytes lignumis-cf/locale/en/strings.cfg | 8 +++++- lignumis-cf/prototypes/tips-and-tricks.lua | 29 +++++++++++++++++++++ 4 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 lignumis-cf/data.lua create mode 100644 lignumis-cf/graphics/dc.png create mode 100644 lignumis-cf/prototypes/tips-and-tricks.lua diff --git a/lignumis-cf/data.lua b/lignumis-cf/data.lua new file mode 100644 index 0000000..6ec24cb --- /dev/null +++ b/lignumis-cf/data.lua @@ -0,0 +1 @@ +require("prototypes/tips-and-tricks") \ No newline at end of file diff --git a/lignumis-cf/graphics/dc.png b/lignumis-cf/graphics/dc.png new file mode 100644 index 0000000000000000000000000000000000000000..64daac15c131f03242cfe2799aeeebfabcc16a50 GIT binary patch literal 4371 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 Date: Sat, 10 Jan 2026 22:54:22 +0100 Subject: [PATCH 097/111] Welcome to 2026! --- lignumis/changelog.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 8d435dd..4fa0ce4 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,12 +1,12 @@ --------------------------------------------------------------------------------------------------- Version: 1.3.6 -Date: 10.01.2025 +Date: 10.01.2026 Changes: - Tips and tricks: Make Lignumis briefing a bit more clear - Tips and tricks: Make room for an additional page --------------------------------------------------------------------------------------------------- Version: 1.3.5 -Date: 10.01.2025 +Date: 10.01.2026 Changes: - Muluna: Increase wood per tree from 4 to 5 - Add a "more wood" setting @@ -16,7 +16,7 @@ Date: 10.01.2025 - Hide provisional-rocket-silo-ready in Factoriopedia --------------------------------------------------------------------------------------------------- Version: 1.3.4 -Date: 05.01.2025 +Date: 05.01.2026 Changes: - Allow flipping the desiccation furnace - Allow circuit connections for the deep miner From 9d6b533c45248bd7a8c229a2ad60b5cb64ed7aac Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 22:55:40 +0100 Subject: [PATCH 098/111] cf-1.2.2 --- lignumis-cf/changelog.txt | 6 ++++++ lignumis-cf/info.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lignumis-cf/changelog.txt b/lignumis-cf/changelog.txt index 0a97211..3f2161f 100644 --- a/lignumis-cf/changelog.txt +++ b/lignumis-cf/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 1.2.2 +Date: 10.01.2026 + Changes: + - Force setting astroponics-garden-speed + - Add tips and tricks page for the DC +--------------------------------------------------------------------------------------------------- Version: 1.2.1 Date: 26.12.2025 Bug Fixes: diff --git a/lignumis-cf/info.json b/lignumis-cf/info.json index c245d7e..28ee956 100644 --- a/lignumis-cf/info.json +++ b/lignumis-cf/info.json @@ -1,6 +1,6 @@ { "name": "lignumis-cf", - "version": "1.2.1", + "version": "1.2.2", "title": "Lignumis - Director's Cut", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.\n\nThis is the version that represents the original idea of the mod author. For a more isolated planet mod experience, install the regular version.", "author": "cackling fiend", From 0e74117137ea44eefcf7c07bb6bd49ea589e587d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 10 Jan 2026 23:16:26 +0100 Subject: [PATCH 099/111] Hide provisional-rocket-silo-ready in Factoriopedia (now really) --- lignumis/prototypes/content/wooden-rocket-silo.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/prototypes/content/wooden-rocket-silo.lua b/lignumis/prototypes/content/wooden-rocket-silo.lua index 0ce24fd..9382cf2 100644 --- a/lignumis/prototypes/content/wooden-rocket-silo.lua +++ b/lignumis/prototypes/content/wooden-rocket-silo.lua @@ -145,6 +145,7 @@ silo_ready_item.name = "provisional-rocket-silo-ready" silo_ready_item.order = "0[provisional-rocket-silo-ready]" silo_ready_item.place_result = "provisional-rocket-silo-ready" silo_ready_item.icon = Lignumis.graphics .. "icons/provisional-rocket-silo.png" +silo_ready_item.hidden_in_factoriopedia = true data:extend({ silo, From 49c85ade5708c000487ab97efdb6db10b49050f7 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 14 Jan 2026 21:43:16 +0100 Subject: [PATCH 100/111] Remove Mod Framework incompatibility as probably most people have removed them by now --- lignumis/info.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lignumis/info.json b/lignumis/info.json index ed30103..86138e1 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -44,11 +44,6 @@ "! early-agriculture", "! planet-picker", "! wood-universe-modpack", - "! rso-mod", - "! mf-core", - "! mf-buildings", - "! mf-buildings-graphics-1", - "! mf-logistics", - "! mf-logistics-graphics-1" + "! rso-mod" ] } \ No newline at end of file From 6e20260a64a43b1afe8fd182f32f4e82bf582fa8 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 14 Jan 2026 21:44:52 +0100 Subject: [PATCH 101/111] Update version of cf-lib --- lignumis/info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/info.json b/lignumis/info.json index 86138e1..c1f2893 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -11,7 +11,7 @@ "base", "space-age >= 2.0.53", "bioprocessing-tab", - "cf-lib >= 1.1.0", + "cf-lib >= 1.4.0", "flib", "lignumis-assets >= 1.0.3", "PlanetsLib >= 1.14.7", From e54e0aff77c8d3137e05072bfe8b49ec8008a414 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 14 Jan 2026 23:04:34 +0100 Subject: [PATCH 102/111] Increase steam even more --- lignumis/prototypes/content/gold/stromatolite.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lignumis/prototypes/content/gold/stromatolite.lua b/lignumis/prototypes/content/gold/stromatolite.lua index f705b0c..7557e14 100644 --- a/lignumis/prototypes/content/gold/stromatolite.lua +++ b/lignumis/prototypes/content/gold/stromatolite.lua @@ -245,11 +245,11 @@ local desiccation_recipe = { category = "desiccation", subgroup = "lignumis-bioprocessing", order = "b0[desiccation]", - energy_required = 16, - ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 10 } }, + energy_required = 12, + ingredients = { { type = "item", name = "moist-stromatolite-remnant", amount = 8 } }, results = { - { type = "item", name = "peat", amount = 1 }, - { type = "fluid", name = "steam", amount = 180, temperature = 165 } + { type = "item", name = "peat", amount = 1, probability = 0.8 }, + { type = "fluid", name = "steam", amount = 200, temperature = 165 } }, enabled = false } From d51d7461595a777396da963bb6b53686f3a7e2bc Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 15 Jan 2026 14:25:54 +0100 Subject: [PATCH 103/111] Add compatibility for Zen Garden --- lignumis/info.json | 1 + lignumis/prototypes/compatibility/data.lua | 3 ++- .../prototypes/compatibility/zen-garden.lua | 20 +++++++++++++++++++ lignumis/settings/astroponics.lua | 4 +--- lignumis/settings/updates.lua | 3 ++- lignumis/settings/zen-garden.lua | 6 ++++++ 6 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 lignumis/prototypes/compatibility/zen-garden.lua create mode 100644 lignumis/settings/zen-garden.lua diff --git a/lignumis/info.json b/lignumis/info.json index c1f2893..744c17f 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -32,6 +32,7 @@ "? wood-industry", "? wood-military >= 2.3.3", "? wood-logistics", + "? zen-garden", "(?) atan-nuclear-science", "(?) Diversitree", "(?) gleba-reborn", diff --git a/lignumis/prototypes/compatibility/data.lua b/lignumis/prototypes/compatibility/data.lua index e63117d..cfa3fe3 100644 --- a/lignumis/prototypes/compatibility/data.lua +++ b/lignumis/prototypes/compatibility/data.lua @@ -9,4 +9,5 @@ require("wood-industry") require("crushing-industry") require("canal-excavator") require("diversitree") -require("muluna") \ No newline at end of file +require("muluna") +require("zen-garden") \ No newline at end of file diff --git a/lignumis/prototypes/compatibility/zen-garden.lua b/lignumis/prototypes/compatibility/zen-garden.lua new file mode 100644 index 0000000..f58c9be --- /dev/null +++ b/lignumis/prototypes/compatibility/zen-garden.lua @@ -0,0 +1,20 @@ +local Technology = require("__cf-lib__/data/Technology") + +if not mods["zen-garden"] then return end + +Technology:new('basic-gardening'):addPrerequisite('automation-science-pack') +Technology:new('composting') + :removePrerequisite('automation-2') + :removeIngredient('logistic-science-pack') + :assign({ + ignore_tech_cost_multiplier = true + }) + +if settings.startup['zen-garden-enabled'].value then + Technology:new('gear-gardening'):removeIngredient('logistic-science-pack') + Technology:new('zen-gardening'):removeIngredient('logistic-science-pack') +end + +if settings.startup['zen-bonsai-decor-enabled'].value then + Technology:new('zen-bonsai'):removeIngredient('logistic-science-pack') +end \ No newline at end of file diff --git a/lignumis/settings/astroponics.lua b/lignumis/settings/astroponics.lua index d14426e..c53a236 100644 --- a/lignumis/settings/astroponics.lua +++ b/lignumis/settings/astroponics.lua @@ -1,6 +1,4 @@ -if not mods["astroponics"] then - return -end +if not mods["astroponics"] then return end local Settings = require("__cf-lib__/settings/Settings") local force = Settings.force diff --git a/lignumis/settings/updates.lua b/lignumis/settings/updates.lua index 2cd9a36..74ee782 100644 --- a/lignumis/settings/updates.lua +++ b/lignumis/settings/updates.lua @@ -1,3 +1,4 @@ require("wood-logistics") require("wood-military") -require("astroponics") \ No newline at end of file +require("astroponics") +require("zen-garden") \ No newline at end of file diff --git a/lignumis/settings/zen-garden.lua b/lignumis/settings/zen-garden.lua new file mode 100644 index 0000000..02037a9 --- /dev/null +++ b/lignumis/settings/zen-garden.lua @@ -0,0 +1,6 @@ +if not mods["zen-garden"] then return end + +local Settings = require("__cf-lib__/settings/Settings") +local default = Settings.default + +default("zen-tower-enabled", false) \ No newline at end of file From d40794529ebcb4bc2d6aa3db24c1ef0296b06f44 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 15 Jan 2026 14:40:48 +0100 Subject: [PATCH 104/111] 1.3.7 --- lignumis/changelog.txt | 9 +++++++++ lignumis/info.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 4fa0ce4..4be8aa5 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,13 @@ --------------------------------------------------------------------------------------------------- +Version: 1.3.7 +Date: 15.01.2026 + Changes: + - Remove Mod Framework incompatibility as probably most people have removed them by now + - Increase steam from moist-stromatolite-remnant even more + - Add compatibility for Zen Garden + Bug Fixes: + - Hide provisional-rocket-silo-ready in Factoriopedia (now really) +--------------------------------------------------------------------------------------------------- Version: 1.3.6 Date: 10.01.2026 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 744c17f..a1519ef 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.3.6", + "version": "1.3.7", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 13014aaf46e77503f0760d6555d3dfed8d4224e1 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 18 Jan 2026 11:29:26 +0100 Subject: [PATCH 105/111] Add tips and tricks page for steam automation --- lignumis/locale/en/strings.cfg | 2 + lignumis/prototypes/tips-and-tricks.lua | 54 ++++++++++++++++--------- 2 files changed, 36 insertions(+), 20 deletions(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 74c7a8a..5482c67 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -248,10 +248,12 @@ provisional-rocket-silo-description=Fill the rocket inventory and launch the roc lignumis-briefing=Lignumis briefing lignumis-burner-agriculture=Burner agriculture lignumis-noise=Noise pollution +lignumis-steam=Steam automation lignumis-escaping=Escaping Lignumis [tips-and-tricks-item-description] lignumis-briefing=[planet=lignumis] is a moon of [planet=nauvis] that you must escape to in order to get access to more advanced technologies. The main resources are [item=wood], [item=gold-ore], [item=peat] and [item=stone]. The moon is lacking iron and copper and therefore your possibilities are very limited with the seemingly not so valuable [item=gold-ore] as the only available metal. Electricity is something not discovered until after you escaped.\n\n[img=utility/warning_icon] Lignumis has some impact on the rest of the game by changing vanilla recipes and technologies. Have a look at the mod settings to change them to match your taste. Or install the Director's Cut from the mod portal for the full experience. lignumis-burner-agriculture=Feeding agricultural towers both with seeds and fuel requires trickier solutions compared to the more advanced electrical counterpart. Due to an engine limitation, inserters will keep grabbing seeds while ignoring the fuel if it is on the wrong side of the belt. Use circuits or multiple inserters to prevent these kinds of problems altogether. lignumis-noise=The natives on [planet=lignumis] are sensitive to [img=airborne-pollutant/noise] loud noises. Anything mechanical created by you is potentially quite loud. Keep your base small and add walls to keep the noise inside.\nSome tools to reduce noise levels: [img=item/wooden-wall] walls, [img=entity/tree-01] trees, [img=item/efficiency-module] efficiency modules, [item=active-noise-cancelling-tower]. +lignumis-steam=With [entity=steam-assembling-machine] and [entity=steam-inserter] you get new tools to build faster and more compact production chains. Due to the lack of better technologies, burning [item=moist-stromatolite-remnant] in the [entity=desiccation-furnace] is your only source of [fluid=steam]. Balance steam by burning overflowing moist stromatolite remnant in regular furnaces.\n\n[img=utility/warning_icon] The production of [fluid=steam] won't be enough to fuel a full base. Keep old burner setups where possible. lignumis-escaping=The [entity=provisional-rocket-silo] allows you to take a generous inventory with you. Pack mostly infrastructure items to have a quick start on Nauvis. Leave fuel, gold and science packs behind. \ No newline at end of file diff --git a/lignumis/prototypes/tips-and-tricks.lua b/lignumis/prototypes/tips-and-tricks.lua index 2dc012a..7eec335 100644 --- a/lignumis/prototypes/tips-and-tricks.lua +++ b/lignumis/prototypes/tips-and-tricks.lua @@ -13,23 +13,7 @@ data:extend({ type = "research", technology = "automation-science-pack" }, - simulation = { - checkboard = false, - planet = "lignumis", - save = "__lignumis-assets__/menu-simulations/lignumis1.zip", - length = 60 * 20, - game_view_settings = { default_show_value = false }, - init = [[ - game.simulation.camera_surface_index = game.surfaces["lignumis"].index - game.simulation.camera_position = {-6, 2} - game.simulation.camera_zoom = 0.75 - game.tick_paused = false - game.surfaces["lignumis"].daytime = 0.3 - game.players[1].game_view_settings.show_controller_gui = false - game.players[1].game_view_settings.show_quickbar = false - game.players[1].game_view_settings.show_shortcut_bar = false - ]] - } + simulation = data.raw["utility-constants"]["default"].main_menu_simulations.lignumis_early }, { type = "tips-and-tricks-item", @@ -50,7 +34,6 @@ data:extend({ planet = "lignumis", game_view_settings = { default_show_value = false }, init_update_count = 300, - length = 600, init = [[ game.simulation.camera_position = {0, 0.5} game.simulation.camera_alt_info = true @@ -85,7 +68,6 @@ data:extend({ simulation = { planet = "lignumis", game_view_settings = { default_show_value = false }, - length = 600, init = [[ game.simulation.camera_position = {0, 0.5} game.simulation.camera_zoom = 1.2 @@ -98,12 +80,44 @@ data:extend({ ]] } }, + { + type = "tips-and-tricks-item", + name = "lignumis-steam", + tag = "[img=fluid/steam]", + category = "space-age", + order = "0-[lignumis]-e", + indent = 1, + trigger = { + type = "research", + technology = "steam-automation" + }, + skip_trigger = { + type = "research", + technology = "automation-science-pack" + }, + simulation = { + planet = "lignumis", + game_view_settings = { default_show_value = false }, + init_update_count = 2400, + init = [[ + game.simulation.camera_position = {1.0, -2.5} + game.simulation.camera_zoom = 1.6 + game.simulation.camera_alt_info = true + game.forces.player.technologies["gold-fluid-handling"].researched = true + game.surfaces[1].create_entities_from_blueprint_string + { + string = "0eNqtm+1y6jgMhu8lv5Mz8Wfi3srOmU4KLptZSJgknN1Oh3tfBw4fLTbRq92fLfCgvLYsWRKf2dv24PdD203Zy2fWrvpuzF7++MzGdtM12/l/XbPz2Uv2d9+vi2lounHfD1Px5rdTdsyztlv7f7IXcfyZZ76b2qn1Z8Dpj4/X7rB780N4Q34Bbfrtuhinfmg2vpia7q8sz/b9GD7Zd/P3BZrKs4/spQr4dTv41fkVfcwfqPIrdd/uA7IvNkN/6NaPXPPDnMk/zFe2kBG4eoQ/IvUdMsLQ+TP9Hmj2Oc3waPb748aktBi7QtgVtkwutUwxdn1lvx2Gzg9F241+mMJLD9z6uboOU6BGFBAlBncQXFB2qiifP74AnUkIyJuEwhS44mkSgI52FYNGN/RNJtSCzBZgyQVWBT61hJ66BukKojvSpjXPFZAluGk1crZIASqgEQWkBOkGoitgn1ULKqPeBUUeCYY1AcUeifibW9AB9TcoRkjU36AgIR1dB7kQKhQYzSR02irQ6yQUKZQEdFg4yxUY0yR0/irQ6yR0/iogpsmFLFeByaOEzkl187q2e2+78Fqx+tOPEXBxkcCdwJe3v45+mtpuM85vG/yu/+VfD+G1bXhav35tJ78LL70329Hn2fnf50vM76/d9e04hTvL0O+aqd+G9xeB0jXdbMIqRJpweTLBJ3b9en57MxVb35zsu12PorrdPH7bN+uY9IW8e557ofJs+tjPn+wP0/4w38Ue8WBGW34Rb2FVNHgGCAiOHgEQHIy7CoKDR4KG4BrLdi7wOnE5Zd4nXQJnebiUdTe3X/uxXa2a+bPFezismlUkVXRn26KoGrogpZ7PQZTEY5kSeyzx+wD4ujvqGFmAZJ1WzEgoO08oZhRESSmmweeqyIrdHGCc+s4/YT7ZXcZSKfN9IkmpyBT1hFKTKeYJxeERd76v80JuzAL7LbqM+xB1o7lJcfE3URKKXGBcucEFqchhJTWgx4DXkN52iYhuFS+iz4fSsjtYzaQTxTHUNTXIkjKjzqPRUUkqXln0kR61vaYqUiUUiQvtmJKQdknFLGXSJKkErwp7osd4wHXP3esQYymmbSXJPyrNrJASlTXMEikRj9RZxJLS3MIm0VZuZZOId8yyIQ1fl8y6IREvgIXUCwtZS2blkGirYpYOiXgNSGGXpDDM4iHRVsusHhLxFaOMmpSiZtYPibY6ZgGRhnclo5KaksIJZgmRaKtk1hCJeMUopial0MwqItFW0P8kdmw6y6inJqUA45/Ejk2H+h92bDrU/7CTTpTl4i1r7lDEgcuXLFEK8vVXif9y/Z2GQ/T2K0rJzOAVJYMXpWLealSiD10y51zmvI1ir2HaK1P2WsatgGhrBVUJ05LWnHyaaCPWe0/aKEpOqkizUQhO7kVkS04yQ2QrTnZAZGtOuCWyOf1AKtvy5vTmHUgZLRIVMqp3okYxNa+9Mm9tigrcsowh4eW3a2Ew2Q9n05eOyfMXLPYTBToPYzGB0IGY6h4fBSre4OGj4tE8RGp89pC6mIbT/BI6LoPFQlLKP2TFnBCk+rHE+nTpdXeMGTviyqiSMQtIZQtWbzAsO4GNdfSSm0Ap5sQd0amUZnUxE1v/bsqF9NSpHaUsY5qOuuoVq79JW/Wak+kQ7XZg9zSxRppVT6HZeDdIQuvNpmzkTI1RbVRg5zdlo+ZkcEQbDdhXTtlo2UlKdZ+kpC/vmtuxI86Z18wUiIh3zOYacY69ZHawiHjB7WAR+ZLbwiLyFbftRORrbt+JyDfcxhORb7mdJyK/4naLiPya2y4i8h23xUPj25Lb4yHyBbcvQ+RLbmOGyOfOY1P53IlsKt9wOyBEPvNHfsKlfsvEDbZ1Crg8EX1hSEGqWVj6LNuVLP/X6fG9b+7mxE/di+eD4j/DnwE653HXH+fm2a+APdlqrHTaOVPL0mgtjsd/AQupl6k=", + position = {0, 0} + } + ]] + } + }, { type = "tips-and-tricks-item", name = "lignumis-escaping", tag = "[item=provisional-rocket-silo]", category = "space-age", - order = "0-[lignumis]-e", + order = "0-[lignumis]-f", indent = 1, trigger = { type = "build-entity", From 67c25877e4a9e139a0065ab5573a61c2acd17ed3 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 18 Jan 2026 16:21:40 +0100 Subject: [PATCH 106/111] Add alternative recipes for steam assembler and inserters --- .../content/steam-assembling-machine.lua | 20 ++++++++++ .../prototypes/content/steam-inserters.lua | 39 ++++++++++++++++++- 2 files changed, 58 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/steam-assembling-machine.lua b/lignumis/prototypes/content/steam-assembling-machine.lua index 5425ee6..4e05845 100644 --- a/lignumis/prototypes/content/steam-assembling-machine.lua +++ b/lignumis/prototypes/content/steam-assembling-machine.lua @@ -1,6 +1,7 @@ local item_sounds = require("__base__.prototypes.item_sounds") local pipecovers = require("prototypes/content/gold/pipecovers") local machinepipes = require("prototypes/content/gold/machinepipes") +local Technology = require("__cf-lib__/data/Technology") local gfx = Lignumis.graphics .. "entity/steam-assembling-machine/" @@ -90,6 +91,23 @@ data:extend({ results = { { type = "item", name = "steam-assembling-machine", amount = 1 } }, energy_required = 8 }, + { + type = "recipe", + name = "steam-assembling-machine-iron", + localised_name = { "entity-name.steam-assembling-machine" }, + enabled = false, + icons = { + { icon = Lignumis.graphics .. "icons/steam-assembling-machine.png" }, + { icon = "__base__/graphics/icons/iron-plate.png", scale = 0.25, shift = { 8, 8 } } + }, + ingredients = { + { type = "item", name = "burner-assembling-machine", amount = 1 }, + { type = "item", name = "pipe", amount = 5 } + }, + results = { { type = "item", name = "steam-assembling-machine", amount = 1 } }, + energy_required = 8, + auto_recycle = false + }, { type = "technology", name = "steam-automation", @@ -110,3 +128,5 @@ data:extend({ ignore_tech_cost_multiplier = false } }) + +Technology:new("iron-processing"):addRecipe("steam-assembling-machine-iron") \ No newline at end of file diff --git a/lignumis/prototypes/content/steam-inserters.lua b/lignumis/prototypes/content/steam-inserters.lua index b88552b..b2f5d52 100644 --- a/lignumis/prototypes/content/steam-inserters.lua +++ b/lignumis/prototypes/content/steam-inserters.lua @@ -55,6 +55,11 @@ long_handed_inserter.icon_draw_specification = { render_layer = "entity-info-icon-above", } +inserter_iron_icons = table.deepcopy(inserter.icons) +table.insert(inserter_iron_icons, { icon = "__base__/graphics/icons/iron-plate.png", scale = 0.25, shift = { 8, 8 } }) +long_handed_inserter_iron_icons = table.deepcopy(long_handed_inserter.icons) +table.insert(long_handed_inserter_iron_icons, { icon = "__base__/graphics/icons/iron-plate.png", scale = 0.25, shift = { 8, 8 } }) + data:extend({ inserter, long_handed_inserter, @@ -83,6 +88,20 @@ data:extend({ }, results = { { type = "item", name = "steam-inserter", amount = 1 } } }, + { + type = "recipe", + name = "steam-inserter-iron", + localised_name = { "entity-name.steam-inserter" }, + category = "crafting", + enabled = false, + icons = inserter_iron_icons, + ingredients = { + { type = "item", name = "pipe", amount = 2 }, + { type = "item", name = "burner-inserter", amount = 1 } + }, + results = { { type = "item", name = "steam-inserter", amount = 1 } }, + auto_recycle = false + }, { type = "item", name = "steam-long-handed-inserter", @@ -107,9 +126,27 @@ data:extend({ { type = "item", name = "burner-long-handed-inserter", amount = 1 } }, results = { { type = "item", name = "steam-long-handed-inserter", amount = 1 } } + }, + { + type = "recipe", + name = "steam-long-handed-inserter-iron", + localised_name = { "entity-name.steam-long-handed-inserter" }, + category = "crafting", + enabled = false, + icons = long_handed_inserter_iron_icons, + ingredients = { + { type = "item", name = "pipe", amount = 2 }, + { type = "item", name = "burner-long-handed-inserter", amount = 1 } + }, + results = { { type = "item", name = "steam-long-handed-inserter", amount = 1 } }, + auto_recycle = false } }) Technology:new("steam-automation") :addRecipe("steam-inserter") - :addRecipe("steam-long-handed-inserter") \ No newline at end of file + :addRecipe("steam-long-handed-inserter") + +Technology:new("iron-processing") + :addRecipe("steam-inserter-iron") + :addRecipe("steam-long-handed-inserter-iron") \ No newline at end of file From 980974be41aa0f411ebc79a45318317a44d6b79f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 18 Jan 2026 16:40:26 +0100 Subject: [PATCH 107/111] Update tips and tricks --- lignumis/locale/en/strings.cfg | 2 +- lignumis/prototypes/tips-and-tricks.lua | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 5482c67..230fdf7 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -256,4 +256,4 @@ lignumis-briefing=[planet=lignumis] is a moon of [planet=nauvis] that you must e lignumis-burner-agriculture=Feeding agricultural towers both with seeds and fuel requires trickier solutions compared to the more advanced electrical counterpart. Due to an engine limitation, inserters will keep grabbing seeds while ignoring the fuel if it is on the wrong side of the belt. Use circuits or multiple inserters to prevent these kinds of problems altogether. lignumis-noise=The natives on [planet=lignumis] are sensitive to [img=airborne-pollutant/noise] loud noises. Anything mechanical created by you is potentially quite loud. Keep your base small and add walls to keep the noise inside.\nSome tools to reduce noise levels: [img=item/wooden-wall] walls, [img=entity/tree-01] trees, [img=item/efficiency-module] efficiency modules, [item=active-noise-cancelling-tower]. lignumis-steam=With [entity=steam-assembling-machine] and [entity=steam-inserter] you get new tools to build faster and more compact production chains. Due to the lack of better technologies, burning [item=moist-stromatolite-remnant] in the [entity=desiccation-furnace] is your only source of [fluid=steam]. Balance steam by burning overflowing moist stromatolite remnant in regular furnaces.\n\n[img=utility/warning_icon] The production of [fluid=steam] won't be enough to fuel a full base. Keep old burner setups where possible. -lignumis-escaping=The [entity=provisional-rocket-silo] allows you to take a generous inventory with you. Pack mostly infrastructure items to have a quick start on Nauvis. Leave fuel, gold and science packs behind. \ No newline at end of file +lignumis-escaping=The [entity=provisional-rocket-silo] allows you to take a generous inventory with you. Pack mostly infrastructure items to have a quick start on Nauvis. Leave fuel, gold and science packs behind.\n\n[img=utility/warning_icon] While it is not mandatory to research everything before leaving, it is a good idea to do so. Or at least make sure you can continue to research after leaving.\n[img=utility/warning_icon] Your base conitnues to make noise when you are gone. In addition enemies will cotinue to expand. Make sure your base is protected before you leave. \ No newline at end of file diff --git a/lignumis/prototypes/tips-and-tricks.lua b/lignumis/prototypes/tips-and-tricks.lua index 7eec335..5ad192c 100644 --- a/lignumis/prototypes/tips-and-tricks.lua +++ b/lignumis/prototypes/tips-and-tricks.lua @@ -13,7 +13,23 @@ data:extend({ type = "research", technology = "automation-science-pack" }, - simulation = data.raw["utility-constants"]["default"].main_menu_simulations.lignumis_early + simulation = { + checkboard = false, + planet = "lignumis", + save = "__lignumis-assets__/menu-simulations/lignumis1.zip", + length = 60 * 20, + game_view_settings = { default_show_value = false }, + init = [[ + game.simulation.camera_surface_index = game.surfaces["lignumis"].index + game.simulation.camera_position = {-6, 2} + game.simulation.camera_zoom = 0.75 + game.tick_paused = false + game.surfaces["lignumis"].daytime = 0.3 + game.players[1].game_view_settings.show_controller_gui = false + game.players[1].game_view_settings.show_quickbar = false + game.players[1].game_view_settings.show_shortcut_bar = false + ]] + } }, { type = "tips-and-tricks-item", From 745fd090b5f606e953c7537bed7c9930c0cae772 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 18 Jan 2026 16:41:57 +0100 Subject: [PATCH 108/111] 1.4.0 --- lignumis/changelog.txt | 6 ++++++ lignumis/info.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 4be8aa5..12c265d 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 1.4.0 +Date: 18.01.2026 + Changes: + - Add tips and tricks page for steam automation + - Add alternative recipes for steam assembler and inserters +--------------------------------------------------------------------------------------------------- Version: 1.3.7 Date: 15.01.2026 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index a1519ef..3be964c 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.3.7", + "version": "1.4.0", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 0fcefd036c7ab29eb50ba051735615f4074e18e5 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 22 Jan 2026 00:07:13 +0100 Subject: [PATCH 109/111] Improve performance with many enemies --- lignumis/prototypes/content/enemies.lua | 43 ++----------------------- 1 file changed, 3 insertions(+), 40 deletions(-) diff --git a/lignumis/prototypes/content/enemies.lua b/lignumis/prototypes/content/enemies.lua index eebe2f5..c67e626 100644 --- a/lignumis/prototypes/content/enemies.lua +++ b/lignumis/prototypes/content/enemies.lua @@ -290,7 +290,7 @@ function make_wriggler(prefix, scale, health, damage, tints, factoriopedia_simul }, dying_speed = 0.015 / scale, decay_frame_transition_duration = 150, - time_before_removed = 1 * 60 * 60, -- 1 minute + time_before_removed = 30 * 60, -- 30 seconds use_decay_layer = true, direction_shuffle = { { 1, 2, 3, 16 }, { 4, 5, 6, 7 }, { 8, 9, 10, 11 }, { 12, 13, 14, 15 } }, @@ -338,7 +338,7 @@ function make_wriggler(prefix, scale, health, damage, tints, factoriopedia_simul target_effects = { { type = "create-particle", - repeat_count = 13, + repeat_count = 2, repeat_count_deviation = 1, probability = 1, affects_target = false, @@ -359,33 +359,6 @@ function make_wriggler(prefix, scale, health, damage, tints, factoriopedia_simul tail_width = 3, rotate_offsets = false }, - { - type = "create-particle", - repeat_count = 12, - repeat_count_deviation = 3, - probability = 1, - affects_target = false, - show_in_tooltip = false, - particle_name = "lignumis-blood-particle-small", - offsets = { - { 0, -0.4 }, - { 0, 0.5 }, - { 0, 0.6 } - }, - offset_deviation = { { -0.25, -0.25 }, { 0.25, 0.25 } }, - initial_height = 0.1, - initial_height_deviation = 0.1, - initial_vertical_speed = 0.055, - initial_vertical_speed_deviation = 0.075, - speed_from_center = 0.03, - speed_from_center_deviation = 0.03, - frame_speed = 1, - frame_speed_deviation = 0, - tail_length = 52, - tail_length_deviation = 25, - tail_width = 3, - rotate_offsets = false - }, { type = "play-sound", sound = base_sounds.medium_gore @@ -396,19 +369,9 @@ function make_wriggler(prefix, scale, health, damage, tints, factoriopedia_simul } data:extend { - --wriggler, wriggler_stable, wriggler_corpse, - wrigger_explosion, - make_particle - { - name = prefix .. "wriggler-skin-particle", - life_time = 300, - pictures = particle_animations.get_pentpod_skin_particles_small({ scale = 1 * scale, tint = lerp_color(tint_mask, { 255, 255, 255, 255 }, 0.7) }), - shadows = particle_animations.get_pentpod_skin_particles_small({ scale = 1 * scale, tint = shadowtint(), shift = util.by_pixel(1, 0) }), - ended_in_water_trigger_effect = default_ended_in_water_trigger_effect(), - render_layer_when_on_ground = "lower-object-above-shadow" - }, + wrigger_explosion } end From 13dc11151ede3220ac7570c66780d6da33864af4 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 22 Jan 2026 00:09:03 +0100 Subject: [PATCH 110/111] 1.4.1 --- lignumis/changelog.txt | 5 +++++ lignumis/info.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 12c265d..76eb64f 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 1.4.1 +Date: 22.01.2026 + Changes: + - Improve performance with many enemies +--------------------------------------------------------------------------------------------------- Version: 1.4.0 Date: 18.01.2026 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 3be964c..50ab69c 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.4.0", + "version": "1.4.1", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From d9b670c9482215e18dc1c8401b9fb73ee5605419 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 27 Jan 2026 09:48:28 +0100 Subject: [PATCH 111/111] Add moist stromatolite remnant to the generated gold stromatolites --- lignumis/prototypes/content/gold/stromatolite.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/prototypes/content/gold/stromatolite.lua b/lignumis/prototypes/content/gold/stromatolite.lua index 7557e14..7f05612 100644 --- a/lignumis/prototypes/content/gold/stromatolite.lua +++ b/lignumis/prototypes/content/gold/stromatolite.lua @@ -12,6 +12,7 @@ stromatolite.autoplace = { stromatolite.collision_mask = table.deepcopy(data.raw["plant"]["tree-plant"].collision_mask) stromatolite.mining_time = 2 stromatolite.minable.results = { + { type = "item", name = "moist-stromatolite-remnant", amount_min = 2, amount_max = 10 }, { type = "item", name = "gold-ore", amount_min = 1, amount_max = 7 }, { type = "item", name = "gold-bacteria", amount_min = 3, amount_max = 9 }, { type = "item", name = "gold-stromatolite-seed", amount = 1, probability = 0.2 }