DB/EnvironmentalDamage: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 1: Line 1:
==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_[[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==
  struct EnvironmentalDamageRec {
  struct EnvironmentalDamageRec {
   uint32_t m_ID;
   uint32_t m_ID;
   uint32_t m_EnumID;
   uint32_t m_EnumID;                                                 // usually <tt>m_ID - 1</tt>. Used for the array holding the values in the client. {{Unverified|This has to be < 6!}}                                         
   {{Template:Type/foreign_key|table=SpellVisualKit}} m_VisualkitID;
   {{Type/foreign_key|table=SpellVisualKit}} m_VisualkitID;   // Played when damage is received
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 15:33, 1 January 2020

1.12.1.5875, 6.0.1.18179

struct EnvironmentalDamageRec {
  uint32_t m_ID;
  uint32_t m_EnumID;                                                 // usually m_ID - 1. Used for the array holding the values in the client. This has to be < 6!                                          
  foreign_key<uint32_t, &SpellVisualKitRec::m_ID> m_VisualkitID;    // Played when damage is received
};