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["Scourge"] = {
8 [L["Will of the Forsaken"]] = {
9 colors = {"999999"},
10 cooldown = true,
11 buff = true,
12 },
13 [L["Cannibalize"]] = {
14 colors = {"993300"},
15 cooldown = true,
16 buff = false
17 },
18 }
19  
20 CandyDice.defaults["Troll"] = {
21 [L["Berserking"]] = {
22 colors = {"ff00ff"},
23 cooldown = true,
24 buff = true,
25 },
26 }
27  
28 CandyDice.defaults["Orc"] = {
29  
30 }
31  
32 CandyDice.defaults["Tauren"] = {
33 [L["War Stomp"]] = {
34 colors={"212121"},
35 cooldown=true,
36 buff=false,
37 }
38 }
39  
40 CandyDice.defaults["Human"] = {
41 [L["Perception"]] = {
42 colors={"ffffff"},
43 cooldown=true,
44 buff=true,
45 }
46 }
47  
48 CandyDice.defaults["Dwarf"] = {
49 [L["Stoneform"]] = {
50 colors = {"C0C0C0"},
51 cooldown=true,
52 buff=true,
53 }
54 }
55  
56 CandyDice.defaults["Gnome"] = {
57 [L["Escape Artist"]] = {
58 colors={"999999"},
59 cooldown=true,
60 buff=true,
61 }
62 }