Skip to content

Commit

Permalink
fix: lava lurker heals on fire damage (opentibiabr#3176)
Browse files Browse the repository at this point in the history
  • Loading branch information
pess0a authored Dec 31, 2024
1 parent 4023def commit 444ad6c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion data-otservbr-global/monster/elementals/lava_lurker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand All @@ -111,4 +111,8 @@ monster.immunities = {
{ type = "bleed", condition = false },
}

monster.heals = {
{ type = COMBAT_FIREDAMAGE, percent = 100 },
}

mType:register(monster)

0 comments on commit 444ad6c

Please sign in to comment.