mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[9139] Implement glyph 40913
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
a0c6850553
commit
a04449c4ad
2 changed files with 11 additions and 1 deletions
|
|
@ -5824,6 +5824,16 @@ bool Unit::HandleDummyAuraProc(Unit *pVictim, uint32 damage, Aura* triggeredByAu
|
||||||
triggered_spell_id = 32747;
|
triggered_spell_id = 32747;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
// Glyph of Rejuvenation
|
||||||
|
case 54754:
|
||||||
|
{
|
||||||
|
// less 50% health
|
||||||
|
if (pVictim->GetMaxHealth() < 2 * pVictim->GetHealth())
|
||||||
|
return false;
|
||||||
|
basepoints0 = triggerAmount * damage / 100;
|
||||||
|
triggered_spell_id = 54755;
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Eclipse
|
// Eclipse
|
||||||
if (dummySpell->SpellIconID == 2856)
|
if (dummySpell->SpellIconID == 2856)
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9138"
|
#define REVISION_NR "9139"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue