1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-03-11 14:49:24 +02:00

Expanse: tweak for evolution speeds and value blacklist ranges

This commit is contained in:
hanakocz 2022-11-24 15:38:32 +01:00
parent ec106a7f8f
commit dccfc9d4b0
2 changed files with 5 additions and 3 deletions

View File

@ -371,7 +371,7 @@ local function init_container(expanse, entity, budget)
local item_stacks = {}
local roll_count = 3
for _ = 1, roll_count, 1 do
for _, stack in pairs(Price_raffle.roll(math.floor(cell_value / roll_count), 3, nil, cell_value / (roll_count * 6))) do
for _, stack in pairs(Price_raffle.roll(math.floor(cell_value / roll_count), 3, nil, math.max(4, cell_value / (roll_count * 6)))) do
if not item_stacks[stack.name] then
item_stacks[stack.name] = stack.count
else

View File

@ -66,7 +66,7 @@ local function set_nauvis()
}
map_gen_settings.water = 0.25
map_gen_settings.terrain_segmentation = 12
map_gen_settings.starting_area = 0.05
map_gen_settings.starting_area = 0.08
surface.map_gen_settings = map_gen_settings
for chunk in surface.get_chunks() do
surface.delete_chunk({chunk.x, chunk.y})
@ -382,7 +382,9 @@ local function on_init()
game.map_settings.enemy_expansion.min_expansion_cooldown = 1800
game.map_settings.enemy_expansion.settler_group_max_size = 8
game.map_settings.enemy_expansion.settler_group_min_size = 16
game.map_settings.enemy_evolution.destroy_factor = 0.005
game.map_settings.enemy_evolution.destroy_factor = 0.003 --default game: 0.002
game.map_settings.enemy_evolution.pollution_factor = 6e-07 --default game: 9e-07
game.map_settings.enemy_evolution.time_factor = 2e-06 --default game: 4e-06
--Settings for cave miner
--[[