mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2024-12-30 23:17:53 +02:00
41 lines
1.1 KiB
Lua
41 lines
1.1 KiB
Lua
-- biters and their buildings gain pseudo hp increase through the means of evasion mechanics -- by mewmew
|
|
-- use global.biter_evasion_health_increase_factor to modify their health
|
|
|
|
local Event = require 'utils.event'
|
|
local random_max = 1000000
|
|
local types = {
|
|
['unit'] = true,
|
|
['unit-spawner'] = true,
|
|
['turret'] = true
|
|
}
|
|
|
|
local function get_evade_chance()
|
|
return random_max - (random_max / global.biter_evasion_health_increase_factor)
|
|
end
|
|
|
|
local function on_entity_damaged(event)
|
|
if global.biter_evasion_health_increase_factor == 1 then
|
|
return
|
|
end
|
|
if not event.entity.valid then
|
|
return
|
|
end
|
|
if not types[event.entity.type] then
|
|
return
|
|
end
|
|
if event.final_damage_amount > event.entity.prototype.max_health * global.biter_evasion_health_increase_factor then
|
|
return
|
|
end
|
|
if math.random(1, random_max) > get_evade_chance() then
|
|
return
|
|
end
|
|
event.entity.health = event.entity.health + event.final_damage_amount
|
|
end
|
|
|
|
local function on_init()
|
|
global.biter_evasion_health_increase_factor = 1
|
|
end
|
|
|
|
Event.on_init(on_init)
|
|
Event.add(defines.events.on_entity_damaged, on_entity_damaged)
|