Advertisement
Guest User

Untitled

a guest
May 28th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. /*
  2. * Copyright (C) 2008-2015 TrinityCore <http://www.trinitycore.org/>
  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_DIREMAUL_H
  19. #define DEF_DIREMAUL_H
  20.  
  21. #define DataHeader "DRM"
  22.  
  23. uint32 const EncounterCount = 21;
  24.  
  25. enum InstanceData
  26. {
  27. // Warpwood Quarter (East)
  28. DATA_PUSILLIN,
  29. DATA_HYDROSPAWN,
  30. DATA_LETHTENDRIS_PIMGIB,
  31. DATA_ZEVRIM,
  32. DATA_ALZZIN,
  33. DATA_ISALIEN,
  34. // Capital Gardens (West)
  35. DATA_TENDRIS,
  36. DATA_ILLYANNA_FERRA,
  37. DATA_TSUZEE,
  38. DATA_KALENDRIS,
  39. DATA_REVANCHION,
  40. DATA_IMMOLTHAR,
  41. DATA_HELNURATH,
  42. DATA_TORTHELDRIN,
  43. // Gordoks Commons (North)
  44. DATA_MOLDAR,
  45. DATA_KREEG,
  46. DATA_FENGUS,
  47. DATA_SLIPKIK,
  48. DATA_KROMCRUSH,
  49. DATA_CHORUSH,
  50. DATA_GORDOK,
  51. // Pillars
  52. DATA_PYLON_1,
  53. DATA_PYLON_2,
  54. DATA_PYLON_3,
  55. DATA_PYLON_4,
  56. DATA_PYLON_5,
  57. };
  58.  
  59. #endif // DEF_DIREMAUL_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement