lignumis/lignumis/data.lua

43 lines
1.4 KiB
Lua
Raw Permalink Normal View History

2025-01-07 22:50:02 +01:00
Lignumis = {
-- 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
},
-- 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",
"astroponics",
"planet-discovery-nauvis",
"planet-discovery-lignumis"
},
-- 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
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")
require("prototypes/compatibility/data")