mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-19 03:45:43 +00:00
34 lines
856 B
C
34 lines
856 B
C
/*
|
|
* Originally written by Xinef - Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: http://github.com/azerothcore/azerothcore-wotlk/LICENSE-AGPL
|
|
*/
|
|
|
|
#ifndef DEF_ULDAMAN_H
|
|
#define DEF_ULDAMAN_H
|
|
|
|
#include "ScriptPCH.h"
|
|
|
|
enum DataTypes
|
|
{
|
|
DATA_IRONAYA_DOORS = 0,
|
|
DATA_STONE_KEEPERS = 1,
|
|
DATA_ARCHAEDAS = 2,
|
|
MAX_ENCOUNTERS = 3
|
|
};
|
|
|
|
enum GameObjectIds
|
|
{
|
|
GO_ARCHAEDAS_TEMPLE_DOOR = 141869,
|
|
GO_TEMPLE_DOOR = 124367,
|
|
GO_ANCIENT_VAULT_DOOR = 124369,
|
|
GO_IRONAYA_SEAL_DOOR = 124372,
|
|
GO_KEYSTONE = 124371,
|
|
};
|
|
|
|
enum NpcIds
|
|
{
|
|
NPC_STONE_KEEPER = 4857,
|
|
NPC_ARCHAEDAS = 2748
|
|
};
|
|
|
|
#endif
|