[8021] Implement triggering part of shaman talent 51483 and ranks.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Beaste 2009-06-15 16:33:52 +04:00 committed by VladimirMangos
parent 06c4ef3931
commit 9d8aa63d5c
5 changed files with 28 additions and 2 deletions

View file

@ -5851,6 +5851,20 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
break;
}
}
// Storm, Earth and Fire
if (dummySpell->SpellIconID == 3063)
{
// Earthbind Totem summon only
if(procSpell->Id != 2484)
return false;
float chance = triggerAmount;
if (!roll_chance_f(chance))
return false;
triggered_spell_id = 64695;
break;
}
// Ancestral Awakening
if (dummySpell->SpellIconID == 3065)
{