From daabfb405eb4f2fa10d0ab3e81295f06fc4bd223 Mon Sep 17 00:00:00 2001 From: pessoa Date: Fri, 13 Dec 2024 18:39:20 -0300 Subject: [PATCH] heals on fire damage --- data-otservbr-global/monster/elementals/lava_lurker.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/data-otservbr-global/monster/elementals/lava_lurker.lua b/data-otservbr-global/monster/elementals/lava_lurker.lua index 6a6e236f8c8..f7a88445c56 100644 --- a/data-otservbr-global/monster/elementals/lava_lurker.lua +++ b/data-otservbr-global/monster/elementals/lava_lurker.lua @@ -95,7 +95,7 @@ monster.elements = { { type = COMBAT_PHYSICALDAMAGE, percent = 0 }, { type = COMBAT_ENERGYDAMAGE, percent = 0 }, { type = COMBAT_EARTHDAMAGE, percent = 0 }, - { type = COMBAT_FIREDAMAGE, percent = 0 }, + { type = COMBAT_FIREDAMAGE, percent = 100 }, { type = COMBAT_LIFEDRAIN, percent = 0 }, { type = COMBAT_MANADRAIN, percent = 0 }, { type = COMBAT_DROWNDAMAGE, percent = 0 }, @@ -111,4 +111,8 @@ monster.immunities = { { type = "bleed", condition = false }, } +monster.heals = { + { type = COMBAT_FIREDAMAGE, percent = 100 }, +} + mType:register(monster)