From 9d94502296a956770ee2ed1e793a64accd0045b6 Mon Sep 17 00:00:00 2001 From: Simon Brodtmann Date: Sun, 16 Nov 2025 12:07:48 +0100 Subject: [PATCH] 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"