DB/SpellScaling: Difference between revisions

From wowdev
Jump to navigation Jump to search
m (Marlamin moved page SpellScaling.dbc to DB/SpellScaling)
mNo edit summary
Line 1: Line 1:
New in Cataclysm.
New in Cataclysm.
==Header Info==
Records..................494
Fields....................16
Record Size...............64
String Block Size..........1


==4.0.3.13329==
==4.0.3.13329==

Revision as of 00:26, 23 February 2016

New in Cataclysm.

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;
};