2025-01-07 22:50:02 +01:00
|
|
|
Lignumis = {
|
2025-01-25 10:52:32 +01:00
|
|
|
-- A technology having any of these science packs as ingredient will get wood and steam science packs added
|
|
|
|
science_pack_whitelist = { "utility-science-pack", "production-science-pack", "space-science-pack" },
|
|
|
|
|
|
|
|
-- A technology is skipped if it has any of these as ingredient
|
|
|
|
science_pack_blacklist = {
|
|
|
|
"wood-science-pack", "steam-science-pack", -- Lignumis
|
|
|
|
"nanite-science-pack", "quantum-science-pack", "ring-science-pack", -- Metal and Stars
|
2025-02-24 00:25:51 +01:00
|
|
|
"cerys-science-pack", "cerysian-science-pack" -- Cerys
|
2025-01-25 10:52:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
-- These technologies are skipped even if they are matches according to above lists
|
2025-01-07 22:50:02 +01:00
|
|
|
science_blacklist = {
|
|
|
|
"deep-miner",
|
|
|
|
"logistic-system",
|
|
|
|
"space-platform-thruster",
|
2025-01-12 00:39:26 +01:00
|
|
|
"kovarex-enrichment-process",
|
2025-03-01 23:23:46 +01:00
|
|
|
"astroponics",
|
|
|
|
"planet-discovery-nauvis",
|
|
|
|
"planet-discovery-lignumis"
|
2025-01-25 10:52:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
-- Add wood and steam science packs to all labs' inputs except these
|
|
|
|
lab_blacklist = {
|
|
|
|
"wood-lab", -- Lignumis
|
|
|
|
"cerys-lab" -- Cerys
|
2025-02-28 10:01:53 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
assets = "__lignumis-assets__/"
|
2025-01-07 22:50:02 +01:00
|
|
|
}
|
|
|
|
|
2025-02-28 10:01:53 +01:00
|
|
|
Lignumis.graphics = Lignumis.assets .. "graphics/"
|
|
|
|
Lignumis.sound = Lignumis.assets .. "sound/"
|
|
|
|
|
2025-02-23 22:40:45 +01:00
|
|
|
if not settings.startup["lignumis-technology-progression"].value then
|
2025-02-23 22:34:21 +01:00
|
|
|
Lignumis.science_pack_whitelist = {}
|
|
|
|
end
|
|
|
|
|
2025-01-06 13:44:44 +01:00
|
|
|
require("__cf-lib__/util")
|
|
|
|
|
2025-01-02 14:56:19 +01:00
|
|
|
require("prototypes/content/data")
|
|
|
|
require("prototypes/integrations/data")
|
2025-01-25 10:52:32 +01:00
|
|
|
require("prototypes/compatibility/data")
|