mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
[12095] Implement spell 64217
This commit is contained in:
parent
ed948ba869
commit
0866c16542
2 changed files with 10 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "0124"
|
||||
#define REVISION_NR "12095"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue