Scripts/Spells: Implement Holy Mending

Port From (https://github.com/TrinityCore/TrinityCore/commit/277497fdf1ca5f7b310c4544e8f1304a66034884)
This commit is contained in:
hondacrx
2023-06-13 04:41:39 -04:00
parent dfdd88a2fc
commit 533e1162f2
+26
View File
@@ -50,6 +50,7 @@ namespace Scripts.Spells.Priest
public const uint HaloShadowDamage = 390964;
public const uint HaloShadowHeal = 390971;
public const uint Heal = 2060;
public const uint HolyMendingHeal = 391156;
public const uint HolyWordChastise = 88625;
public const uint HolyWordSanctify = 34861;
public const uint HolyWordSerenity = 2050;
@@ -557,6 +558,31 @@ namespace Scripts.Spells.Priest
}
}
}
[Script] // 391154 - Holy Mending
class spell_pri_holy_mending : AuraScript
{
public override bool Validate(SpellInfo spellInfo)
{
return ValidateSpellInfo(SpellIds.Renew, SpellIds.HolyMendingHeal);
}
bool CheckProc(AuraEffect aurEff, ProcEventInfo procInfo)
{
return procInfo.GetProcTarget().HasAura(SpellIds.Renew, procInfo.GetActor().GetGUID());
}
void HandleProc(AuraEffect aurEff, ProcEventInfo eventInfo)
{
eventInfo.GetActor().CastSpell(eventInfo.GetProcTarget(), SpellIds.HolyMendingHeal, new CastSpellExtraArgs(aurEff));
}
public override void Register()
{
DoCheckEffectProc.Add(new CheckEffectProcHandler(CheckProc, 0, AuraType.ProcTriggerSpell));
OnEffectProc.Add(new EffectProcHandler(HandleProc, 0, AuraType.ProcTriggerSpell));
}
}
[Script] // 63733 - Holy Words
class spell_pri_holy_words : AuraScript