DB/CreatureSpellData: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 24: Line 24:
   uint32_t m_availability[4];
   uint32_t m_availability[4];
  };
  };
[[Category:DBC]][[Category:DBC_WotLK]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Revision as of 21:49, 1 October 2017

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

Vanilla … WoD

Structure

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

1.12.1.5875, 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];
};