-
Notifications
You must be signed in to change notification settings - Fork 28
/
Index.lua
96 lines (85 loc) · 2.28 KB
/
Index.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
--The item level of each item
bossNameIndex = {
["Onyxia"] = 5,
-- molten core --
["Lucifron"] = 5,
["Magmadar"] = 5,
["Gehennas"] = 5,
["Garr"] = 5,
["Baron Geddon"] = 5,
["Shazzrah"] = 5,
["Sulfuron Harbinger"] = 5,
["Golemagg the Incinerator"] = 5,
["Majordomo Executus"] = 5,
["Ragnaros"] = 7,
-- blackwing lair --
["Razorgore the Untamed"] = 7,
["Vaelastrasz the Corrupt"] = 7,
["Broodlord Lashlayer"] = 7,
["Firemaw"] = 7,
["Ebonroc"] = 7,
["Flamegor"] = 7,
["Chromaggus"] = 7,
["Nefarian"] = 10,
-- zul'gurub --
["High Priest Venoxis"] = 2,
["High Priestess Jeklik"] = 2,
["High Priestess Mar'li"] = 2,
["High Priest Thekal"] = 2,
["High Priestess Arlokk"] = 2,
["Gri'lek"] = 2,
["Hazza'rah"] = 2,
["Renataki"] = 2,
["Wushoolay"] = 2,
["Bloodlord Mandokir"] = 2,
["Jin'do the Hexxer"] = 2,
["Gahz'ranka"] = 2,
["Hakkar"] = 3,
-- aq20 --
["Kurinnaxx"] = 3,
["General Rajaxx"] = 3,
["Moam"] = 3,
["Buru the Gorger"] = 3,
["Ayamiss the Hunter"] = 3,
["Ossirian the Unscarred"] = 4,
-- aq40 --
["The Prophet Skeram"] = 10,
["Battleguard Sartura"] = 10,
["Fankriss the Unyielding"] = 10,
["Princess Huhuran"] = 10,
["Princess Yauj"] = 10,
["Vem"] = 10,
["Lord Kri"] = 10,
["Viscidus"] = 10,
["Ouro"] = 10,
["Emperor Vek'lor"] = 10,
["Emperor Vek'nilash"] = 10,
["C'Thun"] = 12,
-- naxxramas --
["Anub'Rekhan"] = 12,
["Grand Widow Faerlina"] = 12,
["Maexxna"] = 15,
["Noth the Plaguebringer"] = 12,
["Heigan the Unclean"] = 12,
["Loatheb"] = 15,
["Instructor Razuvious"] = 12,
["Gothik the Harvester"] = 12,
["Highlord Mograine"] = 15,
["Thane Korth'azz"] = 15,
["Lady Blaumeux"] = 15,
["Sir Zeliek"] = 15,
["Patchwerk"] = 12,
["Grobbulus"] = 12,
["Gluth"] = 12,
["Thaddius"] = 15,
["Sapphiron"] = 15,
["Kel'Thuzad"] = 15,
-- world bosses --
["Doom Lord Kazzak"] = 7,
["Azuregos"] = 7,
["Teremus the Devourer"] = 7,
["Emeriss"] = 7,
["Lethon"] = 7,
["Ysondre"] = 7,
["Taerar"] = 7
}