DB/SpellCooldowns: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
Line 21: Line 21:
| 6 || Unknown || Integer || Wasn't able to match the value
| 6 || Unknown || Integer || Wasn't able to match the value
|- style="background:#E0E0E0;"
|- style="background:#E0E0E0;"
| 7 || Unknown || Integer || Wasn't able to match the value
| 7 || Unknown || Integer || Always 0
|-
|-
| 8 || Unknown || Integer || Wasn't able to match the value
| 8 || Unknown || Integer || Always 0
|- style="background:#E0E0E0;"
|- style="background:#E0E0E0;"
| 9 || Unknown || Integer || Wasn't able to match the value
| 9 || Unknown || Integer || Always 0
|}
|}



Revision as of 18:50, 12 July 2016

New in Cataclysm.

7.0.1.21737

Column Field Type Notes
1 ID Integer
2 SpellID IRefID
3 CategoryRecoveryTime Integer
4 RecoveryTime Integer
5 StartRecoveryTime Integer
6 Unknown Integer Wasn't able to match the value
7 Unknown Integer Always 0
8 Unknown Integer Always 0
9 Unknown Integer Always 0

Related DB2s: Spell | SpellAuraOptions | SpellAuraRestrictions | SpellClassOptions | SpellCastingRequirements | SpellCategories | SpellCooldowns | SpellDescriptionVariables | SpellEffect | SpellEquippedItems | SpellInterrupts | SpellLevels | SpellMisc | SpellPower | SpellReagents | SpellShapeShift | SpellTargetRestrictions | SpellTotems | SpellVisualMissiles | SpellxSpellVisual


Synric 12th July 2016

6.0.1.18179

struct SpellCooldownsRec {
  uint32_t m_ID;
  uint32_t m_spellID;
  uint32_t m_difficultyID;
  uint32_t m_categoryRecoveryTime;
  uint32_t m_recoveryTime;
  uint32_t m_startRecoveryTime;
};