Compare commits
2 commits
7b7997708c
...
91f3c92995
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
91f3c92995 | ||
|
|
f9a70adc8f |
5 changed files with 22 additions and 0 deletions
2
space-age-extended/data.lua
Normal file
2
space-age-extended/data.lua
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
require("__cf-lib__/util/table")
|
||||||
|
require("planets/tier1/nauvis/data")
|
||||||
12
space-age-extended/planets/tier1/lignumis/settings.lua
Normal file
12
space-age-extended/planets/tier1/lignumis/settings.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
local Settings = require("__cf-lib__/settings/Settings")
|
||||||
|
local force = Settings.force
|
||||||
|
local default = Settings.default
|
||||||
|
|
||||||
|
force("lignumis-restrict-sciences", true)
|
||||||
|
force("lignumis-technology-progression", true)
|
||||||
|
force("lignumis-basic-circuit-board", true)
|
||||||
|
default("lignumis-belt-progression", false)
|
||||||
|
default("lignumis-inserter-progression", false)
|
||||||
|
default("lignumis-ammo-progression", false)
|
||||||
|
default("lignumis-circuit-progression", false)
|
||||||
|
default("lignumis-assembler-progression", false)
|
||||||
1
space-age-extended/planets/tier1/nauvis/data.lua
Normal file
1
space-age-extended/planets/tier1/nauvis/data.lua
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
require("uranium")
|
||||||
6
space-age-extended/planets/tier1/nauvis/uranium.lua
Normal file
6
space-age-extended/planets/tier1/nauvis/uranium.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
-- Remove uranium ore from Nauvis
|
||||||
|
local map_gen_settings = data.raw.planet["nauvis"].map_gen_settings
|
||||||
|
map_gen_settings.autoplace_controls = table.filterKey(map_gen_settings.autoplace_controls, "uranium-ore")
|
||||||
|
|
||||||
|
local autoplace_settings = data.raw.planet["nauvis"].map_gen_settings.autoplace_settings["entity"]
|
||||||
|
autoplace_settings.settings = table.filterKey(autoplace_settings.settings, "uranium-ore")
|
||||||
1
space-age-extended/settings.lua
Normal file
1
space-age-extended/settings.lua
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
require("planets/tier1/lignumis/settings")
|
||||||
Loading…
Add table
Add a link
Reference in a new issue