DB/GemProperties

From wowdev
Revision as of 02:36, 20 July 2016 by Synric (talk | contribs)
Jump to navigation Jump to search

Structure

Column	Field 				Type 		Notes 
1 	ID 				Integer 	
2 	iRefID_SpellItemEnchantment 	Integer 	
3 	maxcount_inv 			Boolean* 	(Perhaps a 2nd iRefID_SpellItemEnchantment) 
4 	maxcount_item 			Boolean* 	(Perhaps a 3rd iRefID_SpellItemEnchantment) 
5 	type 				BitMask 	Gem Color (a combination of Meta = 1, Red = 2, Yellow = 4 and Blue = 8). 
6	min_item_level			Integer

≥ BC

6.0.1.18179

struct GemPropertiesRec {
  uint32_t m_id;
  uint32_t m_enchant_id;
  uint32_t m_maxcount_inv;
  uint32_t m_maxcount_item;
  uint32_t m_type;
  uint32_t m_min_item_level;
};