DB/GemProperties: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
m (Marlamin moved page GemProperties.dbc to DB/GemProperties)
(No difference)

Revision as of 00:36, 13 February 2016

Header Info

Records...................163
Fields......................5
Record Size................20
String Block Size...........1

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

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

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;
};