lignumis/lignumis/data.lua

32 lines
1.1 KiB
Lua
Raw 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
"cerys-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"
},
-- Add wood and steam science packs to all labs' inputs except these
lab_blacklist = {
"wood-lab", -- Lignumis
"cerys-lab" -- Cerys
2025-01-07 22:50:02 +01:00
}
}
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")