DB/Resistances: Difference between revisions

From wowdev
Jump to navigation Jump to search
 
(13 intermediate revisions by 6 users not shown)
Line 1: Line 1:
==Header Info ==
Records.....................7
Fields.....................12
Record Size................48
String Block Size..........47
==Structure==
==Structure==
  '''Column Field Type Notes'''
  '''Column Field Type Notes'''
  1 ID Integer Fixed to a maximum of 7. Should be numbered consecutively.
  1 ID Integer Fixed to a maximum of 7. Should be numbered consecutively.
  2 Magic Integer &1: physical damage. should only be one.
  2 Flags Integer &1: physical damage. should only be one.
  3 Unknown Integer
  3 FizzleSoundID Integer
  4-12 sRefName String + [[Loc]]
  4-20 sRefName [[Loc]]
 
Retrieved from "http://www.sourcepeek.com/wiki/Resistances.dbc"


==0.5.3.3368, 1.12.1.5875, 6.0.1.18179==
struct ResistancesRec {
  uint32_t m_ID;
  uint32_t m_Flags;
  uint32_t m_FizzleSoundID;
  {{Template:Type|langstringref}} m_name_lang;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Alpha]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 14:25, 2 October 2017

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 	Loc

0.5.3.3368, 1.12.1.5875, 6.0.1.18179

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