mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
@@ -0,0 +1,3 @@
|
||||
DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_pri_shadowfiend';
|
||||
INSERT INTO `spell_script_names` (`spell_id`,`ScriptName`) VALUES
|
||||
(34433,'spell_pri_shadowfiend');
|
||||
@@ -1669,13 +1669,6 @@ void Spell::EffectTriggerSpell(SpellEffIndex effIndex)
|
||||
}
|
||||
return;
|
||||
}
|
||||
// Priest Shadowfiend (34433) need apply mana gain trigger aura on pet
|
||||
case 41967:
|
||||
{
|
||||
if (Unit* pet = unitTarget->GetGuardianPet())
|
||||
pet->CastSpell(pet, 28305, true);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -33,6 +33,8 @@ enum PriestSpells
|
||||
PRIEST_SPELL_PENANCE_R1_HEAL = 47757,
|
||||
PRIEST_SPELL_REFLECTIVE_SHIELD_TRIGGERED = 33619,
|
||||
PRIEST_SPELL_REFLECTIVE_SHIELD_R1 = 33201,
|
||||
PRIEST_SPELL_SHADOWFIEND = 34433,
|
||||
PRIEST_SPELL_SHADOWFIEND_TRIGGERED = 28305,
|
||||
};
|
||||
|
||||
// Guardian Spirit
|
||||
@@ -273,6 +275,44 @@ class spell_pri_reflective_shield_trigger : public SpellScriptLoader
|
||||
}
|
||||
};
|
||||
|
||||
class spell_pri_shadowfiend : public SpellScriptLoader
|
||||
{
|
||||
public:
|
||||
spell_pri_shadowfiend() : SpellScriptLoader("spell_pri_shadowfiend") { }
|
||||
|
||||
class spell_pri_shadowfiend_SpellScript : public SpellScript
|
||||
{
|
||||
PrepareSpellScript(spell_pri_shadowfiend_SpellScript);
|
||||
|
||||
bool Validate(SpellInfo const* spellEntry)
|
||||
{
|
||||
return sSpellMgr->GetSpellInfo(PRIEST_SPELL_SHADOWFIEND) && sSpellMgr->GetSpellInfo(PRIEST_SPELL_SHADOWFIEND_TRIGGERED);
|
||||
}
|
||||
|
||||
void HandleTriggerSpell(SpellEffIndex /*effIndex*/)
|
||||
{
|
||||
Unit* unitTarget = GetHitUnit();
|
||||
if (!unitTarget)
|
||||
return;
|
||||
|
||||
if (Unit* pet = unitTarget->GetGuardianPet())
|
||||
{
|
||||
pet->CastSpell(pet, PRIEST_SPELL_SHADOWFIEND_TRIGGERED, true);
|
||||
}
|
||||
}
|
||||
|
||||
void Register()
|
||||
{
|
||||
OnEffectHitTarget += SpellEffectFn(spell_pri_shadowfiend_SpellScript::HandleTriggerSpell, EFFECT_1, SPELL_EFFECT_TRIGGER_SPELL);
|
||||
}
|
||||
};
|
||||
|
||||
SpellScript* GetSpellScript() const
|
||||
{
|
||||
return new spell_pri_shadowfiend_SpellScript;
|
||||
}
|
||||
};
|
||||
|
||||
void AddSC_priest_spell_scripts()
|
||||
{
|
||||
new spell_pri_guardian_spirit();
|
||||
@@ -281,4 +321,5 @@ void AddSC_priest_spell_scripts()
|
||||
new spell_pri_penance;
|
||||
new spell_pri_reflective_shield_trigger();
|
||||
new spell_pri_mind_sear();
|
||||
new spell_pri_shadowfiend();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user