Skip to content

Commit 39c8607

Browse files
committed
added list for Ulduar
1 parent 32c3a34 commit 39c8607

File tree

12 files changed

+15571
-330
lines changed

12 files changed

+15571
-330
lines changed

Addon/LuaDKP-Core.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 90100
1+
## Interface: 100002
22
## Title: LuaDKP-Core
33
## SavedVariables: LuaDKP_Settings
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 20502
1+
## Interface: 20504
22
## Title: LuaDKP-Core
33
## SavedVariables: LuaDKP_Settings
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 11307
1+
## Interface: 11403
22
## Title: LuaDKP-Core
33
## SavedVariables: LuaDKP_Settings
44

Addon/LuaDKP-Core_Wrath.toc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Interface: 30401
2+
## Title: LuaDKP-Core
3+
## SavedVariables: LuaDKP_Settings
4+
5+
Init.lua
6+
Tools.lua
7+
Misc.lua
8+
Calc.lua
9+
Store.lua
10+
Group.lua
11+
Main.lua

Manager/Console/Tools.lua

Lines changed: 11 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -89,28 +89,19 @@ end
8989
------------------------------------------------------------
9090

9191
local function GetHost(lang, expansion)
92-
93-
-- default prefix
94-
local pre = ""
95-
if lang and lang ~= "en" then
96-
pre = lang .. "."
97-
end
98-
99-
-- classic
100-
if expansion == "classic" then
101-
return pre .. "classic.wowhead.com"
102-
end
103-
104-
-- tbc
105-
if expansion == "tbc" then
106-
return pre .. "tbc.wowhead.com"
107-
end
108-
109-
-- assume retail
11092
if lang and lang ~= "en" then
111-
return pre .. "wowhead.com"
93+
if expansion and expansion ~= "retail" then
94+
return "www.wowhead.com/" .. expansion .. "/" .. lang
95+
else
96+
return "www.wowhead.com/" .. lang
97+
end
98+
else
99+
if expansion and expansion ~= "retail" then
100+
return "www.wowhead.com/" .. expansion
101+
else
102+
return "www.wowhead.com"
103+
end
112104
end
113-
return "www.wowhead.com"
114105
end
115106

116107
------------------------------------------------------------

Manager/Defaults/Config.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ local _, ADDON = ...
1010
-- WoW complains about the addon being outdated. Look
1111
-- at other addons' TOC files to get the current number.
1212

13-
-- expansion: Valid values are "classic", "tbc" and "retail"
13+
-- expansion: Valid values are "classic", "tbc", "wotlk" and "retail"
1414

1515
local config = {
1616
basedir = "C:/Games/World of Warcraft/_classic_",
17-
interface = "20502",
18-
expansion = "tbc",
17+
interface = "30401",
18+
expansion = "wotlk",
1919
}
2020

2121
------------------------------------------------------------

Manager/Defaults/MyGroup/Settings/Accounts.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ local accounts = {
88
--[2] = {basegp = 200, name = "BWL" },
99
--[3] = {basegp = 200, name = "AQ40"},
1010
--[4] = {basegp = 200, name = "Naxx"},
11-
[5] = {basegp = 200, name = "SSC/TK"},
12-
[6] = {basegp = 200, name = "MH/BT"},
11+
--[5] = {basegp = 200, name = "SSC/TK"},
12+
--[6] = {basegp = 200, name = "MH/BT"},
13+
[7] = {basegp = 200, name = "Ulduar"},
1314
}
1415

1516
------------------------------------------------------------

Manager/Defaults/MyGroup/Settings/Bosses.lua

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,23 @@ local bosses = {
7979
[ 607] = {points = 15, accounts = {6}, en = "Shahraz"},
8080
[ 608] = {points = 15, accounts = {6}, en = "Council"},
8181
[ 609] = {points = 25, accounts = {6}, en = "Illidan"},
82+
83+
-- Ulduar:
84+
[1132] = {points = 10, accounts = {7}, en = "Leviathan"},
85+
[1136] = {points = 10, accounts = {7}, en = "Ignis"},
86+
[1139] = {points = 10, accounts = {7}, en = "Razorscale", de = "Klingenschuppe"},
87+
[1142] = {points = 10, accounts = {7}, en = "Deconstructor", de = "Dekonstruktor"},
88+
[1140] = {points = 10, accounts = {7}, en = "Assembly", de = "Versammlung"},
89+
[1137] = {points = 10, accounts = {7}, en = "Kologarn"},
90+
[1131] = {points = 10, accounts = {7}, en = "Auriaya"},
91+
[1133] = {points = 10, accounts = {7}, en = "Freya"},
92+
[1135] = {points = 10, accounts = {7}, en = "Hodir"},
93+
[1138] = {points = 10, accounts = {7}, en = "Mimiron"},
94+
[1141] = {points = 10, accounts = {7}, en = "Thorim"},
95+
[1134] = {points = 10, accounts = {7}, en = "Vezax"},
96+
[1143] = {points = 15, accounts = {7}, en = "Yogg-Saron"},
97+
[1130] = {points = 20, accounts = {7}, en = "Algalon"},
98+
8299
}
83100

84101
------------------------------------------------------------

Manager/Defaults/MyGroup/Settings/Settings.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local settings = {
66
title = "MyGroup DKP",
77
tag = "DKP",
88
lang = "en",
9-
stdacc = 5,
9+
stdacc = 7,
1010
theme = "darkly", -- choose a theme on https://bootswatch.com
1111
style = "font-weight: 100; font-size: 100%", -- increase values for light themes to improve readability!
1212
}

Manager/Defaults/MyGroup/Settings/Ulduar.lua

Lines changed: 320 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)