DB/EnvironmentalDamage: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
Line 2: Line 2:
  '''Column Field Type Notes'''  
  '''Column Field Type Notes'''  
  1 ID Integer
  1 ID Integer
  2 enumID Integer (ID-1). Used for the array holding the values in the client. This has to be < 6!
  2 enumID         Integer (ID-1). Used for the array holding the values in the client. This has to be < 6!
  3 iRefID_[[SpellVisualKit.dbc|SpellVisual]] Integer The spellvisual when that damage is recieved.
  3 iRefID_[[SpellVisualKit.dbc|SpellVisual]] Integer The spellvisual when that damage is received.


==1.12.1.5875, 6.0.1.18179==
==1.12.1.5875, 6.0.1.18179==

Revision as of 21:26, 1 October 2017

Structure

Column 	Field 			Type 		Notes 
1 	ID 			Integer 	
2 	enumID 		        Integer 	(ID-1). Used for the array holding the values in the client. This has to be < 6!
3 	iRefID_SpellVisual 	Integer 	The spellvisual when that damage is received.

1.12.1.5875, 6.0.1.18179

struct EnvironmentalDamageRec {
  uint32_t m_ID;
  uint32_t m_EnumID;
  foreign_key<uint32_t, &SpellVisualKitRec::m_ID> m_VisualkitID;
};