Mercurial > wow > ouroloot
comparison abbreviations.lua @ 1:822b6ca3ef89
Import of 2.15, moving to wowace svn.
author | Farmbuyer of US-Kilrogg <farmbuyer@gmail.com> |
---|---|
date | Sat, 16 Apr 2011 06:03:29 +0000 |
parents | |
children | df3e27edbd60 |
comparison
equal
deleted
inserted
replaced
0:0f14a1e5364d | 1:822b6ca3ef89 |
---|---|
1 local addon = select(2,...) | |
2 | |
3 addon.instance_abbrev = { | |
4 -------- Cata | |
5 ["Baradin Hold"] = "BH", | |
6 ["Bastion of Twilight"] = "BoT", | |
7 ["Blackwing Descent"] = "BWD", | |
8 ["Throne of the Four Winds"] = "To4W", | |
9 | |
10 -------- WotLK | |
11 ["Icecrown Citadel"] = "ICC", | |
12 ["Trial of the Champion"] = "ToC", | |
13 ["Trial of the Crusader"] = "ToC", | |
14 ["Trial of the Grand Crusader"] = "ToGC", -- does not actually trigger, need to test heroic | |
15 ["Vault of Archavon"] = "VoA", | |
16 } | |
17 | |
18 addon.boss_abbrev = { | |
19 -------- Cata | |
20 -- BoT | |
21 -- BWD | |
22 -- Throne | |
23 ["Al'Akir"] = "Big Al", | |
24 | |
25 -------- WotLK | |
26 -- ToC | |
27 ["Northrend Beasts"] = "Animal House", | |
28 ["Lord Jaraxxus"] = "latest DIAF demon", | |
29 ["Faction Champions"] = "Alliance Clusterfuck", | |
30 ["Valkyr Twins"] = "Salt'N'Pepa", | |
31 ["Val'kyr Twins"] = "Salt'N'Pepa", | |
32 ["Anub'arak"] = "Whack-a-Spider", | |
33 -- ICC | |
34 ["Lady Deathwhisper"] = "Lady Won't-Stop-Yammering", | |
35 ["Gunship"] = "Rocket Shirt Over the Side of the Damn Boat", | |
36 ["Gunship Battle"] = "Rocket Shirt Over the Side of the Damn Boat", | |
37 ["Deathbringer Saurfang"] = "Deathbringer Sauerkraut", | |
38 ["Professor Putricide"] = "Professor Farnsworth", | |
39 ["Valithria Dreamwalker"] = "Dreeeeaaamweaaaaaverrrr", | |
40 } | |
41 | |
42 -- vim:noet |