DB/Resistances: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
==0.5.3.3368==
struct ResistancesRec {
  uint32_t m_ID;
  uint32_t m_Flags;
  uint32_t m_FizzleSoundID;
  {{Template:Type|stringref}} m_name_lang[8];
  uint32_t m_name_flag;
};
==Structure==
==Structure==
  '''Column Field Type Notes'''
  '''Column Field Type Notes'''

Revision as of 14:22, 5 June 2016

0.5.3.3368

struct ResistancesRec {
  uint32_t m_ID;
  uint32_t m_Flags;
  uint32_t m_FizzleSoundID;
  stringref m_name_lang[8];
  uint32_t m_name_flag;
};

Structure

Column	Field 		Type 		Notes
1 	ID 		Integer 	Fixed to a maximum of 7. Should be numbered consecutively.
2 	Flags 		Integer		&1: physical damage. should only be one.
3 	FizzleSoundID 	Integer 	
4-20 	sRefName 	String + Loc

6.0.1.18179

struct ResistancesRec {
  uint32_t m_ID;
  uint32_t m_Flags;
  uint32_t m_FizzleSoundID;
  stringref m_name_lang;
};