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
|
/*
* 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/>.
*/
#ifndef DEF_ZULAMAN_H
#define DEF_ZULAMAN_H
#include "CreatureAIImpl.h"
uint32 const EncounterCount = 6;
#define ZulamanScriptName "instance_zulaman"
#define DataHeader "ZA"
enum ZADataTypes
{
// BossState
DATA_AKILZON = 0,
DATA_NALORAKK = 1,
DATA_JANALAI = 2,
DATA_HALAZZI = 3,
DATA_HEXLORD = 4,
DATA_DAAKARA = 5,
// Data64
DATA_HEXLORD_TRIGGER,
DATA_STRANGE_GONG,
DATA_MASSIVE_GATE,
// SetData
DATA_ZULAMAN_STATE
};
enum ZACreatureIds
{
NPC_AKILZON = 23574,
NPC_NALORAKK = 23576,
NPC_JANALAI = 23578,
NPC_HALAZZI = 23577,
NPC_HEXLORD = 24239,
NPC_DAAKARA = 23863,
NPC_VOLJIN = 52924,
NPC_HEXLORD_TRIGGER = 24363
};
enum ZAGameObjectIds
{
GO_STRANGE_GONG = 187359,
GO_MASSIVE_GATE = 186728,
};
enum ZAEvents
{
EVENT_START_ZULAMAN = 15897,
EVENT_UPDATE_ZULAMAN_TIMER = 1,
};
enum ZAAction
{
ACTION_START_ZULAMAN = 1
};
enum ZAWorldStates
{
WORLD_STATE_ZULAMAN_TIMER_ENABLED = 3104,
WORLD_STATE_ZULAMAN_TIMER = 3106,
};
template <class AI, class T>
inline AI* GetZulAmanAI(T* obj)
{
return GetInstanceAI<AI>(obj, ZulamanScriptName);
}
#endif
|