mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-14 12:12:34 -04:00
100 lines
2.9 KiB
C++
100 lines
2.9 KiB
C++
/*
|
|
* This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* Ordered alphabetically using scriptname.
|
|
* Scriptnames of files in this file should be prefixed with "npc_pet_pri_".
|
|
*/
|
|
|
|
#include "ScriptMgr.h"
|
|
#include "Creature.h"
|
|
#include "PassiveAI.h"
|
|
#include "PetAI.h"
|
|
#include "TemporarySummon.h"
|
|
|
|
enum PriestSpells
|
|
{
|
|
SPELL_PRIEST_ATONEMENT = 81749,
|
|
SPELL_PRIEST_ATONEMENT_PASSIVE = 195178,
|
|
SPELL_PRIEST_DIVINE_IMAGE_SPELL_CHECK = 405216,
|
|
SPELL_PRIEST_INVOKE_THE_NAARU = 196687,
|
|
SPELL_PRIEST_LIGHTWELL_CHARGES = 59907
|
|
};
|
|
|
|
// 198236 - Divine Image
|
|
struct npc_pet_pri_divine_image : public PassiveAI
|
|
{
|
|
npc_pet_pri_divine_image(Creature* creature) : PassiveAI(creature) { }
|
|
|
|
void IsSummonedBy(WorldObject* summoner) override
|
|
{
|
|
me->CastSpell(me, SPELL_PRIEST_INVOKE_THE_NAARU);
|
|
|
|
if (me->ToTempSummon()->IsGuardian() && summoner->IsUnit())
|
|
static_cast<Guardian*>(me)->SetBonusDamage(summoner->ToUnit()->SpellBaseHealingBonusDone(SPELL_SCHOOL_MASK_HOLY));
|
|
}
|
|
|
|
void OnDespawn() override
|
|
{
|
|
if (Unit* owner = me->GetOwner())
|
|
owner->RemoveAura(SPELL_PRIEST_DIVINE_IMAGE_SPELL_CHECK);
|
|
}
|
|
};
|
|
|
|
// 189820 - Lightwell
|
|
struct npc_pet_pri_lightwell : public PassiveAI
|
|
{
|
|
npc_pet_pri_lightwell(Creature* creature) : PassiveAI(creature)
|
|
{
|
|
DoCast(me, SPELL_PRIEST_LIGHTWELL_CHARGES, false);
|
|
}
|
|
|
|
void EnterEvadeMode(EvadeReason /*why*/) override
|
|
{
|
|
if (!me->IsAlive())
|
|
return;
|
|
|
|
me->CombatStop(true);
|
|
EngagementOver();
|
|
me->ResetPlayerDamageReq();
|
|
}
|
|
};
|
|
|
|
// 19668 - Shadowfiend
|
|
// 62982 - Mindbender
|
|
struct npc_pet_pri_shadowfiend_mindbender : public PetAI
|
|
{
|
|
npc_pet_pri_shadowfiend_mindbender(Creature* creature) : PetAI(creature) { }
|
|
|
|
void IsSummonedBy(WorldObject* summonerWO) override
|
|
{
|
|
Unit* summoner = summonerWO->ToUnit();
|
|
if (!summoner)
|
|
return;
|
|
|
|
if (summoner->HasAura(SPELL_PRIEST_ATONEMENT))
|
|
DoCastSelf(SPELL_PRIEST_ATONEMENT_PASSIVE, TRIGGERED_FULL_MASK);
|
|
}
|
|
};
|
|
|
|
void AddSC_priest_pet_scripts()
|
|
{
|
|
RegisterCreatureAI(npc_pet_pri_divine_image);
|
|
RegisterCreatureAI(npc_pet_pri_lightwell);
|
|
RegisterCreatureAI(npc_pet_pri_shadowfiend_mindbender);
|
|
}
|