1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-03-17 20:58:13 +02:00

small balance

This commit is contained in:
danielmartin0 2022-05-08 10:25:21 +01:00
parent 1252134ec8
commit 6b1fc8e341
2 changed files with 3 additions and 2 deletions

View File

@ -255,6 +255,7 @@ function Public.evolution_per_full_silo_charge()
--too low and you always charge immediately, too high and you always charge late
-- return 0.05
-- observed x=2000 run, changed this to:
-- return 0.05 + 0.03 * Common.overworldx()/1000
return 0.05 + 0.02 * Common.overworldx()/1000
end

View File

@ -98,9 +98,9 @@ function Public.kraken_tick(crew_id, kraken_id, step, substep)
-- firing speed now depends on player count:
local firing_period
if crewCount <= 8 then
if crewCount <= 12 then
firing_period = 4
elseif crewCount <= 16 then
elseif crewCount <= 24 then
firing_period = 3
else
firing_period = 2