DB/Mount: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Created page with "New in Wod, List of mounts ==Structure== {| style="background:#FCFCFC; color:black" |- ! width="80" | Column ! width="180 " | Field ! width="80" | Type ! width="600" | No...")
 
(Fix uint size)
Line 38: Line 38:
   stringrefⁱ m_Description;
   stringrefⁱ m_Description;
   stringrefⁱ m_SourceDescription;
   stringrefⁱ m_SourceDescription;
   uint32_t m_MountTypeID;
   uint16_t m_MountTypeID;
   uint32_t m_Flags;
   uint16_t m_Flags;
   uint32_t m_PlayerConditionID;
   uint16_t m_PlayerConditionID;
   uint32_t m_Source;
   uint8_t m_Source;
   uint32_t m_ID;
   uint40_t m_ID;
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WoD]]
[[Category:DBC_WoD]]
[[Category:DBC_Legion]][[Category:7.0.3.21491]]
[[Category:DBC_Legion]][[Category:7.0.3.21491]]

Revision as of 21:48, 17 April 2016

New in Wod, List of mounts

Structure

Column Field Type Notes
1 ID Integer
2 SpellID iRefID The spell id for casting the mount
3 MountTypeID iRefID
4 DisplayId iRefID DisplayId of the mount
5 Flags Integer
6 Name Loc Name of the mount
7 Description Loc Description of the mount
8 SourceDescription Loc Where you can get the mount
9 Source Integer
10 PlayerConditionId Integer

7.0.3.21491

struct MountRec {   
  uint32_t m_SpellID;
  uint32_t m_DisplayID;
  stringrefⁱ m_Name;
  stringrefⁱ m_Description;
  stringrefⁱ m_SourceDescription;
  uint16_t m_MountTypeID;
  uint16_t m_Flags;
  uint16_t m_PlayerConditionID;
  uint8_t m_Source;
  uint40_t m_ID;
};