mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
[8021] Implement triggering part of shaman talent 51483 and ranks. Author: Beaste. sql by QAston
--HG-- branch : trunk
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user