DB/SpellScaling: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
No edit summary
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
New in Cataclysm.


==Header Info==
{{Template:Sandbox/VersionRange|min_expansionlevel=4}}
Records..................494
Fields....................16
Record Size...............64
String Block Size..........1


==4.0.3.13329==
==4.0.3.13329==
Line 18: Line 13:
| 1  || ID || Integer ||
| 1  || ID || Integer ||
|-  
|-  
| 2  || unk2 || Integer || Probably a cast time.
| 2  || castTimeMin || Integer || Probably a cast time.
|- style="background:#E0E0E0;"
|- style="background:#E0E0E0;"
| 3  || unk3 || Integer || Probably a cast time.
| 3  || castTimeMax || Integer || Probably a cast time.
|-  
|-  
| 4  || unk4 || Integer ||
| 4  || castTimeMaxLevel || Integer ||
|- style="background:#E0E0E0;"
|- style="background:#E0E0E0;"
| 5  || [[ChrClasses.dbc|ClassID]] || Integer || On what class this scaling applies.
| 5  || [[ChrClasses.dbc|ClassID]] || Integer || On what class this scaling applies.
|-  
|-  
| 6  || unk6 || Float ||
| 6  || coefficient || Float[3] ||
|- style="background:#E0E0E0;"
|- style="background:#E0E0E0;"
| 7 || unk7 || Float ||
| 9 || variance || Float[3] ||
|-  
|-  
| 8 || unk8 || Float ||
| 12 || comboPointsCoefficient || Float[3]
|- style="background:#E0E0E0;"
| 9  || unk9 || Float ||
|-
| 10 || unk10 || Float ||
|- style="background:#E0E0E0;"
| 11 || unk11 || Integer ||
|-
| 12 || unk12 || Float ||
|- style="background:#E0E0E0;"
| 13 || unk13 || Integer ||
|-
| 14 || unk14 || Integer ||
|- style="background:#E0E0E0;"
| 15 || unk15 || Float ||
|-
| 16 || unk16 || Integer ||
|}
|}


==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;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC 4.0.3.13329]]
[[Category:DBC_Cataclysm]]
[[Category:DBC_MoP]]
[[Category:4.0.3.13329]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 03:05, 20 July 2016

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