DB/SpellDispelType: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
Line 15: Line 15:
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
  2-18 sRefName String + [[Loc]]
  2-18 sRefName [[Loc]]
  19 mask Added in 3.2.
  19 mask Integer Added in 3.2.
  20 immunityPossible  Boolean Should type be shown on spell tooltips  
  20 immunityPossible  Boolean Should type be shown on spell tooltips  
  21 internalName String
  21 internalName String


==6.0.1.18179==
==6.0.1.18179==

Revision as of 17:07, 2 October 2017

0.5.3.3368

struct SpellDispelTypeRec {
  uint32_t m_ID;
  langstringref m_name_lang;
};

1.12.1.5875

struct SpellDispelTypeRec {
  uint32_t m_ID;
  langstringref m_name_lang;
  uint32_t m_mask;
  uint32_t m_immunityPossible;
};

Structure

Column	Field 			Type 		Notes 
1 	ID 			Integer 	
2-18 	sRefName 		Loc
19 	mask 	 	 	Integer		Added in 3.2.
20 	immunityPossible  	Boolean 	Should type be shown on spell tooltips 
21 	internalName 		String

6.0.1.18179

struct SpellDispelTypeRec {
  uint32_t m_ID;
  langstringref m_name_lang;
  uint32_t m_mask;
  uint32_t m_immunityPossible;
  stringref m_internalName;
};

7.0.1.21737

Column Field Type Notes
1 ID Integer
2 InternalName String
3 Name String
4 Mask Integer
5 Unknown Integer
6 Unknown Integer
7 Unknown Integer

Synric 12th July 2016