mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
[11205] Implement talent 48492 and ranks.
Signed-off-by: Lynx3d <lynx3d@some-imaginary-isp.org>
This commit is contained in:
parent
02a07e6bc7
commit
bef47ce126
7 changed files with 36 additions and 3 deletions
|
|
@ -1609,6 +1609,28 @@ SpellAuraProcResult Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura
|
|||
return SPELL_AURA_PROC_OK;
|
||||
}
|
||||
}
|
||||
// King of the Jungle
|
||||
if (dummySpell->SpellIconID == 2850)
|
||||
{
|
||||
switch (effIndex)
|
||||
{
|
||||
case EFFECT_INDEX_0: // Enrage (bear)
|
||||
{
|
||||
// note : aura removal is done in SpellAuraHolder::HandleSpellSpecificBoosts
|
||||
basepoints[0] = triggerAmount;
|
||||
triggered_spell_id = 51185;
|
||||
break;
|
||||
}
|
||||
case EFFECT_INDEX_1: // Tiger's Fury (cat)
|
||||
{
|
||||
basepoints[0] = triggerAmount;
|
||||
triggered_spell_id = 51178;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
return SPELL_AURA_PROC_FAILED;
|
||||
}
|
||||
}
|
||||
// Eclipse
|
||||
if (dummySpell->SpellIconID == 2856)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue