[8021] Implement triggering part of shaman talent 51483 and ranks. Author: Beaste. sql by QAston

--HG--
branch : trunk
This commit is contained in:
megamage
2009-06-15 23:17:48 -05:00
parent 208fbe220d
commit e489988bf4
4 changed files with 26 additions and 1 deletions

View File

@@ -6575,6 +6575,20 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, AuraEffect* trigger
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)
{