DB/SpellRuneCost: Difference between revisions

From wowdev
Jump to navigation Jump to search
No edit summary
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
SpellRuneCost


== Header Info ==
{{Template:Sandbox/VersionRange|min_expansionlevel=3|max_expansionlevel=6}}


Records...................161
==4.0.3.13329==
Fields......................6
Record Size................24
String Block Size...........1


== Notes ==
{| style="background:#FCFCFC; color:black"
 
|-
This file has been added with WoW 3.0.1.8303
! width="80" | Column
 
! width="180" | Field
Last updated against: WoW 3.0.1.8334
! width="80" | Type
 
! width="500" | Notes
== Structure ==
|- style="background:#E0E0E0;"
 
| 1 || ID || Integer ||
  '''Column Field Type Notes'''
|-
1 ID Integer
| 2 || BloodRuneCost || Integer ||
  2 RuneCost[Blood] Integer Values { 0, 1, 2, 5, 12 }
|- style="background:#E0E0E0;"
  3 RuneCost[Unholy] Integer Values { 0, 1, 2, 4, 12 }
| 3 || UnholyRuneCost || Integer ||
  4 RuneCost[Frost] Integer Values { 0, 1, 2, 3, 12 }
|-
  5 runePowerGain Integer Values { 0, 100, 1000 }
| || FrostRuneCost || Integer ||
|- style="background:#E0E0E0;"
| 5 || RunePowerGain || Integer ||
|}


==6.0.1.18179==
struct SpellRuneCostRec {
  uint32_t m_ID;
  uint32_t m_blood;
  uint32_t m_unholy;
  uint32_t m_frost;
  uint32_t m_chromatic;
  uint32_t m_runicPower;
};
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WotLK]]
[[Category:DBC_Cataclysm]]
[[Category:DBC_MoP]]
[[Category:4.0.3.13329]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Latest revision as of 04:04, 20 July 2016

Wrath … WoD

4.0.3.13329

Column Field Type Notes
1 ID Integer
2 BloodRuneCost Integer
3 UnholyRuneCost Integer
4 FrostRuneCost Integer
5 RunePowerGain Integer

6.0.1.18179

struct SpellRuneCostRec {
  uint32_t m_ID;
  uint32_t m_blood;
  uint32_t m_unholy;
  uint32_t m_frost;
  uint32_t m_chromatic;
  uint32_t m_runicPower;
};