DB/ItemSubClass: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 40: Line 40:
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Revision as of 00:00, 6 November 2014

Header Info

Records....................76
Fields.....................44
Record Size...............112
String Block Size.........920

Structure

Column	Field 			Type 		Notes 
1 	iRefID_ItemClass 	Integer 	
2 	subClassID 		Integer 	Index, non-unique, type. 
3 	prerequisiteProficiency 		Integer 	
4 	postrequisiteProficiency 		Integer	 	
5 	flags 		Integer	 	
6 	displayFlags 		Integer 	
7 	weaponParrySeq 		Integer 	
8 	weaponReadySeq 		Integer 	
9 	weaponAttackSeq 		Integer 	
10 	WeaponSwingSize 		Integer 	Melee slots required. 
11-27 	displayName 		String + Loc
28-44 	verboseName 		String + Loc

Retrieved from "http://www.sourcepeek.com/wiki/ItemSubClass.dbc"

6.0.1.18179

struct ItemSubClassRec {
  uint8_t padding_0[4];
  uint32_t m_classID;
  uint32_t m_subClassID;
  uint32_t m_prerequisiteProficiency;
  uint32_t m_postrequisiteProficiency;
  uint32_t m_flags;
  uint32_t m_displayFlags;
  uint32_t m_weaponParrySeq;
  uint32_t m_weaponReadySeq;
  uint32_t m_weaponAttackSeq;
  uint32_t m_WeaponSwingSize;
  stringref m_displayName_lang;
  stringref m_verboseName_lang;
};