Core/Spells: fix some DB errors

Port From (https://github.com/TrinityCore/TrinityCore/commit/16ec008290861573fac7137af054be6d9642712f)
This commit is contained in:
hondacrx
2021-04-16 15:02:56 -04:00
parent 29fd117428
commit 5a59f99851
3 changed files with 58 additions and 0 deletions
+37
View File
@@ -614,6 +614,29 @@ namespace Scripts.Spells.Generic
}
}
[Script] // 28313 - Aura of Fear
class spell_gen_aura_of_fear : AuraScript
{
public override bool Validate(SpellInfo spellInfo)
{
return ValidateSpellInfo(spellInfo.GetEffect(0).TriggerSpell);
}
void PeriodicTick(AuraEffect aurEff)
{
PreventDefaultAction();
if (!RandomHelper.randChance(GetSpellInfo().ProcChance))
return;
GetTarget().CastSpell((Unit)null, GetSpellInfo().GetEffect(aurEff.GetEffIndex()).TriggerSpell, true);
}
public override void Register()
{
OnEffectPeriodic.Add(new EffectPeriodicHandler(PeriodicTick, 0, AuraType.PeriodicTriggerSpell));
}
}
[Script]
class spell_gen_aura_service_uniform : AuraScript
{
@@ -1961,6 +1984,20 @@ namespace Scripts.Spells.Generic
}
}
[Script]
class spell_gen_proc_charge_drop_only : AuraScript
{
void HandleChargeDrop(ProcEventInfo eventInfo)
{
PreventDefaultAction();
}
public override void Register()
{
OnProc.Add(new AuraProcHandler(HandleChargeDrop));
}
}
[Script] // 45472 Parachute
class spell_gen_parachute : AuraScript
{