[12095] Implement spell 64217

This commit is contained in:
Reamer 2012-08-17 16:47:00 +02:00 committed by Antz
parent ed948ba869
commit 0866c16542
2 changed files with 10 additions and 1 deletions

View file

@ -8136,6 +8136,15 @@ void Aura::PeriodicDummyTick()
target->CastSpell(target, 62593, true);
return;
}
case 64217: // Overcharged
{
if (GetHolder()->GetStackAmount() >= 10)
{
target->CastSpell(target, 64219, true);
target->DealDamage(target, target->GetHealth(), NULL, DIRECT_DAMAGE, SPELL_SCHOOL_MASK_NORMAL, NULL, false);
}
return;
}
case 66118: // Leeching Swarm
case 67630: // Leeching Swarm
case 68646: // Leeching Swarm

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "0124"
#define REVISION_NR "12095"
#endif // __REVISION_NR_H__