DB/SpellScaling

From wowdev
Revision as of 03:05, 20 July 2016 by Synric (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.

≥ Cata

4.0.3.13329

Column Field Type Notes
1 ID Integer
2 castTimeMin Integer Probably a cast time.
3 castTimeMax Integer Probably a cast time.
4 castTimeMaxLevel Integer
5 ClassID Integer On what class this scaling applies.
6 coefficient Float[3]
9 variance Float[3]
12 comboPointsCoefficient Float[3]

6.0.1.18179

struct SpellScalingRec {
  uint32_t m_ID;
  uint32_t m_castTimeMin;
  uint32_t m_castTimeMax;
  uint32_t m_castTimeMaxLevel;
  uint32_t m_class;
  float m_nerfFactor;
  uint32_t m_nerfMaxLevel;
  uint32_t m_maxScalingLevel;
  uint32_t m_scalesFromItemLevel;
};