DB/GlyphProperties: Difference between revisions

From wowdev
Jump to navigation Jump to search
(New page: ==Structure== uint32 Id; uint32 SpellId; uint32 TypeFlags; uint32 GlyphIconId; // (SpellIcon.dbc) http://dev.trinitycore.org/trinitycore2/src/561ac59c59ac/src/game/...)
 
No edit summary
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
==Structure==
    uint32  Id;
    uint32  SpellId;
    uint32  TypeFlags;
    uint32  GlyphIconId;  //  (SpellIcon.dbc)


http://dev.trinitycore.org/trinitycore2/src/561ac59c59ac/src/game/DBCStructure.h
{{Template:Sandbox/VersionRange|min_expansionlevel=3}}


== 12340 ==
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180" | Field
! width="80" | Type
! width="500" | Notes
|-
| 1 || Id || Integer ||
|- style="background:#F0F8FF;"
| 2 || [[Spell.dbc|SpellId]] || iRefID ||
|-
| 3 || TypeFlags || Integer || 0 = major, 1 = minor
|- style="background:#F0F8FF;"
| 4 || [[SpellIcon.dbc|GlyphIconId]] || iRefID ||
|-
|}
==6.0.1.18179==
struct GlyphPropertiesRec {
  uint32_t m_id;
  uint32_t m_spellID;
  uint32_t m_glyphType;
  uint32_t m_spellIconID;
  uint32_t m_glyphExclusiveCategoryID;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 02:44, 20 July 2016

≥ Wrath

12340

Column Field Type Notes
1 Id Integer
2 SpellId iRefID
3 TypeFlags Integer 0 = major, 1 = minor
4 GlyphIconId iRefID

6.0.1.18179

struct GlyphPropertiesRec {
  uint32_t m_id;
  uint32_t m_spellID;
  uint32_t m_glyphType;
  uint32_t m_spellIconID;
  uint32_t m_glyphExclusiveCategoryID;
};