[c12598] Implement spells 19869 and 20037

This commit is contained in:
Xfurry 2013-05-31 11:07:19 +01:00 committed by Antz
parent 18ceb2392c
commit 4f86b168c0
3 changed files with 22 additions and 1 deletions

View file

@ -1061,6 +1061,22 @@ void Spell::EffectDummy(SpellEffectEntry const* effect)
return;
}
case 19869: // Dragon Orb
{
if (!unitTarget || unitTarget->GetTypeId() != TYPEID_PLAYER || unitTarget->HasAura(23958))
return;
unitTarget->CastSpell(unitTarget, 19832, true);
return;
}
case 20037: // Explode Orb Effect
{
if (!unitTarget)
return;
unitTarget->CastSpell(unitTarget, 20038, true);
return;
}
case 20577: // Cannibalize
{
if (unitTarget)