vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --[[
2 Druid cooldowns contributed by Herrera
3  
4 ]]--
5  
6  
7 assert(CandyDice)
8 assert(CandyDice.defaults)
9 assert(BabbleSpell)
10  
11  
12 CandyDice.defaults["DRUID"] = {
13 [L["Nature's Swiftness"]] = {
14 colors = {"4cff5c"},
15 buff = false,
16 cooldown = true
17 },
18 --- Swiftmend not in BabbleSpell, TOOD: fix
19 ["Swiftmend"] = {
20 colors = {"7AFF4C"},
21 buff = false,
22 cooldown = true
23 },
24 [L["Nature's Grasp"]] = {
25 colors = {"4CFF4C"},
26 buff = false,
27 cooldown = true
28 },
29 [L["Barkskin"]] = {
30 colors = {"FF8F4C"},
31 buff = false,
32 cooldown = true
33 },
34 [L["Hurricane"]] = {
35 colors = {"79799A"},
36 buff = false,
37 cooldown = true
38 },
39 [L["Tranquility"]] = {
40 colors = {"6FAFFF"},
41 buff = false,
42 cooldown = true
43 },
44 [L["Enrage"]] = {
45 colors = {"FF4242"},
46 buff = false,
47 cooldown = true
48 },
49 [L["Dash"]] = {
50 colors = {"7CFF42"},
51 buff = false,
52 cooldown = true
53 },
54 [L["Prowl"]] = {
55 colors = {"FFEF42"},
56 buff = false,
57 cooldown = true
58 },
59 --- This isn't in BabbleSpell either
60 ["Faerie Fire (Feral)"] = {
61 colors = {"E24CFD"},
62 buff = false,
63 cooldown = true
64 },
65 [L["Growl"]] = {
66 colors = {"AC492E"},
67 buff = false,
68 cooldown = true
69 },
70 [L["Cower"]] = {
71 colors = {"70B0FF"},
72 buff = false,
73 cooldown = true
74 },
75 [L["Frenzied Regeneration"]] = {
76 colors = {"5DFC55"},
77 buff = false,
78 cooldown = true
79 },
80 [L["Challenging Roar"]] = {
81 colors = {"FF5420"},
82 buff = false,
83 cooldown = true
84 },
85 [L["Innervate"]] = {
86 colors = {"4C65FF"},
87 buff = false,
88 cooldown = true
89 }
90 }