-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcharacter_stats.go
71 lines (70 loc) · 2.16 KB
/
character_stats.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package wow
type CharacterStats struct {
Health int
PowerType string
Power int
Str int
Agi int
Sta int
Int int
Spr int
AttackPower int
RangedAttackPower int
PvpResilienceBonus float32
Mastery float32
MasteryRating int
Crit float32
CritRating int
HitPercent float32
HitRating int
Haste float32
HasteRating int
HasteRatingPercent float32
ExpertiseRating int
SpellPower int
SpellPen int
SpellCrit float32
SpellCritRating int
SpellHitPercent float32
SpellHitRating int
Mana5 float32
Mana5Combat float32
SpellHaste float32
SpellHasteRating int
SpellHasteRatingPercent float32
Armor int
Dodge float32
DodgeRating int
Parry float32
ParryRating int
Block float32
BlockRating int
PvpResilience float32
PvpResilienceRating int
MainHandDmgMin float32
MainHandDmgMax float32
MainHandSpeed float32
MainHandDps float32
MainHandExpertise float32
OffHandDmgMin float32
OffHandDmgMax float32
OffHandSpeed float32
OffHandDps float32
OffHandExpertise float32
RangedDmgMin float32
RangedDmgMax float32
RangedSpeed float32
RangedDps float32
RangedExpertise float32
RangedCrit float32
RangedCritRating int
RangedHitPercent float32
RangedHitRating int
RangedHaste float32
RangedHasteRating int
RangedHasteRatingPercent float32
PvpPower float32
PvpPowerRating int
PvpPowerDamage float32
PvpPowerHealing float32
}