1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-10 00:43:27 +02:00
ComfyFactorio/modules/biters_avoid_damage.lua

22 lines
547 B
Lua
Raw Normal View History

2019-02-16 18:36:12 +02:00
-- enemy biters have pseudo double hp -- by mewmew
2021-03-24 21:14:55 +02:00
local Event = require 'utils.event'
2019-02-16 18:36:12 +02:00
local function on_entity_damaged(event)
2021-03-24 17:46:00 +02:00
if not event.entity.valid then
return
end
if math.random(1, 2) == 1 then
return
end
if event.entity.type ~= 'unit' then
return
end
if event.final_damage_amount > event.entity.prototype.max_health then
return
end
event.entity.health = event.entity.health + event.final_damage_amount
2019-02-16 18:36:12 +02:00
end
2021-03-24 17:46:00 +02:00
2021-03-24 21:14:55 +02:00
Event.add(defines.events.on_entity_damaged, on_entity_damaged)