1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-10 00:43:27 +02:00
ComfyFactorio/modules/wave_defense/threat_values.lua
MewMew 5a8fe50216 Update
Fixed that worms and spawners did not accurately reduce threat, scaling with their current health bonus.

Fixed that worms and spawners did not accurately give the correct amount of xp, scaling with their current health bonus.

Value tweaks.
2020-05-03 14:00:16 +02:00

17 lines
387 B
Lua

local t = {
["biter-spawner"] = 128,
["spitter-spawner"] = 128,
["behemoth-biter"] = 64,
["behemoth-spitter"] = 64,
["big-biter"] = 16,
["big-spitter"] = 16,
["medium-biter"] = 4,
["medium-spitter"] = 4,
["small-biter"] = 1,
["small-spitter"] = 1,
["small-worm-turret"] = 16,
["medium-worm-turret"] = 32,
["big-worm-turret"] = 64,
["behemoth-worm-turret"] = 128,
}
return t