comparison abbreviations.lua @ 144:d7ece3ba6505

Add some abbreviation entries for Highmaul.
author Farmbuyer of US-Kilrogg <farmbuyer@gmail.com>
date Fri, 26 Dec 2014 21:36:42 -0500
parents 375059a11c1d
children 55018c10f3a5
comparison
equal deleted inserted replaced
143:ce9fccd93428 144:d7ece3ba6505
38 38
39 --[==[ 39 --[==[
40 The index is the universal InstanceMapID value, which can be looked up here: 40 The index is the universal InstanceMapID value, which can be looked up here:
41 http://wowpedia.org/InstanceMapID 41 http://wowpedia.org/InstanceMapID
42 You can also use the official English localized name, which was the only 42 You can also use the official English localized name, which was the only
43 available method in the past. Note that these names are case-sensistive. 43 available method in the past. Note that those names are case-sensistive.
44 ]==] 44 ]==]
45 addon.instance_abbrev = { 45 addon.instance_abbrev = {
46 -------- WoD 46 -------- WoD
47 --[] = "", -- Highmaul 47 --[1228] = "HM", -- Highmaul
48 --[] = "BRF", -- Blackrock Foundry 48 [1205] = "BRF", -- Blackrock Foundry
49 49
50 -------- MoP 50 -------- MoP
51 [1008] = "MV", -- Mogu'shan Vaults 51 [1008] = "MV", -- Mogu'shan Vaults
52 [1009] = "HoF", -- Heart of Fear 52 [1009] = "HoF", -- Heart of Fear
53 [996] = "ToES", -- Terrace of Endless Spring 53 [996] = "ToES", -- Terrace of Endless Spring
69 [649] = "ToC", -- Trial of the Crusader (raid) 69 [649] = "ToC", -- Trial of the Crusader (raid)
70 [624] = "VoA", -- Vault of Archavon 70 [624] = "VoA", -- Vault of Archavon
71 } 71 }
72 72
73 -- Currently indexed by "boss name" values, as generated by whatever boss mod 73 -- Currently indexed by "boss name" values, as generated by whatever boss mod
74 -- is in use; see specific boss mod handling code to see how they get it. 74 -- is in use; see specific boss mod handling code to see how they get it. For
75 -- DBM, this is "mod.combatInfo.name" or "mod.id", preferring the first; that
76 -- name defaults to "mod.localization.general.name", which for modern raids
77 -- is from the encounter journal: EJ_GetEncounterInfo or EJ_GetCreatureInfo.
78 -- For
79 -- DBM:NewMod (encid, "...", ..., ..., modifier)
80 -- this means
81 -- EJ_GetEncounterInfo (encid)
82 -- EJ_GetCreatureInfo (modifier, encid) second return
83 --
84 -- As such, this table really needs to be thrown out and redone with modern
85 -- encounter IDs and sub-IDs.
75 addon.boss_abbrev = { 86 addon.boss_abbrev = {
76 -------- WoD 87 -------- WoD
88 -- HM
89 ["Kargath Bladefist"] = "Kill #100",
90 ["The Butcher"] = "Same Butcher as in Diablo, Honest",
91 --["Brackenspore"] = "",
92 --["Tectus"] = "",
93 ["Twin Ogron"] = "Polyphemos",
94 --["Ko'ragh"] = "",
95 --["Imperator Mar'gok"] = "",
77 96
78 -------- MoP 97 -------- MoP
79 -- MV 98 -- MV
80 ["Will of the Emperor"] = "Talk to the Open Hand", 99 ["Will of the Emperor"] = "Talk to the Open Hand",
81 100