[7739] Implement boss spell 38441.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
NoFantasy 2009-04-30 21:24:59 +04:00 committed by VladimirMangos
parent c05a531281
commit baa3e199d2
2 changed files with 5 additions and 1 deletions

View file

@ -349,6 +349,10 @@ void Spell::EffectSchoolDMG(uint32 effect_idx)
damage+= uint32(m_caster->GetTotalAttackPowerValue(BASE_ATTACK) * 0.12f);
break;
}
// Cataclysmic Bolt
case 38441:
damage = unitTarget->GetMaxHealth() / 2;
break;
}
break;
}