vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local themes = {}
2 SimpleCombatLog.themes = themes
3  
4 themes.default = {
5 theme = 'default',
6 suppress = true,
7 colorspell = true,
8 filters = {
9 hit = { [1] = true, [2] = true, [8] = true, [9] = true },
10 heal = { [1] = true, [2] = true, [8] = true, [9] = true },
11 miss = { [1] = true, [2] = true, [8] = true, [9] = true },
12 cast = { [1] = true, [2] = true, [8] = true, [9] = true },
13 gain = { [1] = true, [2] = true, [8] = true, [9] = true },
14 drain = { [1] = true, [2] = true, [8] = true, [9] = true },
15 leech = { [1] = true, [2] = true, [8] = true, [9] = true },
16 dispel = { [1] = true, [2] = true, [8] = true, [9] = true },
17 buff = { [1] = true, [2] = true, [8] = true, [9] = true },
18 debuff = { [1] = true, [2] = true, [8] = true, [9] = true },
19 fade = { [1] = true, [2] = true, [8] = true, [9] = true },
20 interrupt = { [1] = true, [2] = true, [8] = true, [9] = true },
21 death = { [1] = true, [2] = true, [3] = true, [4] = true, [5] = true, [6] = true, [7] = true, [8] = true, [9] = true, [10] = true, [11] = true, [12] = true, [13] = true, [14] = true },
22 environment = { [1] = true, [2] = true, [8] = true, [9] = true },
23 extraattack = { [1] = true, [2] = true, [8] = true, [9] = true },
24 enchant = { [1] = true, [2] = true, [8] = true, [9] = true },
25 },
26 events = SimpleCombatLog.events
27 }
28  
29 themes.myDmgDone = {
30 ["theme"] = "myDmgDone",
31 ["formats"] = {
32 ["hitCrit"] = "%4$s",
33 ["hit"] = "%4$s",
34 ["hitDOT"] = "%4$s~",
35 },
36 ["events"] = {
37 ["CHAT_MSG_SPELL_PERIODIC_FRIENDLYPLAYER_DAMAGE"] = true,
38 ["CHAT_MSG_SPELL_PERIODIC_PARTY_DAMAGE"] = true,
39 ["CHAT_MSG_COMBAT_SELF_HITS"] = true,
40 ["CHAT_MSG_SPELL_PERIODIC_CREATURE_DAMAGE"] = true,
41 ["CHAT_MSG_SPELL_PERIODIC_HOSTILEPLAYER_DAMAGE"] = true,
42 ["CHAT_MSG_SPELL_SELF_DAMAGE"] = true,
43 },
44 ["suppress"] = true,
45 ["resize"] = true,
46 ["filters"] = {
47 ["hit"] = {
48 [1] = true,
49 },
50 },
51 }
52  
53 themes.myDmgTaken = {
54 ["theme"] = "myDmgTaken",
55 ["formats"] = {
56 ["hitCrit"] = "%4$s",
57 ["hit"] = "%4$s",
58 ["hitDOT"] = "%4$s~",
59 },
60 ["events"] = {
61 ["CHAT_MSG_SPELL_CREATURE_VS_SELF_DAMAGE"] = true,
62 ["CHAT_MSG_COMBAT_CREATURE_VS_SELF_HITS"] = true,
63 ["CHAT_MSG_COMBAT_HOSTILEPLAYER_HITS"] = true,
64 ["CHAT_MSG_SPELL_HOSTILEPLAYER_DAMAGE"] = true,
65 ["CHAT_MSG_SPELL_DAMAGESHIELDS_ON_OTHERS"] = true,
66 ["CHAT_MSG_SPELL_PERIODIC_SELF_DAMAGE"] = true,
67 },
68 ["resize"] = true,
69 ["suppress"] = true,
70 ["filters"] = {
71 ["hit"] = {
72 [8] = true,
73 },
74 },
75 }