forked from pldcanfly/SimpleAutoCombatLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.lua
58 lines (53 loc) · 1.22 KB
/
Config.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
local _, SimpleAutoCombatLog = ...;
L = SimpleAutoCombatLog.L;
SimpleAutoCombatLog.Zones = {
["ZoneOnly"] = { -- Only Zone must be entered
L["Molten Core"],
L["Blackwing Lair"],
L["Onyxia's Lair"],
L["Ruins of Ahn'Qiraj"],
L["Ahn'Qiraj"],
L["Zul'Gurub"],
L["Naxxramas"],
L["Karazhan"],
L["Gruul's Lair"],
L["Magtheridon's Lair"],
L["Sunwell Plateau"],
L["Black Temple"],
L["Tempest Keep"],
L["Serpentshrine Cavern"],
L["Zul'Aman"],
L["Hyjal Summit"],
L["The Eye of Eternity"],
L["The Obsidian Sanctum"],
L["Ulduar"],
L["Trial of the Crusader"],
L["Icecrown Citadel"],
L["The Ruby Sanctum"],
-- SoD Raids
L["Blackfathom Deeps"],
L["Gnomeregan"],
},
["ZoneAndMob"] = { -- A Zone must be entered and a Mob must be targeted
["Zones"] = {
L["Duskwood"],
L["Hinterlands"],
L["Feralas"],
L["Ashenvale"],
L["Blasted Lands"],
L["Azshara"],
L["Hellfire Peninsula"],
L["Shadowmoon Valley"]
},
["Mobs"] = {
L["Emeriss"],
L["Lethon"],
L["Ysondre"],
L["Taerar"],
L["Doomlord Kazzak"],
L["Azuregos"],
L["Doom Lord Kazzak"],
L["Doomwalker"]
}
}
}