blob: a6c9940527e97313b84b63a464da3571430dba6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/*
* 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);
}
|