DB/CreatureSpellData: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(12 intermediate revisions by 5 users not shown)
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 ==
{{Template:Sandbox/VersionRange|min_expansionlevel=1|max_expansionlevel=6}}
Records...................410
Fields......................9
Record Size................36
String Block Size...........1


==Structure==
==1.12.1.5875, 6.0.1.18179==
  Column Field Type Notes
  struct CreatureSpellDataRec {
1 ID Integer Called when CreatureCache.wdb
  uint32_t m_ID;
2 iRefID_[[Spell.dbc|Spell]]_1 Integer Spell identification number.
  {{Type/foreign_key|table=Spell}} m_spells[4];
3 iRefID_[[Spell.dbc|Spell]]_2 Integer
  uint32_t m_availability[4];                          // Divide by 10 to get in seconds.  
4 iRefID_[[Spell.dbc|Spell]]_3 Integer
  };
''5 PH_[[Spell.dbc|Spell]]_4 NULL''
6 CoolDown_1 Integer Divide by 10 to get in seconds.  
  7 CoolDown_2 Integer
8 CoolDown_3 Integer
''9 PH NULL''
 
Retrieved from "http://www.sourcepeek.com/wiki/CreatureSpellData.dbc"


[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_Vanilla]]
[[Category:DBC_WotLK]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 17:35, 1 January 2020

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

Vanilla … WoD

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];                           // Divide by 10 to get in seconds. 
};