DB/DungeonEncounter

From wowdev
(Redirected from DungeonEncounter.dbc)
Jump to navigation Jump to search

≥ Wrath

3.3.5.12340

Field Type Name Notes
1 uint32 ID Unique ID of the encounter
2 uint32 Map ID ID of the map where the encounter takes place.
3 uint32 Difficulty ID The Difficulty of the map in which the encounter takes place
4 int32 Order Index
5 uint32 Bit 0: First boss, 1: Second boss, 2: Third boss, ...
6-22 langstringref Encounter Name Name of the encounter
23 uint32 SpellIconID


unknown cata

struct DungeonEncounterRec {
  uint32_t m_ID;
  uint32_t m_mapID;
  uint32_t m_difficultyID;
  uint32_t m_orderIndex;
  uint32_t m_Bit;
  langstringref m_name_lang;
  uint32_t m_spellIconID;
};

6.0.1.18179

struct DungeonEncounterRec {
  uint32_t m_ID;
  uint32_t m_mapID;
  uint32_t m_difficultyID;
  uint32_t m_orderIndex;
  uint32_t m_Bit;
  langstringref m_name_lang;
  uint32_t m_CreatureDisplayID;
  uint32_t m_spellIconID;
  uint32_t m_flags;
};