DB/CreatureSpellData: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
It determines information on what spells pets will have after they are tamed by Hunters.  
It determines information on what spells pets will have after they are tamed by Hunters.  
==Header Info ==
Records...................410
Fields......................9
Record Size................36
String Block Size...........1


==Structure==
==Structure==

Revision as of 00:14, 23 February 2016

It determines information on what spells pets will have after they are tamed by Hunters.

Structure

Column Field Type Notes
1 ID Integer
2 Spell[4] iRefID
6 CoolDown[4] Integer Divide by 10 to get in seconds.

6.0.1.18179

struct CreatureSpellDataRec {
  uint32_t m_ID;
  foreign_key<uint32_t, &SpellRec::m_ID> m_spells[4];
  uint32_t m_availability[4];
};