From 21edab24de8dae8c676900835f8e369e52a62793 Mon Sep 17 00:00:00 2001 From: "DESKTOP-8PQDRUU\\Admin" Date: Fri, 1 Aug 2025 23:58:10 +0800 Subject: [PATCH 001/108] Add final fixes for Lignumis and Alien Biomes compatibility --- .../compatibility/alien-biomes-final.lua | 67 +++++++++++++++++++ .../prototypes/compatibility/alien-biomes.lua | 1 + lignumis/prototypes/compatibility/final.lua | 1 + 3 files changed, 69 insertions(+) create mode 100644 lignumis/prototypes/compatibility/alien-biomes-final.lua diff --git a/lignumis/prototypes/compatibility/alien-biomes-final.lua b/lignumis/prototypes/compatibility/alien-biomes-final.lua new file mode 100644 index 0000000..d90c64b --- /dev/null +++ b/lignumis/prototypes/compatibility/alien-biomes-final.lua @@ -0,0 +1,67 @@ +-- Lignumis + Alien Biomes Compatibility - Final Fixes +-- +-- This runs AFTER alien-biomes data-updates.lua to ensure our fixes aren't overridden +-- Load order: data.lua -> data-updates.lua -> data-final-fixes.lua (THIS FILE) + +if not mods["alien-biomes"] then + return +end + +-- Define Lignumis grass tiles (from mapgen.lua) +local lignumis_grass_tiles = { + "grass-1", + "grass-2", + "grass-3", + "grass-4", + "natural-gold-soil" +} + +-- Fix tree plant for manual planting on Lignumis grass tiles +local tree_plant = data.raw.plant["tree-plant"] +if mods["Diversitree"] then + tree_plant = data.raw.plant["s6xdvt-fake-tree"] +end + +if tree_plant then + for _, tile in pairs(lignumis_grass_tiles) do + local already_present = false + for _, existing_tile in pairs(tree_plant.autoplace.tile_restriction) do + if existing_tile == tile then + already_present = true + break + end + end + if not already_present then + table.insert(tree_plant.autoplace.tile_restriction, tile) + end + end +end + +-- Fix tree autoplace restrictions for natural tree spawning +for _, tree in pairs(data.raw.tree) do + if tree.autoplace and tree.autoplace.tile_restriction then + -- Skip gold stromatolites - they should remain exclusive to natural-gold-soil + local is_gold_stromatolite = tree.name and (tree.name:find("stromatolite") or tree.name:find("gold")) + + if not is_gold_stromatolite then + -- Check if Lignumis grass tiles are missing + local has_lignumis_tiles = false + for _, existing_tile in pairs(tree.autoplace.tile_restriction) do + for _, lignumis_tile in pairs(lignumis_grass_tiles) do + if existing_tile == lignumis_tile then + has_lignumis_tiles = true + break + end + end + if has_lignumis_tiles then break end + end + + -- Add Lignumis grass tiles if missing + if not has_lignumis_tiles then + for _, tile_name in pairs(lignumis_grass_tiles) do + table.insert(tree.autoplace.tile_restriction, tile_name) + end + end + end + end +end diff --git a/lignumis/prototypes/compatibility/alien-biomes.lua b/lignumis/prototypes/compatibility/alien-biomes.lua index cd6813c..87581ee 100644 --- a/lignumis/prototypes/compatibility/alien-biomes.lua +++ b/lignumis/prototypes/compatibility/alien-biomes.lua @@ -6,6 +6,7 @@ settings["small-rock"] = nil settings["tiny-rock"] = nil -- Fix trees not being plantable on Alien Biomes tiles +-- Note: Additional tree fixes for Lignumis grass tiles are handled in alien-biomes-final.lua local tile_restriction = data.raw["plant"]["tree-plant"].autoplace.tile_restriction for _, tile in pairs(alien_biomes.all_tiles()) do if tile.tags and (table.contains(tile.tags, "dirt") or table.contains(tile.tags, "grass")) then diff --git a/lignumis/prototypes/compatibility/final.lua b/lignumis/prototypes/compatibility/final.lua index db0c1dd..dfaf912 100644 --- a/lignumis/prototypes/compatibility/final.lua +++ b/lignumis/prototypes/compatibility/final.lua @@ -1,5 +1,6 @@ require("aai-loaders-final") require("any-planet-start-final") +require("alien-biomes-final") if not data.raw.technology["legendary-quality"] then table.removeValue(data.raw.technology["quality-assembler"].prerequisites, "legendary-quality") From b746a7c88ce11ad57b0810c20da0d9a3e6585cf7 Mon Sep 17 00:00:00 2001 From: chromebomb Date: Mon, 1 Sep 2025 12:35:06 +0200 Subject: [PATCH 002/108] fix: add final fixes for Lignumis and Alien Biomes compatibility (#7) refer to: https://discord.com/channels/1327043776715292773/1327045033077248021/1400725705867919371 Added a compatibility fix for alien biomes and lignumis. Changes: - added back the vanilla fertile tiles tha Alien Biomes remove to the tile restrictions of trees for manual and world gen spawning and planting of trees. - retains Lignumis' aesthetics of using the vanilla tiles and Nauvis' Alien Biomes - able to plant and spawn trees in Lignumis now when Alien Biomes is also enabled ps. this is the first time I contributed/made a mod for factorio, if there is anything to be improved on the syntaxes and anything do let me know. Co-authored-by: chromebomb Reviewed-on: https://git.cacklingfiend.info/cacklingfiend/lignumis/pulls/7 Co-authored-by: chromebomb Co-committed-by: chromebomb --- .../compatibility/alien-biomes-final.lua | 67 +++++++++++++++++++ .../prototypes/compatibility/alien-biomes.lua | 1 + lignumis/prototypes/compatibility/final.lua | 1 + 3 files changed, 69 insertions(+) create mode 100644 lignumis/prototypes/compatibility/alien-biomes-final.lua diff --git a/lignumis/prototypes/compatibility/alien-biomes-final.lua b/lignumis/prototypes/compatibility/alien-biomes-final.lua new file mode 100644 index 0000000..d90c64b --- /dev/null +++ b/lignumis/prototypes/compatibility/alien-biomes-final.lua @@ -0,0 +1,67 @@ +-- Lignumis + Alien Biomes Compatibility - Final Fixes +-- +-- This runs AFTER alien-biomes data-updates.lua to ensure our fixes aren't overridden +-- Load order: data.lua -> data-updates.lua -> data-final-fixes.lua (THIS FILE) + +if not mods["alien-biomes"] then + return +end + +-- Define Lignumis grass tiles (from mapgen.lua) +local lignumis_grass_tiles = { + "grass-1", + "grass-2", + "grass-3", + "grass-4", + "natural-gold-soil" +} + +-- Fix tree plant for manual planting on Lignumis grass tiles +local tree_plant = data.raw.plant["tree-plant"] +if mods["Diversitree"] then + tree_plant = data.raw.plant["s6xdvt-fake-tree"] +end + +if tree_plant then + for _, tile in pairs(lignumis_grass_tiles) do + local already_present = false + for _, existing_tile in pairs(tree_plant.autoplace.tile_restriction) do + if existing_tile == tile then + already_present = true + break + end + end + if not already_present then + table.insert(tree_plant.autoplace.tile_restriction, tile) + end + end +end + +-- Fix tree autoplace restrictions for natural tree spawning +for _, tree in pairs(data.raw.tree) do + if tree.autoplace and tree.autoplace.tile_restriction then + -- Skip gold stromatolites - they should remain exclusive to natural-gold-soil + local is_gold_stromatolite = tree.name and (tree.name:find("stromatolite") or tree.name:find("gold")) + + if not is_gold_stromatolite then + -- Check if Lignumis grass tiles are missing + local has_lignumis_tiles = false + for _, existing_tile in pairs(tree.autoplace.tile_restriction) do + for _, lignumis_tile in pairs(lignumis_grass_tiles) do + if existing_tile == lignumis_tile then + has_lignumis_tiles = true + break + end + end + if has_lignumis_tiles then break end + end + + -- Add Lignumis grass tiles if missing + if not has_lignumis_tiles then + for _, tile_name in pairs(lignumis_grass_tiles) do + table.insert(tree.autoplace.tile_restriction, tile_name) + end + end + end + end +end diff --git a/lignumis/prototypes/compatibility/alien-biomes.lua b/lignumis/prototypes/compatibility/alien-biomes.lua index cd6813c..87581ee 100644 --- a/lignumis/prototypes/compatibility/alien-biomes.lua +++ b/lignumis/prototypes/compatibility/alien-biomes.lua @@ -6,6 +6,7 @@ settings["small-rock"] = nil settings["tiny-rock"] = nil -- Fix trees not being plantable on Alien Biomes tiles +-- Note: Additional tree fixes for Lignumis grass tiles are handled in alien-biomes-final.lua local tile_restriction = data.raw["plant"]["tree-plant"].autoplace.tile_restriction for _, tile in pairs(alien_biomes.all_tiles()) do if tile.tags and (table.contains(tile.tags, "dirt") or table.contains(tile.tags, "grass")) then diff --git a/lignumis/prototypes/compatibility/final.lua b/lignumis/prototypes/compatibility/final.lua index db0c1dd..dfaf912 100644 --- a/lignumis/prototypes/compatibility/final.lua +++ b/lignumis/prototypes/compatibility/final.lua @@ -1,5 +1,6 @@ require("aai-loaders-final") require("any-planet-start-final") +require("alien-biomes-final") if not data.raw.technology["legendary-quality"] then table.removeValue(data.raw.technology["quality-assembler"].prerequisites, "legendary-quality") From 3fb93faea514d3e9ae841fc35ca141955a5c3793 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 2 Sep 2025 10:34:22 +0200 Subject: [PATCH 003/108] Lumber mill can be built on Vulcanus --- 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 3ac959d..0bb904c 100644 --- a/lignumis/prototypes/content/lumber-mill.lua +++ b/lignumis/prototypes/content/lumber-mill.lua @@ -25,7 +25,7 @@ LumberMill.EntityBuilder:new() surface_conditions = { { property = has_oxygen and "oxygen" or "pressure", - min = 10 + min = 3 }, { property = "gravity", From e14789ee81a03b181ba26cf21b68b8da6605b9fd Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 2 Sep 2025 10:40:55 +0200 Subject: [PATCH 004/108] 1.0.62 --- 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 697635c..7083de4 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,11 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.62 +Date: 02.09.2025 + Changes: + - Add spanish locales (thanks DFOXpro) + - Add compatibility for Alien Biomes (thanks Chromebomb) + - The lumber mill can be built on Vulcanus again +--------------------------------------------------------------------------------------------------- Version: 1.0.61 Date: 29.08.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index dcb6c17..14beab0 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.61", + "version": "1.0.62", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 014eed03aa9a9c5300c105e74eea093d9982294f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 9 Sep 2025 19:09:32 +0200 Subject: [PATCH 005/108] Fix vanilla more item weights --- lignumis/prototypes/integrations/vanilla.lua | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 16b0477..ac6dd49 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -339,11 +339,24 @@ end -- Fix item weights -local function set_default_weight(item, items_per_rocket) - data.raw.item[item].weight = data.raw.item[item].weight or 1000 * kg / items_per_rocket +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) \ No newline at end of file +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) \ No newline at end of file From 2d327c805dca93c75ce8dd757825ad645456078e Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 9 Sep 2025 19:09:44 +0200 Subject: [PATCH 006/108] Wooden belts have half the weight --- lignumis/prototypes/content/wood-logistics.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lignumis/prototypes/content/wood-logistics.lua b/lignumis/prototypes/content/wood-logistics.lua index a575ba8..78cb353 100644 --- a/lignumis/prototypes/content/wood-logistics.lua +++ b/lignumis/prototypes/content/wood-logistics.lua @@ -33,9 +33,9 @@ Belt.EntityBuilder:new() }) local splitter_item = Belt.ItemBuilder:new() - :itemsPerRocket("transportBelt", 100) - :itemsPerRocket("undergroundBelt", 50) - :itemsPerRocket("splitter", 50) + :itemsPerRocket("transportBelt", 200) + :itemsPerRocket("undergroundBelt", 100) + :itemsPerRocket("splitter", 100) :order("0") :apply() .splitter From 7385751f2da492d8d5fb984778e57b5f4e401343 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 9 Sep 2025 19:11:11 +0200 Subject: [PATCH 007/108] 1.0.63 --- 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 7083de4..5bf266a 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,11 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.63 +Date: 09.09.2025 + Changes: + - Wooden belts have half the weight + Bug Fixes: + - Fix vanilla more item weights +--------------------------------------------------------------------------------------------------- Version: 1.0.62 Date: 02.09.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 14beab0..d2bee4d 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.62", + "version": "1.0.63", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 25b396affcbed7ceec38668b7aa81ab014cef6fc Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 10 Sep 2025 23:12:06 +0200 Subject: [PATCH 008/108] Fix more item weights --- lignumis/prototypes/content/gold/pipes.lua | 7 ++++++- lignumis/prototypes/integrations/vanilla.lua | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/lignumis/prototypes/content/gold/pipes.lua b/lignumis/prototypes/content/gold/pipes.lua index 4e555a4..766a788 100644 --- a/lignumis/prototypes/content/gold/pipes.lua +++ b/lignumis/prototypes/content/gold/pipes.lua @@ -84,6 +84,7 @@ local pipe_item = { place_result = "gold-pipe", stack_size = 100, weight = 5 * kg, + default_import_location = "lignumis", random_tint_color = item_tints.iron_rust } @@ -159,6 +160,8 @@ local pipe_to_ground_item = { drop_sound = item_sounds.metal_small_inventory_move, place_result = "gold-pipe-to-ground", stack_size = 50, + weight = 5 * kg, + default_import_location = "lignumis", random_tint_color = item_tints.iron_rust } @@ -347,7 +350,9 @@ local tank_item = { pick_sound = item_sounds.metal_large_inventory_pickup, drop_sound = item_sounds.metal_large_inventory_move, place_result = "gold-storage-tank", - stack_size = 10 + stack_size = 10, + weight = 50 * kg, + default_import_location = "lignumis" } local tank_recipe = { diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index ac6dd49..1e27aaa 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -359,4 +359,8 @@ 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) \ No newline at end of file +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) \ No newline at end of file From 9cff8c44011cb81f28952cf0b1bac36a2b3e9ec7 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 10 Sep 2025 23:18:41 +0200 Subject: [PATCH 009/108] Fix steam assembler scaling with increased energy usage from modules --- 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 ed85a59..da5ef2d 100644 --- a/lignumis/prototypes/content/steam-assembling-machine.lua +++ b/lignumis/prototypes/content/steam-assembling-machine.lua @@ -31,6 +31,7 @@ assembling_machine.energy_usage = "25kW" assembling_machine.energy_source = { type = "fluid", maximum_temperature = 165, + scale_fluid_usage = true, effectivity = 1, emissions_per_minute = { noise = 50 }, fluid_box = { From 8fb0fac8008ee2ae0a69b521739042f5403808f7 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 10 Sep 2025 23:19:31 +0200 Subject: [PATCH 010/108] 1.0.64 --- 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 5bf266a..3772a2a 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.64 +Date: 10.09.2025 + Bug Fixes: + - Fix more item weights + - Fix steam assembler scaling with increased energy usage from modules +--------------------------------------------------------------------------------------------------- Version: 1.0.63 Date: 09.09.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index d2bee4d..c62aa08 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.63", + "version": "1.0.64", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From c1797dfcfef903c31f80ac9823e333016491d019 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 11 Sep 2025 18:55:08 +0200 Subject: [PATCH 011/108] Remove warning for Alien Biomes --- README.md | 4 ++-- lignumis/scripts/init.lua | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fd55804..c5a282a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ [![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) + _________________ ![Lignumis poster](https://git.cacklingfiend.info/cacklingfiend/lignumis-assets/raw/branch/main/sources/readme/poster.jpg) @@ -117,7 +118,6 @@ _________________ ## Problematic / incompatible mods * The combination of AAI Industry and Any planet start is currently not supported. -* Alien Biomes: Lignumis won't have any trees. It's playable, but not as intended. * The rest of the Wooden Universe: I marked the ones incompatible that don't make sense to combine or that wouldn't add more that is not already included. _________________ @@ -178,7 +178,7 @@ _________________ - 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 + - 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) diff --git a/lignumis/scripts/init.lua b/lignumis/scripts/init.lua index ad58805..75773e3 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 script.active_mods["alien-biomes"] then - game.print("While Alien Biomes is playable with Lignumis, it is not recommended as it prevents trees from being generated on Lignumis.") - end - 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 From ee9eb8faf144ee928bb26686490d3ac644beff7d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 13 Sep 2025 21:38:39 +0200 Subject: [PATCH 012/108] More item weights --- lignumis/prototypes/content/burner-agricultural-tower.lua | 3 ++- lignumis/prototypes/content/burner-lamp.lua | 3 ++- lignumis/prototypes/integrations/vanilla.lua | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/lignumis/prototypes/content/burner-agricultural-tower.lua b/lignumis/prototypes/content/burner-agricultural-tower.lua index 32a2234..e76a2da 100644 --- a/lignumis/prototypes/content/burner-agricultural-tower.lua +++ b/lignumis/prototypes/content/burner-agricultural-tower.lua @@ -78,7 +78,8 @@ data:extend({ drop_sound = item_sounds.mechanical_large_inventory_move, place_result = "burner-agricultural-tower", stack_size = 20, - default_import_location = "lignumis" + default_import_location = "lignumis", + weight = 100 * kg }, { type = "recipe", diff --git a/lignumis/prototypes/content/burner-lamp.lua b/lignumis/prototypes/content/burner-lamp.lua index 57add6e..4b52e0a 100644 --- a/lignumis/prototypes/content/burner-lamp.lua +++ b/lignumis/prototypes/content/burner-lamp.lua @@ -146,7 +146,8 @@ data:extend({ subgroup = "circuit-network", -- Copper lamp under circuit-network order = "a[lamp]-b[copper-lamp]", -- Copper lamp after large lamp place_result = "burner-lamp", - stack_size = 50 + stack_size = 50, + weight = 20 * kg }, { name = "burner-lamp", diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 1e27aaa..c5097b8 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -363,4 +363,5 @@ 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) \ No newline at end of file +set_default_weight("fast-splitter", 50) +set_default_weight("steel-plate", 400) \ No newline at end of file From 9bf4a5d6ff42ec0d03b12efbdaa481db624910bd Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 14 Sep 2025 13:47:12 +0200 Subject: [PATCH 013/108] Add setting for infinite astroponics productivity research --- lignumis/locale/en/strings.cfg | 2 + .../prototypes/integrations/astroponics.lua | 83 +++++++++++-------- lignumis/settings.lua | 7 ++ 3 files changed, 56 insertions(+), 36 deletions(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 09877f7..a9481d3 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -190,6 +190,7 @@ lignumis-early-robots=Even earlier personal robots lignumis-vanilla-lab=Keep vanilla lab recipe lignumis-double-rocket=Double provisional rocket cargo capacity lignumis-sciences-spoil=Lignumis science packs spoil +lignumis-infinite-astroponics-productivity-research=Infinite productivity research for Astroponics [mod-setting-description] lignumis-belt-progression=Yellow belts will require wood belts to craft. @@ -205,6 +206,7 @@ lignumis-early-robots=Personal robots are moved from steam to wood science and a 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-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). [autoplace-control-names] lignumis_enemy_base=Lignumis enemy bases diff --git a/lignumis/prototypes/integrations/astroponics.lua b/lignumis/prototypes/integrations/astroponics.lua index b531625..491069f 100644 --- a/lignumis/prototypes/integrations/astroponics.lua +++ b/lignumis/prototypes/integrations/astroponics.lua @@ -1,38 +1,49 @@ -data:extend({ - { - type = "technology", - name = "astroponics-productivity", - icons = { - { icon = "__base__/graphics/icons/wood.png", icon_size = 64 }, - { icon = "__astroponics__/graphics/icons/fluid/liquid-fertilizer.png", shift = { -32, -32 }, scale = 1.2 }, - { - icon = "__core__/graphics/icons/technology/constants/constant-recipe-productivity.png", - icon_size = 128, - scale = 0.5, - shift = { 50, 50 }, - floating = true - } - }, - essential = false, - level = 1, - max_level = 5, - show_levels_info = true, - effects = { - { - type = "change-recipe-productivity", - recipe = "tree-astroponics", - change = 0.1 - } - }, - prerequisites = { "astroponics", "production-science-pack" }, - unit = { - count_formula = "L*250", - ingredients = { - { "wood-science-pack", 1 }, - { "production-science-pack", 1 }, - { "space-science-pack", 1 }, - }, - time = 60 +local infinite = settings.startup["lignumis-infinite-astroponics-productivity-research"].value + +local base_levels = { + type = "technology", + name = "astroponics-productivity", + icons = { + { icon = "__base__/graphics/icons/wood.png", icon_size = 64 }, + { icon = "__astroponics__/graphics/icons/fluid/liquid-fertilizer.png", shift = { -32, -32 }, scale = 1.2 }, + { + icon = "__core__/graphics/icons/technology/constants/constant-recipe-productivity.png", + icon_size = 128, + scale = 0.5, + shift = { 50, 50 }, + floating = true } + }, + essential = false, + level = 1, + max_level = 5, + show_levels_info = true, + effects = { + { + type = "change-recipe-productivity", + recipe = "tree-astroponics", + change = 0.1 + } + }, + prerequisites = { "astroponics", "production-science-pack" }, + unit = { + count_formula = "L*250", + ingredients = { + { "wood-science-pack", 1 }, + { "production-science-pack", 1 }, + { "space-science-pack", 1 }, + }, + time = 60 } -}) +} +data:extend({ base_levels }) + +if infinite then + local infinite_levels = table.deepcopy(base_levels) + infinite_levels.name = "astroponics-productivity-6" + infinite_levels.max_level = "infinite" + infinite_levels.unit.count_formula = "2^(L-6)*1500" + table.insert(infinite_levels.unit.ingredients, { "agricultural-science-pack", 1 }) + infinite_levels.prerequisites = { "astroponics-productivity", "agricultural-science-pack" } + data:extend({ infinite_levels }) +end diff --git a/lignumis/settings.lua b/lignumis/settings.lua index 2a8c02b..ddde9f0 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -90,6 +90,13 @@ 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 = "string-setting", name = "lignumis-second-planet", From 607ce9feb8dc75b8fcf47baff0d9ddea9d12b7d4 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 14 Sep 2025 13:48:30 +0200 Subject: [PATCH 014/108] 1.0.65 --- 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 3772a2a..bdcde83 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,12 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.65 +Date: 14.09.2025 + Changes: + - Remove warning for Alien Biomes + - Add setting for infinite Astroponics productivity research + Bug Fixes: + - Fix more item weights +--------------------------------------------------------------------------------------------------- Version: 1.0.64 Date: 10.09.2025 Bug Fixes: diff --git a/lignumis/info.json b/lignumis/info.json index c62aa08..c18fe2b 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.64", + "version": "1.0.65", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 5c556646d9912445ff8a594c93c3d6b9c61c88d9 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 15 Sep 2025 18:13:53 +0200 Subject: [PATCH 015/108] Update Discord link --- lignumis/info.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/info.json b/lignumis/info.json index c18fe2b..95b1cea 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -4,7 +4,7 @@ "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", - "homepage": "https://discord.gg/5bevXf5W", + "homepage": "https://discord.gg/ufvFUJtVwk", "factorio_version": "2.0", "space_travel_required": true, "dependencies": [ From 2336ad4d44ff42bf3d479cc886dc1147668a67bc Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 17 Sep 2025 23:21:16 +0200 Subject: [PATCH 016/108] Buff Lignumis enemies --- lignumis/prototypes/content/enemies.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/enemies.lua b/lignumis/prototypes/content/enemies.lua index 76d76d8..eebe2f5 100644 --- a/lignumis/prototypes/content/enemies.lua +++ b/lignumis/prototypes/content/enemies.lua @@ -435,7 +435,7 @@ make_wriggler("lignumis-small-", 0.2, 10, 0.1, space_age_sounds.wriggler_pentapod.small ) -make_wriggler("lignumis-medium-", 0.4, 20, 0.2, +make_wriggler("lignumis-medium-", 0.5, 50, 1, { mask = fade(lerp_color(gleba_small_mask_tint, { 255, 200, 0, 255 }, 0.4), 0.2), body = grey_overlay(lerp_color(gleba_small_body_tint, { 255, 0, 0, 255 }, 0.4), 0.2) From aaea504cef0507ce9be5d2c89b3800ae7ff5a8f7 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 17 Sep 2025 23:21:28 +0200 Subject: [PATCH 017/108] More item weights --- lignumis/prototypes/content/wood-military.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/wood-military.lua b/lignumis/prototypes/content/wood-military.lua index 775245b..1dd775f 100644 --- a/lignumis/prototypes/content/wood-military.lua +++ b/lignumis/prototypes/content/wood-military.lua @@ -76,7 +76,8 @@ data:extend({ pick_sound = item_sounds.wood_inventory_pickup, drop_sound = item_sounds.wood_inventory_move, stack_size = 100, - weight = 10 * kg + weight = 5 * kg, + default_import_location = "lignumis" }, { type = "recipe", From 702e218a6217031de59de02e3e7ac82b7da3200f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 21 Sep 2025 08:42:29 +0200 Subject: [PATCH 018/108] Buff wood liquefaction recipe by 50% for electric assemblers --- lignumis/prototypes/content/wood-liquefaction.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lignumis/prototypes/content/wood-liquefaction.lua b/lignumis/prototypes/content/wood-liquefaction.lua index 8d5f7c6..092692e 100644 --- a/lignumis/prototypes/content/wood-liquefaction.lua +++ b/lignumis/prototypes/content/wood-liquefaction.lua @@ -65,10 +65,10 @@ data:extend({ }, ingredients = { { type = "item", name = "wood", amount = 1 }, - { type = "fluid", name = "steam", amount = 5 } + { type = "fluid", name = "steam", amount = 10 } }, results = { - { type = "fluid", name = "wood-pulp", amount = 10 } + { type = "fluid", name = "wood-pulp", amount = 15 } }, allow_productivity = true }, From a158a42cfe2ec91ac1c90d1edfab9c45eaf7142e Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 21 Sep 2025 09:13:01 +0200 Subject: [PATCH 019/108] Buff Cupriavidus Necator starter recipe --- lignumis/prototypes/content/mid-game-recipes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/mid-game-recipes.lua b/lignumis/prototypes/content/mid-game-recipes.lua index bf57604..6b3c7eb 100644 --- a/lignumis/prototypes/content/mid-game-recipes.lua +++ b/lignumis/prototypes/content/mid-game-recipes.lua @@ -14,7 +14,7 @@ data:extend({ { type = "fluid", name = "wood-pulp", amount = 100 }, { type = "fluid", name = "water", amount = 100 } }, - results = { { type = "item", name = "cupriavidus-necator", amount_min = 4, amount_max = 10, probability = 0.1 } }, + results = { { type = "item", name = "cupriavidus-necator", amount_min = 4, amount_max = 10, probability = 0.15 } }, result_is_always_fresh = true, icons = { { icon = Lignumis.graphics .. "icons/cupriavidus-necator-1.png" }, From 7ccd4d3a82a9f35432e47843dd4c1a740a543a41 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 21 Sep 2025 10:17:52 +0200 Subject: [PATCH 020/108] 1.0.66 --- 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 bdcde83..7344ebd 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,13 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.66 +Date: 21.09.2025 + Changes: + - Buff medium wrigglers + - Buff wood liquefaction recipe by 50% for electric assemblers + - Buff Cupriavidus Necator starter recipe chance + Bug Fixes: + - Fix more item weights +--------------------------------------------------------------------------------------------------- Version: 1.0.65 Date: 14.09.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 95b1cea..1125009 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.65", + "version": "1.0.66", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 82ea8f38625b4ae2b0764f2f57bf3215e5d34161 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 21 Sep 2025 12:32:22 +0200 Subject: [PATCH 021/108] Reduce energy usage of Active noise cancelling tower --- lignumis/prototypes/content/active-noise-cancelling-tower.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lignumis/prototypes/content/active-noise-cancelling-tower.lua b/lignumis/prototypes/content/active-noise-cancelling-tower.lua index a9e0d84..a4787cd 100644 --- a/lignumis/prototypes/content/active-noise-cancelling-tower.lua +++ b/lignumis/prototypes/content/active-noise-cancelling-tower.lua @@ -22,7 +22,7 @@ data:extend({ max_health = 150, crafting_speed = 1, crafting_categories = { "active-noise-cancelling" }, - energy_usage = "2MW", + energy_usage = "1MW", energy_source = { type = "electric", usage_priority = "secondary-input", From eb6b0d638462f5321ad8d84d0aa11e8ed069cd6c Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 24 Sep 2025 22:33:32 +0200 Subject: [PATCH 022/108] K2SO: Move K2 starting recipes to Nauvis technologies --- lignumis/prototypes/compatibility/k2so.lua | 40 +++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/compatibility/k2so.lua b/lignumis/prototypes/compatibility/k2so.lua index afd1849..88637a9 100644 --- a/lignumis/prototypes/compatibility/k2so.lua +++ b/lignumis/prototypes/compatibility/k2so.lua @@ -1,6 +1,44 @@ +local Technology = require("__cf-lib__/data/Technology") + if not mods["Krastorio2-spaced-out"] then return end data.raw.recipe["burner-inserter"].ingredients = { { type = "item", name = "wooden-gear-wheel", amount = 1 }, { type = "item", name = "lumber", amount = 1 } -} \ No newline at end of file +} + +Technology:new("kr-automation-core"):addPrerequisite("iron-processing") + +local function lock_recipes(technology, recipes) + local tech = Technology:new(technology) + for _, recipe in pairs(recipes) do + tech:addRecipe(recipe) + data.raw.recipe[recipe].enabled = false + end +end + +lock_recipes("iron-processing", { + "iron-stick", + "kr-wind-turbine", + "kr-iron-beam", + "kr-inserter-parts" +}) + +lock_recipes("copper-processing", { + "copper-cable", + "small-electric-pole" +}) + +lock_recipes("planet-discovery-nauvis", { + "kr-rare-metals" +}) + +Technology:new("electronics"):removeRecipe("kr-electronic-circuit-wood") + +if settings.startup["kr-realistic-weapons"].value then + local pistol_attack = data.raw.gun["pistol"].attack_parameters + pistol_attack.ammo_categories = pistol_attack.ammo_categories or { pistol_attack.ammo_category } + pistol_attack.ammo_category = nil + table.insert(pistol_attack.ammo_categories, "bullet") + data.raw.recipe["firearm-magazine"].enabled = false +end \ No newline at end of file From e4fdd67bdf40e055355a5f53fa96ddfcfa4f8d5d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 24 Sep 2025 23:17:53 +0200 Subject: [PATCH 023/108] Fix potential crash when escaping to Nauvis --- lignumis/scripts/to-nauvis.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lignumis/scripts/to-nauvis.lua b/lignumis/scripts/to-nauvis.lua index 5d3d432..0e8a553 100644 --- a/lignumis/scripts/to-nauvis.lua +++ b/lignumis/scripts/to-nauvis.lua @@ -73,10 +73,12 @@ local function transit_player(player_index) -- Give the player the content of the rocket if transition.rocket_entry.rocket_content then local inventory = player.get_main_inventory() - for _, item in pairs(transition.rocket_entry.rocket_content) do - inventory.insert(item) + if inventory then + for _, item in pairs(transition.rocket_entry.rocket_content) do + inventory.insert(item) + end + inventory.sort_and_merge() end - inventory.sort_and_merge() end table.remove(storage.rocket_silos, transition.rocket_entry_index) end From 443eee9e175e5efd837a1b281b08f286fa5d8b01 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Wed, 24 Sep 2025 23:19:09 +0200 Subject: [PATCH 024/108] 1.0.67 --- 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 7344ebd..c7ba659 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,12 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.67 +Date: 24.09.2025 + Changes: + - Reduce energy usage of Active noise cancelling tower + - K2SO: Move K2 starting recipes to Nauvis technologies + Bug Fixes: + - Fix potential crash when escaping to Nauvis +--------------------------------------------------------------------------------------------------- Version: 1.0.66 Date: 21.09.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 1125009..2442272 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.66", + "version": "1.0.67", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 429e8a3a41498fcb1682594a0ecabbe90169d531 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 28 Sep 2025 11:35:25 +0200 Subject: [PATCH 025/108] Readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c5a282a..7c35857 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,8 @@ Alternatives: [Burner Leech Fork](https://mods.factorio.com/mod/Burner-Leech-For - [Wooden Fulgora: Coralmium Agriculture](https://mods.factorio.com/mod/fulgora-coralmium-agriculture) - [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) #### [Any Planet Start](https://mods.factorio.com/mod/any-planet-start) From 74eb162d9a3da8f22b953bb823a5e7d2462dac7a Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 28 Sep 2025 11:36:00 +0200 Subject: [PATCH 026/108] Remove enemies from starting area when leaving Lignumis --- lignumis/scripts/to-nauvis.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lignumis/scripts/to-nauvis.lua b/lignumis/scripts/to-nauvis.lua index 0e8a553..a3694fa 100644 --- a/lignumis/scripts/to-nauvis.lua +++ b/lignumis/scripts/to-nauvis.lua @@ -25,6 +25,21 @@ local function init_nauvis() end +-- Removes enemies around the crash site to not mess with the player start +local function clear_enemies() + local nauvis = game.planets[storage.target_planet].surface + local enemies = nauvis.find_entities_filtered({ + position = { 0, 0 }, + radius = 200, + force = "enemy" + }) + for _, enemy in pairs(enemies) do + enemy.destroy() + end + +end + + -- Teleport player to Nauvis and show welcome message local function teleport_player(player) local nauvis = game.planets[storage.target_planet].surface @@ -67,6 +82,7 @@ local function transit_player(player_index) end init_nauvis() + clear_enemies() teleport_player(player) init_freeplay() From 0e3c7c48193e8b5b826d5b3f8e6fdd18377ff480 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 28 Sep 2025 11:36:47 +0200 Subject: [PATCH 027/108] 1.0.68 --- 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 c7ba659..ed7c599 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.68 +Date: 28.09.2025 + Changes: + - Remove enemies from starting area when leaving Lignumis +--------------------------------------------------------------------------------------------------- Version: 1.0.67 Date: 24.09.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index 2442272..f979b9b 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.67", + "version": "1.0.68", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From ab24e7f496d6643dad0fa9e46774928e81bb2fe3 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 2 Oct 2025 22:10:47 +0200 Subject: [PATCH 028/108] Fix more item weights --- lignumis/prototypes/integrations/vanilla.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index c5097b8..63ff70f 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -364,4 +364,5 @@ 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) \ No newline at end of file +set_default_weight("steel-plate", 400) +set_default_weight("steam-turbine", 10) \ No newline at end of file From a28be675caa4ba308eb893b434aeed4b9cbccd30 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 2 Oct 2025 22:11:18 +0200 Subject: [PATCH 029/108] Readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7c35857..0f909da 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,7 @@ Alternatives: [Burner Leech Fork](https://mods.factorio.com/mod/Burner-Leech-For - [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) From 9d1d5d8cbd0a1b6fdcc1143bdbc022a19b039f46 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 2 Oct 2025 22:11:31 +0200 Subject: [PATCH 030/108] 1.0.69 --- 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 ed7c599..392d22e 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.69 +Date: 02.10.2025 + Bug Fixes: + - Fix more item weights +--------------------------------------------------------------------------------------------------- Version: 1.0.68 Date: 28.09.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index f979b9b..2d31d17 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.68", + "version": "1.0.69", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 0d93d1989d091effc4cdb3ecf1703ba8e520afe2 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 7 Oct 2025 21:50:22 +0200 Subject: [PATCH 031/108] Any Planet Start: Prevent crashes --- .../compatibility/any-planet-start-final.lua | 36 ++++++++++--------- 1 file changed, 19 insertions(+), 17 deletions(-) diff --git a/lignumis/prototypes/compatibility/any-planet-start-final.lua b/lignumis/prototypes/compatibility/any-planet-start-final.lua index c1bcb9c..61c38a7 100644 --- a/lignumis/prototypes/compatibility/any-planet-start-final.lua +++ b/lignumis/prototypes/compatibility/any-planet-start-final.lua @@ -4,29 +4,31 @@ if not mods["any-planet-start"] then return end local target_planet = settings.startup["aps-planet"].value -if target_planet == "none" or target_planet == "nauvis" then return end +if not target_planet or target_planet == "none" or target_planet == "nauvis" then return end Technology:new("tree-seeding"):setPrerequisites({ "wood-science-pack" }) -- Switch planet discovery technology to the new planet local planet_discovery = data.raw.technology["planet-discovery-" .. target_planet] or data.raw.technology["moon-discovery-" .. target_planet] -Technology:new(planet_discovery) - :assign({ - enabled = true, - hidden = false, - unit = { - count = 100, - ingredients = { - { "wood-science-pack", 1 }, - { "steam-science-pack", 1 } - }, - time = 30 - } - }) - :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 planet_discovery then + Technology:new(planet_discovery) + :assign({ + enabled = true, + hidden = false, + unit = { + count = 100, + ingredients = { + { "wood-science-pack", 1 }, + { "steam-science-pack", 1 } + }, + time = 30 + } + }) + :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) +end -- Vulcanus From f76c7e65644f62b7e4fbe537c1b49db0011cb341 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 7 Oct 2025 21:50:58 +0200 Subject: [PATCH 032/108] 1.0.70 --- 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 392d22e..59d7573 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.70 +Date: 07.10.2025 + Bug Fixes: + - Any Planet Start: Prevent crashes +--------------------------------------------------------------------------------------------------- Version: 1.0.69 Date: 02.10.2025 Bug Fixes: diff --git a/lignumis/info.json b/lignumis/info.json index 2d31d17..63764fc 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.69", + "version": "1.0.70", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From f8cfa91b70a5945e17564022b763f290376dd8e4 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Fri, 17 Oct 2025 10:22:04 +0200 Subject: [PATCH 033/108] Use 60 sec crafting time for active noise cancelling to visualise progress Reduce energy usage to 500kW --- lignumis/prototypes/content/active-noise-cancelling-tower.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lignumis/prototypes/content/active-noise-cancelling-tower.lua b/lignumis/prototypes/content/active-noise-cancelling-tower.lua index a4787cd..294e5f5 100644 --- a/lignumis/prototypes/content/active-noise-cancelling-tower.lua +++ b/lignumis/prototypes/content/active-noise-cancelling-tower.lua @@ -22,7 +22,7 @@ data:extend({ max_health = 150, crafting_speed = 1, crafting_categories = { "active-noise-cancelling" }, - energy_usage = "1MW", + energy_usage = "500kW", energy_source = { type = "electric", usage_priority = "secondary-input", @@ -113,7 +113,7 @@ data:extend({ name = "active-noise-cancelling", icons = { { icon = Lignumis.graphics .. "icons/active-noise-cancelling.png" } }, enabled = false, - energy_required = 1000000, + energy_required = 60, ingredients = {}, results = {}, category = "active-noise-cancelling", From 03f58c1493e729060ddc52cd22daa2a6f0013a27 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 20 Oct 2025 23:13:55 +0200 Subject: [PATCH 034/108] Move wriggler sources to assets mod --- .../icons/lignumis-medium-wriggler-corpse.png | Bin 8850 -> 0 bytes sources/icons/lignumis-medium-wriggler.png | Bin 9699 -> 0 bytes sources/icons/lignumis-small-wriggler-corpse.png | Bin 7055 -> 0 bytes sources/icons/lignumis-small-wriggler.png | Bin 7623 -> 0 bytes 4 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 sources/icons/lignumis-medium-wriggler-corpse.png delete mode 100644 sources/icons/lignumis-medium-wriggler.png delete mode 100644 sources/icons/lignumis-small-wriggler-corpse.png delete mode 100644 sources/icons/lignumis-small-wriggler.png diff --git a/sources/icons/lignumis-medium-wriggler-corpse.png b/sources/icons/lignumis-medium-wriggler-corpse.png deleted file mode 100644 index 4d78edf05b6d12a11904e699f3a88c37e67048e4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8850 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 U%w4B_B>(^b07*qoM6N<$g1uyX$^ZZW diff --git a/sources/icons/lignumis-medium-wriggler.png b/sources/icons/lignumis-medium-wriggler.png deleted file mode 100644 index 55fd48b0bbe767696b77eddbc7f356ccf016c9ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9699 zcmV<9B^=s`P)sm!cr{LZqXBfQSf!pdwNQL{ULd5fD)jP!T~8yMhQJiXc_m&|w&0C_``3 zR0K7~mPB7(%1akzX1_WLy=U&3d+z@B-e>Q9F8O~<9)yJv zD)|K-Jz@$2ghIvufPc=e9koUb7DJVM5R}m|d=kj7 zgECI&bieN!J$LDB>wBfmX?laW-U{`rKM#CnZ$UXq`tnsDYY%N zrpy-Bnyd=CC9934$QL#cMg>6m29Rnhvi0+^BbsCkzeR9YmyTd1%k`7k1Ru}pj=TDm z{V&Wb81A+MnG|OAmD!(#1Q@hD`iVKOt~K`Q#%(JiM(4y169_%AS=alhX>eYQ%Fn5L zMBr*F{MNxi8HVP@o5+6&lyQMo)|P2D_cogiJRVrm)ZV0%m>4Df+sZ-4tmv=7_RRgz7%dE=lExAPR$bAW!NFpQ_t(jnFTa<4 zeBbNU?P_@(Jgks%{&KP+fT_R!%y-IDz;G_FsS0{lQgLoGEApf4u5{)5IcKLMH;~}$ z0XbyS&tCKk+|p;`xT58IKz2li0udo9)dmjpLN{*|3OT+>wA*d7%2OpxDZltco7}`i zrC4U>V zN`29zh8;T=ZTRf#pXV3VnbK|5660^?&khy&(s*~67xb+X@r3C zA$bW23z8f8mKSRi)sW&dZTOUnI5*C13PQF`<(=|hIBc+PC3pEc`OAciD>uJUh;bMZ z2peg5>N+(k$s*O(Rddu^{M(T7hTUw zwl5u7%UF%fHEgg2K4g^u#sZr=^ZHwlcQO(b`h#~19VKMSj0x*;r2Uy*CaYpgd3VQY zM8<5(F0SZQu52l>Dy*X$S9f+gFgu%_E1p8Gr+j{Pca9|3=Y_$Jq#)s#0uJxe#?c^s z&b3%e&9?5Bsyz?#_cnH188X|bj@gT58+<@vXGOQ8rlo6-Np0_-wQZ8I?~2dt8osVH)$?zrO&n-kK)N6!HfPd zX$pnRuD?cyf~pJwgy!+x35YrFId-K=jLB_UF%|9ioRuc>fGT(U&0OEEW&At5#c89 zCOoGV0-SRp>b%_C1En8-jm6z}s>0K6?HkrzHJ>+Uk+ds-si}FX8so0|M(l=~bq z-Cmnps_<5sX>&tQ`UgGz>|=d8oi0npP?jkDxrHflBYeywqC`eUf+)?NzH^<>rU*~* z=ash{;N`#ZDj9)-IT5}|H_T5;b$g}bfj^Vn2`l>g>2>`dp4s3Z{nK!#VirPzb<*Ft z$b+Jd9d&D-e)Uu}DL=`fw7zu1!-w}*(Tg*bAAJ5``ryZdE7MET*A>;3t-n=%%POlP z%d(=rLcgk|+_a~sQI;J>1o)`}n@t4pfdGn6Fkeyl$$MG-)=Pc;TfuI2<=!fEc$;#| z8<7bCICCx72Y92IUX?!O4@c6*MBr?;YFk^A7asJ5^E%tZx%abX^Y z3PaC)(3q`Z zaolZkDmxvv`gj;2RKAS)FHIYJbBAM6tE+3>ar)wx3jQ^f?=ho@XncWbR&lOwTW^)) zQu60u!l!q%?sgq$U(LJUr1bjcRV~hjEh;DZ{h9gki|TLJuPds}wen00lvn0DUp(@HK&vtTqZj8Yk?&I6weDBZu`vADUp*yO{}4viF~+s)`|3)Sm- z7Cd{rcihSwI^10Q1~#LnA@pr^+wo{0xV(-0l$3^y+ioQl50 z4LN)ChaKMbFtXFSK;D7+zNgB|t6hBNOpwBR5jKV2*dr;>=b%tjtdbQawV95s-HqlH+7#0B=%{Q_ys*ceLh7Lx z408NYK8ayx%qgxfHu|c$VkpWA}}uBvBZPhN-{DYTtQ@cO}MgSG_e+VrO!q#!!ChI&MzX9B$cBL1cy~ z;%3M!^j#;|t}BG1V-##!GYiX<#ZVPJ7oHwkFf?1q^VqlLt;q&W%+rxZ zn-84^5DKH>VCsc9r|$RSlfR~{OUFBlh|V^+RKwnZ+M0cDvWtDOCvfF`e*dSB9?dJN z%-@#7%(Qs%&EM2J?sn*3%e=O|d$40!Rekx{EJnuG(&h^N=-jxij~{pI^xc1=$IMY! zaq9v(T%RHR_=kJb!Rsd&s;A&HCc(`UGx7QpN5r3Bfh*BY2svsB%Z(~A04RJx_4kJf z_4fX_w4o=u@XkOK>Ko&RSuHn)cO5Xtd`0QnF>9dyzN}yZ<0VD_V)3b#MJ3m@z&Itw zsoPJmL01I^$}{1!k^;Iv4Jmu)V$(87ltu_3_pC4sO;xaR)e@ePx-@1g)6&Fs#HWub z9OXk5vJVsXu8&z@@xU)=W!QvQny3Q+gz~2oe76(2DNc6`W%yw-8O{i&4i{XI`m<*9iVsVIeTbmMi-HU06!;kvgjor~ zKy4n@X$vA`3k4_qr(>bQR4A&>;H@%M!zy##^MnwgargUs6b>&|E$=Fx`efuCr1=Um zO6XsOurU`MRlUr+u-t=JnH|EZuMgrdm?7BVu`;{5dO)Usu+t`!nPx#}WSQqw<~UR} zGW6=(D^0rl*j|;5rN>xJCHA%TSvEA95UFEYFmLCHp*2l<$i+g68)i$z)vYwd?WLeG zUI--@r6DCX9p0Anad@XX+}zc;vFBFv!q2R81u&(%uhqQ1gXP$Mr)yQ;K#tSxyJ^U{ z6~x)JL+$NSJ!PJn?%a!H1Rfqbg1_a`m_=^ZSy_7?M4WNrg&to6PoL%R_Fjn-0p>V; z*cg>jQ}D8c@NS|y;?O2giJt+3m}qU`sOJU-v2Eo-zo@-(c*H!c3!V*8j@#aAhrCgqtT?`9|}tAcs# z<^WD|`VK5Nn6vB4Z+}|W-rH;veJk3nzPnyOksiCHzOPfOudm9ftSs=v^Ox*pgI_|z zqsv3=Ufs&qPYcC)m61Zc7$0$5-9bT=D+Muo1i%a=xOatu=$#_4&=AFTtC_IfFqc-R;4#D{FK?>ckOku{O;|~BgDpU>%QB(EU7TT zv4(NfGqxXPHq0X00do zbBqLzFEkM-mb0MVnP(#KWTAoZgQd2Due3BpUT@JCK5TrIx5 zX){VvU4|=44xp{`1h1td7?E*XKaY%w@Th67SyjqRHLIvN?((Ek@$V0>PeVDqriTxAmUHS;G34IcvVS3+eqI9J1VLU6C{kZ6aGrL zaAX;$xh@4o4cU1B7L?Rx+h2?ceR=L;2o4`w#oM-96WT_~9C@`FSZ=J64?wZCyUDt} zv&E&5QK(8jfcq_m1sSJ=c`J1#Z~n4$u0uQob%>6b8c`FPcTiGV!CX>)t-g$lrj*~}B@?mUmSh9lhDZAVa04>ej z7QGSbw*ZwH_ME25gS=y5o3P4G-;&R+nxmSKjt3b{<#y7E?3Fx?2Mu+8xEk*{=n>{P zx=gV7CDF--3FUO8`KC|1pIc$gt7q-!wy^i1r!5c<2hMW)yAEN*eGhk4Z=pZV7rvG2 zN&c~2hX(I;GQ0;@#qen!;r+d4D!#q53t!y{!nb#A;O8!hN96>`z5WHb|5%-KNOVaaA(aIgQm73&&FxP@WG>d zh7KOzgSd>?;JU^tgS|o9ru}cbOh3Q0b@`%48M}7LbrNDMKpB6_vEwfrf9HnEKLZim z9XhS4s@NXgU1#3JCb`4VPVWF2fw3{4yom_j{2Ea^o}%=yuHGAEWu700p0+lar0elS zt#(_yjLU_b`N%J_;@rONkKT5FbhY~7lZUyyhMIjCC|iJ*lLSfI2==ZKMp=Y7e(n>+ zt6EWf)h37U2AuHSgYEd@_8NFtO-I*_8MqNR4{hnzIOVk%-8q8jEhXqkqM`Y^3=VoK zASBogdjni?B|aK$-5p#d9d(|Xjv@@rv^l%?ZF}qCyM4$v+?~5W)b(XjM!fRBvW58i z+gkZgAKv&mz~Ax{LWlr`GC}Z%F+rS32w8kRWA#uaV=pJ+x&zkRsYXr^{C*lnA!I+1 zb-y+}zK}i-b(wQ{#kmf<$Yezr-c8yoS)?YJp^U1UEyI0%htSjPkN)0R-0e>0v9Bm_ z?k3W>Pt&OQEQ#RrEP{V@5=88jLRN?*cwgA!%@-bck}HGWc-0Yt%}{(=7Z-e2Biuz7 znP-;Z=Q}gdpGy$FlOVv)5MgIMaV{nTK|zOjHtu^-+kFSjnu=kY9UF!`_q)A066*7# zv$r)=4HoX25cF>cG|cj}lU`mUwP*~ohc-l*Pl^%);thu*4{ZNV11O2zA5QM@dt;;XKY@bkwDFmzWLr#BHr)6>7OAhzTwj*el z7J_#vpf6P#Pnk4ym#U+=WD~-|wjwYn2nrfYcso6IatlgwIGdcUhI~RjUhh5V_S5Q( z+K^o$*2cHQf3++KfWoH7iT_*MiXfEJ*&6oMjqbdRTkf!SQ%`$m;UB1jkL`?&PDzaj z(QmBVbnLjx9x@p*;if2LW+>4+Trlr-arzowPMRsNI^P*}OjpF5T!EtV1jlzyLteNv zey9*ZS-2Qj=cVyet1upyiQr)(73VgKKv{MQ0RR|cZf6ruQ$B%F0c(0Gvo z-s3H(r@O(*Q3o^SXTjaunR6mCl;h-TH+&#q_nUPV`a_DkGMK3&{`Kr7vsK32EcN#h z_V3+)K1W@IkO}& zXYN$^I7lGjAi;4rQ8;g&g{4L^(9lzc!`AiK>FJ1#n@xEd+OviisY+m;p2Qp3<&tJ( z6u(c1_}zKw1c_IYP1n^hk8tDS++noyqkvJl{C0#);g6pLLDs~kJO5iE{`XM)#-H5y zaa<#px{+-`;Sz6CqL*^x&&%+#LJ3$W2y&eWS_26-XwAW9M|-F!%fm!T1Q%>6uvHVl z83ziQqXf_#Hw}ANPQxC$WrXpcELGE7<;2psknOnjeEB)aWxc0S%mx9(i^Cr|u|K&cv_B^K9 zzgfa;>WR|4({aI#Ug`ElX`%^wQ&#cH!=w?tOALeYRJ8aJ1el0p&Vsp^F!f$ zAplPU0kDDyQV-B@VbcQ8_i4gXT?QUTf_Qk7U?7_CYrtqLQi6xqDj2L<1~v6L_()+Y z7O76dN9xnKGgPM(h%1S!{0GT>KN1tT({A0_$I^x4&IOs{u6t5{-2KZ5HV>YcsBSr{ zRaFygSJQa(a4Ez0e174+t2y-j7s@lkW14HD+HcoK4fEa(;C|J9WcbgQ3g}xY$n_LQq>UJ^T2Qb?UI0PnR9vtl$abe7#6baS^0S~JCydZdR3!OP zki3_IiWnNQl4e6rQ4AuYg7`>fI`j+`puci4Pg_TRSl>h~h`&$#q2T7P{&qS(e#(p& z%@W@gU8TIS+)OklHNo%ii89&l^9l;KyB8PlEY8Yue^p%U%c-b4fbvEklvaA8nCXpt zx;Lr{j-aLHD2lSTptane+ncKa_CqSu&L=bCA5N}KHNd`gRX@VRlf*%mN@)1BnBZO#Yr6m^+%Pk$0f}C*<`-k9lBc;o|mKf1(0_GAXThJd(S2@2qA?iQDtc|7q_^pqjeU z@Ow#sfIzT_Y_f-)u&;sy2!kMd2>ULJA_`g+p{TToJILmOphDTKWf4>sfpJG$Ypr#3 zT5GGFuH$st(`CAuy!Va4(sX*pPJ3EBgXBBsp5(ln^OAGF_y705|Nq^aW+7@C^RT)k zO%j{tE{RFBr;}2w>F8KM6LnES>#gQ!H2Jw*NmtUcR-;9LXcF zIf?-b9X7ag6_MnmfT~au&G7`PQq*8&ITsn;iV(W8V6MZ4xwgUtp|++hSR1oo$9>Su z*x(we!AM^fre+$jahOe8+j3|dho@+siw>-8bPyqQ#Ho=T=<6*Jmsh01*WaV-C+S3z znCXxv1VL00VEnk1P-MT z*cCzGU^;;n0tWnT6tE+?D`77gv-yW*> zr}MJ8w6li}Z5J{dhKtyrXnK&H+CF51t{>}pU4Pb1Jx|v6M&1hGMl)cMM#3V2gn0%5 z<5&`AzDzjAFcFZ>LZH7Q7C0)w-=2j9mMlrOH$goUK%h2?!0UQ+Ogdm`Xx`jtLu<|!V@LH~6D##GBcA#-Lwofb##X8?o46>CTV}9t zIAyWEaSv4f&cjs=fi6l|vXI2OAVN|VNzjK233RO?P@PPmE|)-k0f8;4dMHV9MozRV z9q4BPUxD#g`nnpG+J-_CgL09ZaKgmj%Nq&`Kzas%J3n-pxJb15Xt7o7mP_wXb*9`EmoAY!OU*k?ej0$$75-5)) zBwG>*RA&>|zlx2+TMW@u?uhnX0+bakpha;4#3nEJs<^{vHt|28XrgFQu-WuZOWSC?}UsvCY5 zIWi`)Mbhh!h#LRf)mbKX+HOvIn}q_Edy4}Z$PFT?P1$Vh*GyCSo-@Jxp)n@gq+%j4&&ax_ll#xMHgCFNZxl5&SV|9!u18er z{Lj_Y^faXe%O21fh&y-I`CcD26kli|a9|^OKQcrEJh!wPuNz6{o>_p=sl< zN!*v6et6%cI!@8S)7EI+8*sn9C6^vJzLu(QNTW(N3bQ6Rc9+dWO9sID;4dDpesqDr zg*M{;l1v@&{O6sTsv5G?jBM5z>4cTc`mnUb5dCcd)cC1v+`LwU^Oq{n)ssOzyLSVE z65P)Hvg4QaO^N}-suf#y^&8;DRv|Umvq5rvU@f`_SEHdLb0@KaP?DATW*9zuciDQ$ zy&&rDxZQV^o1Ebv!rL#4K&M92#Vch7W|php?`iR&`g>C7k&~-%>ijyiw2A1|8-(CT zyS?Xf=a%0D2Cmi2M7qB*P;a*ip6cylarHfozla48lk6 zwu$g{7w+BKEZ$ueNeM!oN2J$f0<@_R3Xnulsakn`ixZ9y#*Hde*RLq4tqoQpo@~g9`~VD(_3xKP z&uUXZ>?5_sq2(Nx&8=Lj?`Q@+c6K#}M^>O_cRVf3c7eN}cIfZODU&}6+&CPKrA0*9 zpZk~}e11!S+n3kk`Hqc<$&C~cPc~$t@XKe98gzHmm_NQCM5cZyZ?!);G?0w3)A^GA zfo0fU5k(7goZ%Fy87?FE_eJhfxbX>{p8bw%YPW`s6t9cE@$B}(cw#1DYAyHC$3pBl z;<(}DrF4vrtrT~6XVd%YG9k)yfoHT<@b4q|=SwLW5*A13Wo3nPXVQ9@e7t#EStPr@ z-7=}~Tq-WTR7wquEu{~(r9)KUL|cW;_WI*gin4P!NO_g`@e;gkzeDK2$#jgLFQbng zTSM11#vv@n<_nX6x!P0ZRitFg1pzWl>9G)%`@9QBPcOyTaG9j*P!YYOG8z7hxqr8e z&{QJ`c};iPTX1!wpl0+$5eE9!i#rY!NLD=^PV<+UUX~Usq3>t` zwR5{rlCqo+-&NM-@`C*nV7(O$fv)X`qUj4mdGyHOQaV4IPe-ow`jGA=OvT#pA7)MB=_Co+K^935!-c?Uh^ald;xj44-g*<&(GK@$q$caq}jEUc6lY z3x{})vGg-?>z$U6iNuSGiP@KjR6hOqk|zE-#Jt~F!9?EEYTG6(TrPQ?u8^IxIM_MI z>Fv`>)a^ln9^FfzXgTp!SSs64ZoShSz(exhzZS3upYrjy^PF#o_7IXy&nS01?3a@} zT_HQ3|Hf*YPhaPM|HUmQy03~!byqV{`JATUVcuBoo~M2E+}G$O`s{kZxA$&_&<#Zd z)myD`;L4R;1^Ea)L4U${bJ!#A#@K?Z`Eg3w{PZ%md}N-WD4HatudTDj`-MN8Oe5b7 l_(Zzv%Cf{c@;P_v@NdKHU5-s+`GWue002ovPDHLkV1j%TBK80P diff --git a/sources/icons/lignumis-small-wriggler-corpse.png b/sources/icons/lignumis-small-wriggler-corpse.png deleted file mode 100644 index 532e60dedf236cabb43d69b401aa97260f582323..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 7055 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 From 5cd457fbb80b645a70e8ffaa2a4c631e93556529 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 20 Oct 2025 23:14:10 +0200 Subject: [PATCH 035/108] readme --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f909da..7745fb7 100644 --- a/README.md +++ b/README.md @@ -263,4 +263,8 @@ _________________ [Larger Lamps](https://mods.factorio.com/mod/DeadlockLargerLamp) -- Burner lamp \ No newline at end of file +- Burner lamp + +Talandar + +- Planet graphics \ No newline at end of file From 50aa8a956dee78f5aac81658b44541739d8f1493 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 20 Oct 2025 23:17:37 +0200 Subject: [PATCH 036/108] 1.0.71 --- 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 59d7573..5e202df 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.71 +Date: 20.10.2025 + Changes: + - Use 60 sec crafting time for active noise cancelling to visualise progress + - Reduce energy usage of noise cancelling tower to 500kW +--------------------------------------------------------------------------------------------------- Version: 1.0.70 Date: 07.10.2025 Bug Fixes: diff --git a/lignumis/info.json b/lignumis/info.json index 63764fc..cb10f6f 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.70", + "version": "1.0.71", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 1e7800e4bb806ff59078bcc29dcf10b9c751d8de Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 20 Oct 2025 23:24:20 +0200 Subject: [PATCH 037/108] thumbnail --- lignumis/thumbnail.png | Bin 35246 -> 38681 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/lignumis/thumbnail.png b/lignumis/thumbnail.png index 8c07e6f2bcb2e4ef8f34705c7ea6dc97ffe9c8fe..a7604a5cf6d22b40bb85382fcffcdbeaa24f05b8 100644 GIT binary patch delta 37506 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 mS>LR0);H^$8uc&G`u_o~CHy}Q$-Pqm0000 Date: Tue, 21 Oct 2025 00:16:14 +0200 Subject: [PATCH 038/108] Fix changelog --- lignumis/changelog.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lignumis/changelog.txt b/lignumis/changelog.txt index 5e202df..6039303 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -2,18 +2,18 @@ Version: 1.0.71 Date: 20.10.2025 Changes: - - Use 60 sec crafting time for active noise cancelling to visualise progress - - Reduce energy usage of noise cancelling tower to 500kW + - Use 60 sec crafting time for active noise cancelling to visualise progress + - Reduce energy usage of noise cancelling tower to 500kW --------------------------------------------------------------------------------------------------- Version: 1.0.70 Date: 07.10.2025 Bug Fixes: - - Any Planet Start: Prevent crashes + - Any Planet Start: Prevent crashes --------------------------------------------------------------------------------------------------- Version: 1.0.69 Date: 02.10.2025 Bug Fixes: - - Fix more item weights + - Fix more item weights --------------------------------------------------------------------------------------------------- Version: 1.0.68 Date: 28.09.2025 From 9b268afba9468157add859986c8b19980106645d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 1 Nov 2025 17:14:01 +0100 Subject: [PATCH 039/108] Buff quality assembling --- lignumis/locale/en/strings.cfg | 1 + .../prototypes/content/quality-assembler.lua | 45 ++++++++++++++++--- 2 files changed, 41 insertions(+), 5 deletions(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index a9481d3..0ec7456 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -145,6 +145,7 @@ quality-assembler=Quality assembler aai-wood-loader=Wood loader basic-ore-crushing=Basic ore crushing astroponics-productivity=Astroponics productivity +experienced-quality-assembling=Experienced quality assembling [technology-description] wood-science-pack=Allows research of basic technologies based on wood products. diff --git a/lignumis/prototypes/content/quality-assembler.lua b/lignumis/prototypes/content/quality-assembler.lua index 480868c..0b94e6b 100644 --- a/lignumis/prototypes/content/quality-assembler.lua +++ b/lignumis/prototypes/content/quality-assembler.lua @@ -43,7 +43,7 @@ data:extend({ drop_sound = item_sounds.metal_small_inventory_move, stack_size = 50, fuel_category = "quality-catalyst", - fuel_value = "1MJ", + fuel_value = "2MJ", weight = 1000 / 50 * kg, }, { @@ -56,8 +56,8 @@ data:extend({ { type = "item", name = "tungsten-carbide", amount = 2 }, { type = "item", name = "supercapacitor", amount = 2 } }, - results = { { type = "item", name = "gold-quality-catalyst", amount = 2 } }, - allow_productivity = false, + results = { { type = "item", name = "gold-quality-catalyst", amount = 1 } }, + allow_productivity = true, allow_quality = false, enabled = false } @@ -76,8 +76,8 @@ QualityAssembler.EntityBuilder:new() energy_usage = "1MW", crafting_speed = 4, module_slots = 6, - allowed_effects = { "pollution", "quality" }, - effect_receiver = { base_effect = { quality = 2.5 } } + allowed_effects = { "consumption", "pollution", "quality" }, + effect_receiver = { base_effect = { quality = 3.5 } } }) QualityAssembler.ItemBuilder:new():apply() @@ -115,6 +115,41 @@ QualityAssembler.TechnologyBuilder:new() :additionalRecipes({ "gold-quality-catalyst" }) :apply() +data:extend({ + { + type = "technology", + name = "experienced-quality-assembling-1", + 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 = 1, + max_level = 1, + show_levels_info = true, + effects = { + { type = "change-recipe-productivity", recipe = "gold-quality-catalyst", change = 0.25 } + }, + research_trigger = { type = "craft-item", item = "gold-quality-catalyst", count = 1000 }, + prerequisites = { "quality-assembler" } + }, + { + type = "technology", + name = "experienced-quality-assembling-2", + 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 = 2, + max_level = 2, + show_levels_info = true, + effects = { + { type = "change-recipe-productivity", recipe = "gold-quality-catalyst", change = 0.5 } + }, + research_trigger = { type = "craft-item", item = "gold-quality-catalyst", count = 10000 }, + prerequisites = { "experienced-quality-assembling-1" } + } +}) + local function convert_category(name) local quality_name = name .. "-or-quality-assembling" data:extend({ From 290993776526dbeb24a2a15c0838a90e441df270 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 1 Nov 2025 17:54:21 +0100 Subject: [PATCH 040/108] Move parent planet calculation to data-updates --- .../prototypes/content/lignumis/planet-updates.lua | 14 ++++++++++++++ lignumis/prototypes/content/lignumis/planet.lua | 9 ++------- lignumis/prototypes/content/updates.lua | 3 ++- 3 files changed, 18 insertions(+), 8 deletions(-) create mode 100644 lignumis/prototypes/content/lignumis/planet-updates.lua diff --git a/lignumis/prototypes/content/lignumis/planet-updates.lua b/lignumis/prototypes/content/lignumis/planet-updates.lua new file mode 100644 index 0000000..c40262b --- /dev/null +++ b/lignumis/prototypes/content/lignumis/planet-updates.lua @@ -0,0 +1,14 @@ +local target_planet = settings.startup["lignumis-second-planet"].value or "nauvis" +if mods["any-planet-start"] then + target_planet = settings.startup["aps-planet"].value ~= "none" and settings.startup["aps-planet"].value or target_planet +end + +local lignumis = data.raw.planet["lignumis"] + +-- Set final solar power depending on parent planet +local solar_power = data.raw.planet[target_planet].surface_properties["solar-power"] or 100 +local solar_power_in_space = data.raw.planet[target_planet].solar_power_in_space or 300 +solar_power = solar_power * 1.2 +solar_power_in_space = solar_power_in_space * 1.2 +lignumis.solar_power_in_space = solar_power_in_space +lignumis.surface_properties["solar-power"] = solar_power \ No newline at end of file diff --git a/lignumis/prototypes/content/lignumis/planet.lua b/lignumis/prototypes/content/lignumis/planet.lua index f21ccd1..c4fd03c 100644 --- a/lignumis/prototypes/content/lignumis/planet.lua +++ b/lignumis/prototypes/content/lignumis/planet.lua @@ -21,11 +21,6 @@ local nauvis_lignumis = { } } -local solar_power = data.raw.planet[target_planet].surface_properties["solar-power"] or 100 -local solar_power_in_space = data.raw.planet[target_planet].solar_power_in_space or 300 -solar_power = solar_power * 1.2 -solar_power_in_space = solar_power_in_space * 1.2 - PlanetsLib:extend({ { type = "planet", @@ -53,7 +48,7 @@ PlanetsLib:extend({ map_seed_offset = 100, map_gen_settings = planet_map_gen, pollutant_type = "noise", - solar_power_in_space = solar_power_in_space, + solar_power_in_space = 300, draw_orbit = false, planet_procession_set = { arrival = { "default-b" }, @@ -63,7 +58,7 @@ PlanetsLib:extend({ ["day-night-cycle"] = 2 * minute, ["gravity"] = 4, ["pressure"] = 900, - ["solar-power"] = solar_power + ["solar-power"] = 100 }, asteroid_spawn_influence = 1, asteroid_spawn_definitions = asteroid_util.spawn_definitions(nauvis_lignumis, 0.9), diff --git a/lignumis/prototypes/content/updates.lua b/lignumis/prototypes/content/updates.lua index c6d2a3f..7087806 100644 --- a/lignumis/prototypes/content/updates.lua +++ b/lignumis/prototypes/content/updates.lua @@ -1 +1,2 @@ -require("fuel-category-updates") \ No newline at end of file +require("fuel-category-updates") +require("lignumis/planet-updates") \ No newline at end of file From 48f6b5594d8bc130f6c444020df4c10565bbb56f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sat, 1 Nov 2025 18:09:21 +0100 Subject: [PATCH 041/108] 1.0.72 --- 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 6039303..c8d6233 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,11 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.72 +Date: 01.11.2025 + Bug Fixes: + - Move parent planet calculation to data-updates + Changes: + - Buff quality assembling +--------------------------------------------------------------------------------------------------- Version: 1.0.71 Date: 20.10.2025 Changes: diff --git a/lignumis/info.json b/lignumis/info.json index cb10f6f..7e5c940 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.71", + "version": "1.0.72", "title": "Lignumis", "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", "author": "cackling fiend", From 867da1dd8ffdf2102c56066c23c521079a85a215 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 10 Nov 2025 20:44:28 +0100 Subject: [PATCH 042/108] Add provisional-rocket-part to provisional-rocketry effects (thanks Noreja) --- lignumis/prototypes/content/technology.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lignumis/prototypes/content/technology.lua b/lignumis/prototypes/content/technology.lua index d0f7dee..e6632a6 100644 --- a/lignumis/prototypes/content/technology.lua +++ b/lignumis/prototypes/content/technology.lua @@ -68,6 +68,10 @@ data:extend({ { type = "unlock-recipe", recipe = "provisional-rocket-silo" + }, + { + type = "unlock-recipe", + recipe = "provisional-rocket-part" } }, prerequisites = { "wood-liquefaction" }, From 9c3800e29312e11c4534d7d3bd87d59ba1aab590 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Mon, 10 Nov 2025 21:07:12 +0100 Subject: [PATCH 043/108] Remove wrong mipmap count --- lignumis/prototypes/content/lumber.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lignumis/prototypes/content/lumber.lua b/lignumis/prototypes/content/lumber.lua index d4e0ba6..8cb9b14 100644 --- a/lignumis/prototypes/content/lumber.lua +++ b/lignumis/prototypes/content/lumber.lua @@ -6,9 +6,9 @@ data:extend({ name = "lumber", icon = Lignumis.graphics .. "icons/lumber.png", pictures = { - { filename = Lignumis.graphics .. "icons/lumber.png", size = 64, scale = 0.5, mipmap_count = 4 }, - { filename = Lignumis.graphics .. "icons/lumber-1.png", size = 64, scale = 0.5, mipmap_count = 4 }, - { filename = Lignumis.graphics .. "icons/lumber-2.png", size = 64, scale = 0.5, mipmap_count = 4 }, + { 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]", From 0ec3d172bcefa4ab6698bce33d285981f545f245 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 11 Nov 2025 23:12:21 +0100 Subject: [PATCH 044/108] Add setting to restrict sciences to Lignumis --- .editorconfig | 3 ++ lignumis/locale/en/strings.cfg | 1 + lignumis/prototypes/content/steam-science.lua | 6 ++- lignumis/prototypes/content/wood-science.lua | 3 +- lignumis/settings.lua | 39 +++++++++++-------- 5 files changed, 33 insertions(+), 19 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..bbf3e21 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,3 @@ +[*] +indent_style = space +indent_size = 2 \ No newline at end of file diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 0ec7456..9416c90 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -178,6 +178,7 @@ wood=Wood fuel quality-catalyst=Quality catalyst [mod-setting-name] +lignumis-restrict-sciences=Restrict Lignumis science recipes to Lignumis lignumis-belt-progression=Enable progressive belt recipes lignumis-inserter-progression=Enable progressive inserter recipes lignumis-ammo-progression=Enable progressive ammo recipes diff --git a/lignumis/prototypes/content/steam-science.lua b/lignumis/prototypes/content/steam-science.lua index cb37493..171bab7 100644 --- a/lignumis/prototypes/content/steam-science.lua +++ b/lignumis/prototypes/content/steam-science.lua @@ -41,7 +41,8 @@ data:extend({ primary = { r = 0.65, g = 0.27, b = 0.18, a = 1.000 }, secondary = { r = 0.65, g = 0.27, b = 0.18, a = 1.000 }, }, - allow_productivity = true + allow_productivity = true, + surface_conditions = settings.startup["lignumis-restrict-sciences"].value and { { property = "pollutant-type", min = 3, max = 3 } } or nil }, { type = "recipe", @@ -59,7 +60,8 @@ data:extend({ primary = { r = 0.65, g = 0.27, b = 0.18, a = 1.000 }, secondary = { r = 0.65, g = 0.27, b = 0.18, a = 1.000 }, }, - allow_productivity = true + allow_productivity = true, + surface_conditions = settings.startup["lignumis-restrict-sciences"].value and { { property = "pollutant-type", min = 3, max = 3 } } or nil }, { type = "technology", diff --git a/lignumis/prototypes/content/wood-science.lua b/lignumis/prototypes/content/wood-science.lua index b80cbe5..3d90530 100644 --- a/lignumis/prototypes/content/wood-science.lua +++ b/lignumis/prototypes/content/wood-science.lua @@ -40,7 +40,8 @@ data:extend({ primary = { r = 0.65, g = 0.27, b = 0.18, a = 1.000 }, secondary = { r = 0.65, g = 0.27, b = 0.18, a = 1.000 }, }, - allow_productivity = true + allow_productivity = true, + surface_conditions = settings.startup["lignumis-restrict-sciences"].value and { { property = "pollutant-type", min = 3, max = 3 } } or nil }, { type = "technology", diff --git a/lignumis/settings.lua b/lignumis/settings.lua index ddde9f0..8296fdd 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -1,102 +1,109 @@ data:extend({ { type = "bool-setting", - name = "lignumis-belt-progression", + name = "lignumis-restrict-sciences", setting_type = "startup", - default_value = true, + default_value = false, order = "a" }, { type = "bool-setting", - name = "lignumis-inserter-progression", + name = "lignumis-belt-progression", setting_type = "startup", default_value = true, order = "b" }, { type = "bool-setting", - name = "lignumis-ammo-progression", + name = "lignumis-inserter-progression", setting_type = "startup", default_value = true, order = "c" }, { type = "bool-setting", - name = "lignumis-technology-progression", + name = "lignumis-ammo-progression", setting_type = "startup", default_value = true, order = "d" }, { type = "bool-setting", - name = "lignumis-basic-circuit-board", + name = "lignumis-technology-progression", setting_type = "startup", default_value = true, order = "e" }, { type = "bool-setting", - name = "lignumis-circuit-progression", + name = "lignumis-basic-circuit-board", setting_type = "startup", - default_value = false, + default_value = true, order = "f" }, { type = "bool-setting", - name = "lignumis-assembler-progression", + name = "lignumis-circuit-progression", setting_type = "startup", default_value = false, order = "g" }, { type = "bool-setting", - name = "lignumis-lumber-mill-more-recipes", + name = "lignumis-assembler-progression", setting_type = "startup", default_value = false, order = "h" }, { type = "bool-setting", - name = "lignumis-fulgora-wood", + name = "lignumis-lumber-mill-more-recipes", setting_type = "startup", default_value = false, order = "i" }, { type = "bool-setting", - name = "lignumis-early-robots", + name = "lignumis-fulgora-wood", setting_type = "startup", default_value = false, order = "j" }, { type = "bool-setting", - name = "lignumis-vanilla-lab", + name = "lignumis-early-robots", setting_type = "startup", default_value = false, order = "k" }, { type = "bool-setting", - name = "lignumis-double-rocket", + name = "lignumis-vanilla-lab", setting_type = "startup", default_value = false, order = "l" }, { type = "bool-setting", - name = "lignumis-sciences-spoil", + name = "lignumis-double-rocket", setting_type = "startup", default_value = false, order = "m" }, { type = "bool-setting", - name = "lignumis-infinite-astroponics-productivity-research", + name = "lignumis-sciences-spoil", setting_type = "startup", default_value = false, order = "n" }, + { + type = "bool-setting", + name = "lignumis-infinite-astroponics-productivity-research", + setting_type = "startup", + default_value = false, + order = "o" + }, { type = "string-setting", name = "lignumis-second-planet", From 4ea352f466f4d033bf9d07c225e7e346fe496a81 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 11 Nov 2025 23:12:28 +0100 Subject: [PATCH 045/108] editorconfig --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index bbf3e21..d1169ef 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,3 +1,3 @@ [*] indent_style = space -indent_size = 2 \ No newline at end of file +indent_size = 4 \ No newline at end of file From 67538d78f45ef335be005c192aad0eec0aef804b Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 16 Nov 2025 11:41:49 +0100 Subject: [PATCH 046/108] Update description to make breaking changes more clear --- README.md | 2 +- lignumis/info.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7745fb7..0db4bfb 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This mod extends the early game of Space Age by putting you on the moon "Lignumi 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 adding to existing games:** With the default settings, this mod will break a few things in your existing bases and space ships. Check out the settings to disable what you don't like. +**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. #### Streamers featuring Lignumis diff --git a/lignumis/info.json b/lignumis/info.json index 7e5c940..fd17e6f 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -2,7 +2,7 @@ "name": "lignumis", "version": "1.0.72", "title": "Lignumis", - "description": "Dive into the world of Lignumis, a moon of Nauvis offering only the most basic technologies.", + "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", "homepage": "https://discord.gg/ufvFUJtVwk", "factorio_version": "2.0", From 9d94502296a956770ee2ed1e793a64accd0045b6 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 16 Nov 2025 12:07:48 +0100 Subject: [PATCH 047/108] Add indicators to the settings --- lignumis/locale/en/strings.cfg | 28 ++++++++++++++-------------- lignumis/settings.lua | 22 +++++++++++----------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/lignumis/locale/en/strings.cfg b/lignumis/locale/en/strings.cfg index 9416c90..262ef96 100644 --- a/lignumis/locale/en/strings.cfg +++ b/lignumis/locale/en/strings.cfg @@ -179,20 +179,20 @@ quality-catalyst=Quality catalyst [mod-setting-name] lignumis-restrict-sciences=Restrict Lignumis science recipes to Lignumis -lignumis-belt-progression=Enable progressive belt recipes -lignumis-inserter-progression=Enable progressive inserter recipes -lignumis-ammo-progression=Enable progressive ammo recipes -lignumis-technology-progression=Enable progressive technologies +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=Enable progressive circuit recipes -lignumis-assembler-progression=Enable progressive assembler recipes -lignumis-lumber-mill-more-recipes=Enable more recipes for the lumber mill -lignumis-fulgora-wood=Add wood to Fulgora -lignumis-early-robots=Even earlier personal robots -lignumis-vanilla-lab=Keep vanilla lab recipe -lignumis-double-rocket=Double provisional rocket cargo capacity -lignumis-sciences-spoil=Lignumis science packs spoil -lignumis-infinite-astroponics-productivity-research=Infinite productivity research for Astroponics +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-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-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-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 [mod-setting-description] lignumis-belt-progression=Yellow belts will require wood belts to craft. @@ -202,7 +202,7 @@ lignumis-technology-progression=Adds wood and steam science packs to most late g 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-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 progressive recipes are enabled and helps with marathon games. +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. diff --git a/lignumis/settings.lua b/lignumis/settings.lua index 8296fdd..9cc4a5e 100644 --- a/lignumis/settings.lua +++ b/lignumis/settings.lua @@ -8,35 +8,35 @@ data:extend({ }, { type = "bool-setting", - name = "lignumis-belt-progression", + name = "lignumis-basic-circuit-board", setting_type = "startup", default_value = true, order = "b" }, { type = "bool-setting", - name = "lignumis-inserter-progression", + name = "lignumis-belt-progression", setting_type = "startup", default_value = true, order = "c" }, { type = "bool-setting", - name = "lignumis-ammo-progression", + name = "lignumis-inserter-progression", setting_type = "startup", default_value = true, order = "d" }, { type = "bool-setting", - name = "lignumis-technology-progression", + name = "lignumis-ammo-progression", setting_type = "startup", default_value = true, order = "e" }, { type = "bool-setting", - name = "lignumis-basic-circuit-board", + name = "lignumis-technology-progression", setting_type = "startup", default_value = true, order = "f" @@ -57,28 +57,28 @@ data:extend({ }, { type = "bool-setting", - name = "lignumis-lumber-mill-more-recipes", + name = "lignumis-fulgora-wood", setting_type = "startup", default_value = false, order = "i" }, { type = "bool-setting", - name = "lignumis-fulgora-wood", + name = "lignumis-vanilla-lab", setting_type = "startup", default_value = false, order = "j" }, { type = "bool-setting", - name = "lignumis-early-robots", + name = "lignumis-lumber-mill-more-recipes", setting_type = "startup", default_value = false, order = "k" }, { type = "bool-setting", - name = "lignumis-vanilla-lab", + name = "lignumis-early-robots", setting_type = "startup", default_value = false, order = "l" @@ -92,14 +92,14 @@ data:extend({ }, { type = "bool-setting", - name = "lignumis-sciences-spoil", + name = "lignumis-infinite-astroponics-productivity-research", setting_type = "startup", default_value = false, order = "n" }, { type = "bool-setting", - name = "lignumis-infinite-astroponics-productivity-research", + name = "lignumis-sciences-spoil", setting_type = "startup", default_value = false, order = "o" From 21e30d2ef7ee1187032e3814b461a8c07ed1468f Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 16 Nov 2025 18:47:37 +0100 Subject: [PATCH 048/108] 1.0.73 --- 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 c8d6233..8685125 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,12 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.73 +Date: 16.11.2025 + Bug Fixes: + - Add provisional-rocket-part to provisional-rocketry effects (thanks Noreja) + Changes: + - Add setting to restrict sciences to Lignumis + - Update descriptions and improve settings labels +--------------------------------------------------------------------------------------------------- Version: 1.0.72 Date: 01.11.2025 Bug Fixes: diff --git a/lignumis/info.json b/lignumis/info.json index fd17e6f..6c5bc76 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.72", + "version": "1.0.73", "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 fc51b26a282592a5c4f763e94fdcedfd187be82c Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 18 Nov 2025 09:38:04 +0100 Subject: [PATCH 049/108] Set default weight for battery --- lignumis/prototypes/integrations/vanilla.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 63ff70f..704a9b8 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -365,4 +365,5 @@ 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) \ No newline at end of file +set_default_weight("steam-turbine", 10) +set_default_weight("battery", 400) \ No newline at end of file From d8c3b5b565d770c9277d1ccf78ebae0a2fb21822 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 18 Nov 2025 10:04:41 +0100 Subject: [PATCH 050/108] Don't hide worker robot speed 3 before before level 2 is researched --- lignumis/prototypes/integrations/vanilla.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/prototypes/integrations/vanilla.lua b/lignumis/prototypes/integrations/vanilla.lua index 704a9b8..dd7af70 100644 --- a/lignumis/prototypes/integrations/vanilla.lua +++ b/lignumis/prototypes/integrations/vanilla.lua @@ -224,6 +224,7 @@ robots_speed_technology_3.unit = { ingredients = { { "automation-science-pack", 1 }, { "logistic-science-pack", 1 }, { "chemical-science-pack", 1 } }, time = 30 } +robots_speed_technology_3.upgrade = false local robots_speed_technology_4 = data.raw.technology["worker-robots-speed-4"] robots_speed_technology_4.prerequisites = { "worker-robots-speed-3", "utility-science-pack" } From 02cf0273d76b237b93160dfe36000165bf9fab3a Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Tue, 18 Nov 2025 10:21:29 +0100 Subject: [PATCH 051/108] 1.0.74 --- 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 8685125..0fe9c1d 100644 --- a/lignumis/changelog.txt +++ b/lignumis/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 1.0.74 +Date: 18.11.2025 + Bug Fixes: + - Set default weight for battery + - Don't hide worker robot speed 3 before before level 2 is researched +--------------------------------------------------------------------------------------------------- Version: 1.0.73 Date: 16.11.2025 Bug Fixes: diff --git a/lignumis/info.json b/lignumis/info.json index 6c5bc76..2e43e9b 100644 --- a/lignumis/info.json +++ b/lignumis/info.json @@ -1,6 +1,6 @@ { "name": "lignumis", - "version": "1.0.73", + "version": "1.0.74", "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 b50a36d114002cabf479e24e8fc372b3b907882d Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Thu, 20 Nov 2025 14:22:26 +0100 Subject: [PATCH 052/108] Add is_satellite to PlanetsLib:extend --- lignumis/prototypes/content/lignumis/planet.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lignumis/prototypes/content/lignumis/planet.lua b/lignumis/prototypes/content/lignumis/planet.lua index c4fd03c..d94434e 100644 --- a/lignumis/prototypes/content/lignumis/planet.lua +++ b/lignumis/prototypes/content/lignumis/planet.lua @@ -39,6 +39,7 @@ PlanetsLib:extend({ }, }, magnitude = 0.35, + is_satellite = true, subgroup = "satellites", icon = Lignumis.graphics .. "icons/lignumis.png", starmap_icon = Lignumis.graphics .. "icons/starmap-planet-lignumis.png", From e03f85422254b6572cfbbc0435987b0320c973ef Mon Sep 17 00:00:00 2001 From: Jvella94 Date: Mon, 24 Nov 2025 18:26:49 +0100 Subject: [PATCH 053/108] 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 054/108] 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 055/108] 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 056/108] 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 057/108] 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 058/108] 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 059/108] 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 060/108] 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 061/108] 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 062/108] 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 063/108] 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 064/108] 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 065/108] 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 066/108] 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 067/108] 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 068/108] 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 069/108] 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 070/108] 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 071/108] 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 072/108] 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 073/108] 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 074/108] 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 075/108] 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 076/108] 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 077/108] 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 078/108] 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 079/108] 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 080/108] 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 081/108] 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 082/108] 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 083/108] 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 084/108] 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 085/108] 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 086/108] 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 087/108] 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 088/108] 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 089/108] 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 090/108] 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 091/108] 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 092/108] 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 093/108] 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 094/108] 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 095/108] 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 096/108] 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 097/108] 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 098/108] 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 099/108] 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 100/108] 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 101/108] 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 102/108] 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 103/108] 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 104/108] 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 105/108] 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 106/108] 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 107/108] 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 108/108] 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",