31 lines
829 B
Lua
31 lines
829 B
Lua
function fillPyalienlifeConfig194(config)
|
|
|
|
config["ore-bioreserve"] = {
|
|
type="resource-ore",
|
|
|
|
-- general spawn params
|
|
allotment=80, -- how common resource is
|
|
spawns_per_region={min=1, max=1}, --number of chunks
|
|
richness=25000, -- resource_ore has only one richness value - resource-liquid has min/max
|
|
|
|
size={min=20, max=30}, -- rough radius of area, too high value can produce square shaped areas
|
|
min_amount=250,
|
|
|
|
-- resource provided at starting location
|
|
-- probability: 1 = 100% chance to be in starting area
|
|
-- 0 = resource is not in starting area
|
|
starting={richness=8000, size=25, probability=1}
|
|
}
|
|
|
|
config["ore-nexelit"] = {
|
|
type="resource-ore",
|
|
|
|
allotment=80,
|
|
spawns_per_region={min=1, max=1},
|
|
richness=25000,
|
|
size={min=20, max=30},
|
|
min_amount=250,
|
|
}
|
|
|
|
end
|