diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 32254445e..a6b0dcee2 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -354,6 +354,14 @@ void Spell::EffectSchoolDMG(SpellEffectIndex effect_idx) damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.12f); break; } + // percent max target health + case 29142: // Eyesore Blaster + case 35139: // Throw Boom's Doom + case 49882: // Leviroth Self-Impale + { + damage = damage * unitTarget->GetMaxHealth() / 100; + break; + } // Cataclysmic Bolt case 38441: { diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a83e6af71..172a0d1d8 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9534" + #define REVISION_NR "9535" #endif // __REVISION_NR_H__