-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcooldowns_cata_deathknight.lua
148 lines (141 loc) · 2.74 KB
/
cooldowns_cata_deathknight.lua
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
-- ================ DK ================
local SPEC_DK_BLOOD = 250
local SPEC_DK_FROST = 251
local SPEC_DK_UNHOLY = 252
-- Death Knight/Blood
-- Blood Tap
LCT_SpellData[45529] = {
class = "DEATHKNIGHT",
cooldown = 60,
}
-- Death Pact
LCT_SpellData[48743] = {
class = "DEATHKNIGHT",
cooldown = 120,
}
-- Strangulate
LCT_SpellData[47476] = {
class = "DEATHKNIGHT",
cooldown = 120,
opt_lower_cooldown = 60,
cooldown_overload = { [SPEC_DK_BLOOD] = 60, },
}
-- Death Knight/Blood/talents
-- Bone Shield
LCT_SpellData[49222] = {
class = "DEATHKNIGHT",
cooldown = 60,
talent = true,
specID = { SPEC_DK_BLOOD },
}
-- Vampiric Blood
LCT_SpellData[55233] = {
class = "DEATHKNIGHT",
cooldown = 60,
talent = true,
specID = { SPEC_DK_BLOOD },
}
-- Rune Tap
LCT_SpellData[48982] = {
class = "DEATHKNIGHT",
cooldown = 30,
talent = true,
specID = { SPEC_DK_BLOOD },
}
-- Dancing Rune Weapon
LCT_SpellData[49028] = {
class = "DEATHKNIGHT",
cooldown = 90,
talent = true,
specID = { SPEC_DK_BLOOD },
}
-- Death Knight/Frost
-- Horn of Winter
LCT_SpellData[57330] = {
class = "DEATHKNIGHT",
cooldown = 20,
}
-- Icebound Fortitude
LCT_SpellData[48792] = {
class = "DEATHKNIGHT",
cooldown = 120,
duration = 12,
}
-- Mind Freeze
LCT_SpellData[47528] = {
class = "DEATHKNIGHT",
cooldown = 10,
interrupt = true,
}
-- Death Knight/Frost/talents
-- Lichborne
LCT_SpellData[49039] = {
class = "DEATHKNIGHT",
cooldown = 120,
talent = true,
specID = { SPEC_DK_UNHOLY },
duration = 10,
}
-- Hungering Cold
LCT_SpellData[49203] = {
class = "DEATHKNIGHT",
cooldown = 60,
talent = true,
specID = { SPEC_DK_FROST },
}
-- Pillar of Frost
LCT_SpellData[51271] = {
class = "DEATHKNIGHT",
cooldown = 60,
talent = true,
specID = { SPEC_DK_FROST },
}
-- Death Knight/Unholy
-- Anti-Magic Shell
LCT_SpellData[48707] = {
class = "DEATHKNIGHT",
cooldown = 45,
duration = 5,
}
-- Death Grip
LCT_SpellData[49576] = {
class = "DEATHKNIGHT",
cooldown = 35,
opt_lower_cooldown = 25,
cooldown_overload = { [SPEC_DK_UNHOLY] = 25, [SPEC_DK_FROST] = 25, },
}
-- Death and Decay
LCT_SpellData[43265] = {
class = "DEATHKNIGHT",
cooldown = 30,
}
-- Raise Dead
LCT_SpellData[46584] = {
class = "DEATHKNIGHT",
cooldown = 180,
specID = { SPEC_DK_BLOOD, SPEC_DK_FROST, },
}
-- Death Knight/Unholy/talents
-- Anti-Magic Zone
LCT_SpellData[51052] = {
class = "DEATHKNIGHT",
cooldown = 120,
talent = true,
duration = 10,
specID = { SPEC_DK_UNHOLY },
}
-- Summon Gargoyle
LCT_SpellData[49206] = {
class = "DEATHKNIGHT",
cooldown = 180,
talent = true,
duration = 30,
specID = { SPEC_DK_UNHOLY },
}
-- Unholy Frenzy
LCT_SpellData[49016] = {
class = "DEATHKNIGHT",
cooldown = 180,
talent = true,
specID = { SPEC_DK_UNHOLY },
}