mirror of
https://github.com/veden/Rampant.git
synced 2025-01-03 22:52:20 +02:00
22 lines
669 B
Lua
22 lines
669 B
Lua
local config = {}
|
|
|
|
local mathUtils = require("libs/MathUtils")
|
|
local gaussianRandomRange = mathUtils.gaussianRandomRange
|
|
|
|
--[[
|
|
attackWaveScaling is used to calculate the attack wave size from the evolutionFactor
|
|
default is natives.attackWaveMaxSize * (evolutionFactor ^ 1.666667)
|
|
DOES NOT affect vanilla biters waves
|
|
--]]
|
|
config.attackWaveScaling = function (evolutionFactor, natives)
|
|
local attackWaveMaxSize = natives.attackWaveMaxSize
|
|
return math.ceil(gaussianRandomRange(attackWaveMaxSize * (evolutionFactor ^ 1.66667),
|
|
(attackWaveMaxSize * 0.5) * 0.333,
|
|
1,
|
|
attackWaveMaxSize + (attackWaveMaxSize * 0.25)))
|
|
end
|
|
|
|
return config
|
|
|
|
|