DB/ComponentTextureFileData: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Template:Sandbox/VersionRange|min_expansionlevel=7}}
==7.1.0.22996==
{| style="background:#FCFCFC; color:black"
|-
! width="80" | Column
! width="180" | Field
! width="80" | Type
! width="500" | Notes
|- style="background:#E0E0E0;"
| 1 || [[DB/FileDataComplete|FileDataCompleteID]] || iRefID ||
|-
| 2 || Gender || Integer || 0 for male, 1 for female, 3 for unisex
|- style="background:#E0E0E0;"
| 3 || Class || Integer || Used to allocate demon hunter specific textures to demon hunters (class 12)
|-
| 4 || Unknown || Integer || Always 0
|}
==8.0.1.25902==
struct ComponentTextureFileDataRec {
  // uint32_t Id; // filedata
  uint8_t Gender; // gender (0, 1, 3)
  uint8_t Class; // classID
  uint8_t Race; // RaceID
};


{{Template:Sandbox/VersionRange|min_expansionlevel=7}}
[[Category:DBC]]
[[Category:DBC]]

Latest revision as of 22:55, 2 February 2018

≥ Legion

7.1.0.22996

Column Field Type Notes
1 FileDataCompleteID iRefID
2 Gender Integer 0 for male, 1 for female, 3 for unisex
3 Class Integer Used to allocate demon hunter specific textures to demon hunters (class 12)
4 Unknown Integer Always 0

8.0.1.25902

struct ComponentTextureFileDataRec {
  // uint32_t Id; // filedata
  uint8_t Gender; // gender (0, 1, 3)
  uint8_t Class; // classID
  uint8_t Race; // RaceID
};