Split mod
This commit is contained in:
parent
4ea352f466
commit
f47a9121e9
101 changed files with 803 additions and 786 deletions
43
lignumis-base/data.lua
Normal file
43
lignumis-base/data.lua
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
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", "cerysian-science-pack" -- Cerys
|
||||
},
|
||||
|
||||
-- These technologies are skipped even if they are matches according to above lists
|
||||
science_blacklist = {
|
||||
"deep-miner",
|
||||
"logistic-system",
|
||||
"space-platform-thruster",
|
||||
"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
|
||||
},
|
||||
|
||||
assets = "__lignumis-assets__/"
|
||||
}
|
||||
|
||||
Lignumis.graphics = Lignumis.assets .. "graphics/"
|
||||
Lignumis.sound = Lignumis.assets .. "sound/"
|
||||
|
||||
if not settings.startup["lignumis-technology-progression"].value then
|
||||
Lignumis.science_pack_whitelist = {}
|
||||
end
|
||||
|
||||
require("__cf-lib__/util")
|
||||
|
||||
require("prototypes/content/data")
|
||||
require("prototypes/integrations/data")
|
||||
require("prototypes/compatibility/data")
|
||||
Loading…
Add table
Add a link
Reference in a new issue