DB/SpellCastTimes

From wowdev
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
  • Cast times are in milliseconds. ($x/1000)
  • Called from column 12 in Spell.dbc.

0.5.3.3368, 1.12.1.5875

struct SpellCastTimesRec {
  uint32_t m_ID;
  uint32_t m_base;
  uint32_t m_perLevel; // Amount of milliseconds deducted per spell level
  uint32_t m_minimum;  // Absolute minimum cast time
};

4.0.3.13329

Column Field Type Notes
1 ID Integer
2 CastTime Integer
3 CastTimePerLevel Float Q: Increment of some type? when applied, and how, no idea. / Debt if interrupted?
4 MinCastTime Integer The shortest cast time possible with enhancements.

6.0.1.18179

struct SpellCastTimesRec {
  uint32_t m_ID;
  uint32_t m_base;
  uint32_t m_perLevel;
  uint32_t m_minimum;
};