[10440] Implement spell 55680

Signed-off-by: Laise <fenrisse@gmail.com>
This commit is contained in:
Danstahr 2010-09-04 15:49:31 +03:00 committed by Laise
parent 94e6bb47e7
commit a95f275aad
2 changed files with 8 additions and 1 deletions

View file

@ -1439,6 +1439,13 @@ SpellAuraProcResult Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura
// triggered_spell_id in spell data
break;
}
// Glyph of Prayer of Healing
case 55680:
{
basepoints[0] = int32(damage * triggerAmount / 200); // 10% each tick
triggered_spell_id = 56161;
break;
}
}
break;
}