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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
/* Copyright (C) 2006 - 2009 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* ScriptData
SDName: Boss_Doomwalker
SD%Complete: 100
SDComment:
SDCategory: Shadowmoon Valley
EndScriptData */
#include "ScriptedPch.h"
#define SAY_AGGRO -1000159
#define SAY_EARTHQUAKE_1 -1000160
#define SAY_EARTHQUAKE_2 -1000161
#define SAY_OVERRUN_1 -1000162
#define SAY_OVERRUN_2 -1000163
#define SAY_SLAY_1 -1000164
#define SAY_SLAY_2 -1000165
#define SAY_SLAY_3 -1000166
#define SAY_DEATH -1000167
#define SPELL_EARTHQUAKE 32686
#define SPELL_SUNDER_ARMOR 33661
#define SPELL_CHAIN_LIGHTNING 33665
#define SPELL_OVERRUN 32636
#define SPELL_ENRAGE 33653
#define SPELL_MARK_DEATH 37128
#define SPELL_AURA_DEATH 37131
struct boss_doomwalkerAI : public ScriptedAI
{
boss_doomwalkerAI(Creature *c) : ScriptedAI(c) {}
uint32 Chain_Timer;
uint32 Enrage_Timer;
uint32 Overrun_Timer;
uint32 Quake_Timer;
uint32 Armor_Timer;
bool InEnrage;
void Reset()
{
Enrage_Timer = 0;
Armor_Timer = 5000 + rand()%8000;
Chain_Timer = 10000 + rand()%20000;
Quake_Timer = 25000 + rand()%10000;
Overrun_Timer = 30000 + rand()%15000;
InEnrage = false;
}
void KilledUnit(Unit* Victim)
{
Victim->CastSpell(Victim,SPELL_MARK_DEATH,0);
if (rand()%5)
return;
DoScriptText(RAND(SAY_SLAY_1,SAY_SLAY_2,SAY_SLAY_3), m_creature);
}
void JustDied(Unit* Killer)
{
DoScriptText(SAY_DEATH, m_creature);
}
void EnterCombat(Unit *who)
{
DoScriptText(SAY_AGGRO, m_creature);
}
void MoveInLineOfSight(Unit *who)
{
if (who && who->GetTypeId() == TYPEID_PLAYER && m_creature->IsHostileTo(who))
{
if (who->HasAura(SPELL_MARK_DEATH,0))
{
who->CastSpell(who,SPELL_AURA_DEATH,1);
}
}
}
void UpdateAI(const uint32 diff)
{
if (!UpdateVictim())
return;
//Spell Enrage, when hp <= 20% gain enrage
if (((m_creature->GetHealth()*100)/ m_creature->GetMaxHealth()) <= 20)
{
if (Enrage_Timer <= diff)
{
DoCast(m_creature, SPELL_ENRAGE);
Enrage_Timer = 6000;
InEnrage = true;
} else Enrage_Timer -= diff;
}
//Spell Overrun
if (Overrun_Timer <= diff)
{
DoScriptText(RAND(SAY_OVERRUN_1,SAY_OVERRUN_2), m_creature);
DoCast(m_creature->getVictim(), SPELL_OVERRUN);
Overrun_Timer = 25000 + rand()%15000;
} else Overrun_Timer -= diff;
//Spell Earthquake
if (Quake_Timer <= diff)
{
if (rand()%2)
return;
DoScriptText(RAND(SAY_EARTHQUAKE_1,SAY_EARTHQUAKE_2), m_creature);
//remove enrage before casting earthquake because enrage + earthquake = 16000dmg over 8sec and all dead
if (InEnrage)
m_creature->RemoveAura(SPELL_ENRAGE);
DoCast(m_creature, SPELL_EARTHQUAKE);
Quake_Timer = 30000 + rand()%25000;
} else Quake_Timer -= diff;
//Spell Chain Lightning
if (Chain_Timer <= diff)
{
Unit *pTarget = NULL;
pTarget = SelectUnit(SELECT_TARGET_RANDOM,1);
if (!pTarget)
pTarget = m_creature->getVictim();
if (pTarget)
DoCast(pTarget, SPELL_CHAIN_LIGHTNING);
Chain_Timer = 7000 + rand()%20000;
} else Chain_Timer -= diff;
//Spell Sunder Armor
if (Armor_Timer <= diff)
{
DoCast(m_creature->getVictim(), SPELL_SUNDER_ARMOR);
Armor_Timer = 10000 + rand()%15000;
} else Armor_Timer -= diff;
DoMeleeAttackIfReady();
}
};
CreatureAI* GetAI_boss_doomwalker(Creature* pCreature)
{
return new boss_doomwalkerAI (pCreature);
}
void AddSC_boss_doomwalker()
{
Script *newscript;
newscript = new Script;
newscript->Name = "boss_doomwalker";
newscript->GetAI = &GetAI_boss_doomwalker;
newscript->RegisterSelf();
}
|