vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 assert(CandyDice)
2 assert(CandyDice.defaults)
3 assert(BabbleSpell)
4  
5 L=BabbleSpell
6  
7 CandyDice.defaults["PALADIN"] = {
8 -- TODO: Make the pattern a regexp so you can have 1 seal entry instead of 10
9 [L["Seal of Righteousness"]] = {
10 buff = true,
11 cooldown = false,
12 colors = {"FFB90F"}
13 },
14 [L["Seal of the Crusader"]] = {
15 buff = true,
16 cooldown = false,
17 colors = {"FFB90F"}
18 },
19 [L["Judgement"]] = {
20 buff = false,
21 cooldown = true,
22 colors = {"FFB90F"}
23 },
24 [L["Divine Protection"]] = {
25 buff = false,
26 cooldown = true,
27 colors = {"FFD700"}
28 },
29 [L["Hammer of Justice"]] = {
30 buff = false,
31 cooldown = true,
32 colors = {"9400D3"}
33 },
34 }