DB/ComponentTextureFileData: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:
! width="500" | Notes
! width="500" | Notes
|- style="background:#E0E0E0;"
|- style="background:#E0E0E0;"
| 1 || FileData_ID || Integer ||  
| 1 || [[DB/FileDataComplete|FileDataCompleteID]] || iRefID ||  
|-
|-
| 2 || Gender || Integer || 0 for male, 1 for female, 3 for unisex
| 2 || Gender || Integer || 0 for male, 1 for female, 3 for unisex
Line 17: Line 17:
| 4 || Unknown || Integer || Always 0
| 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
};


[[Category:DBC]]
[[Category:DBC]]

Latest revision as of 21: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
};