TrinityCore
razorfen_downs.h
Go to the documentation of this file.
1/*
2 * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef DEF_RAZORFEN_DOWNS_H
19#define DEF_RAZORFEN_DOWNS_H
20
21#include "CreatureAIImpl.h"
22
23#define RFDScriptName "instance_razorfen_downs"
24#define DataHeader "RFD"
25
27
29{
30 // Main Bosses
35 // Events
39};
40
42{
43 // Used in Tuten Kash summon event
47 // Used for quest 3525 "Extinguishing the Idol"
53};
54
56{
57 // Used for Tuten Kash summon event
58 GO_GONG = 148917,
59 // Used for quest 3525 "Extinguishing the Idol"
64};
65
66template <class AI, class T>
67inline AI* GetRazorfenDownsAI(T* obj)
68{
69 return GetInstanceAI<AI>(obj, RFDScriptName);
70}
71
72#endif
uint32_t uint32
Definition: Define.h:142
#define RFDScriptName
RFDGameObjectIds
@ GO_IDOL_CUP_FIRE
@ GO_IDOL_OVEN_FIRE
@ GO_IDOL_MOUTH_FIRE
@ GO_GONG
@ GO_BELNISTRASZS_BRAZIER
uint32 const EncounterCount
RFDCreatureIds
@ NPC_TOMB_FIEND
@ NPC_WITHERED_BATTLE_BOAR
@ NPC_IDOL_ROOM_SPAWNER
@ NPC_TUTEN_KASH
@ NPC_PLAGUEMAW_THE_ROTTING
@ NPC_WITHERED_QUILGUARD
@ NPC_DEATHS_HEAD_GEOMANCER
@ NPC_TOMB_REAVER
RFDDataTypes
@ DATA_AMNENNAR_THE_COLD_BRINGER
@ DATA_GONG
@ DATA_MORDRESH_FIRE_EYE
@ DATA_TUTEN_KASH
@ DATA_GLUTTON
@ DATA_EXTINGUISHING_THE_IDOL
@ DATA_WAVE
AI * GetRazorfenDownsAI(T *obj)