mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 19:37:02 +00:00
[8950] Implement talent 55198.
This commit is contained in:
parent
dbd3177121
commit
05d1dc40dc
6 changed files with 21 additions and 3 deletions
|
|
@ -2320,6 +2320,16 @@ void Aura::HandleAuraDummy(bool apply, bool Real)
|
|||
}
|
||||
break;
|
||||
case SPELLFAMILY_SHAMAN:
|
||||
// Tidal Force
|
||||
if (GetId() == 55198)
|
||||
{
|
||||
// apply max stack bufs
|
||||
SpellEntry const* buffEntry = sSpellStore.LookupEntry(55166);
|
||||
if (!buffEntry)
|
||||
return;
|
||||
for(int k = 0; k < buffEntry->StackAmount; ++k)
|
||||
m_target->CastSpell(m_target, buffEntry, true, NULL, this);
|
||||
}
|
||||
// Earth Shield
|
||||
else if ((GetSpellProto()->SpellFamilyFlags & UI64LIT(0x40000000000)))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue