db7e75ae95
* update to release 7.3.1 * minor tweaks - tweaked the drop location text to display a bit more cleanly - added boss sigils to bc raid tables - added right click context menu to boss name list so you can open db to that boss (only has raids atm) - the All dungeon items list now wont precache past the normal loot * fixs and text display change - updated old locations to have new display - frame now sits on top when selected - fixed some incorrect ids * favorites button change/loot table updates - Changed how favorites buttons are saved you now alt right click them to save - Added missing new t0 sets to classic dungeon sets - Added missing new trash loot weapons to Black temple * minor changes/fixs - fixed t3 incorrect itemids - added heroic bloodforged
1144 lines
61 KiB
Lua
1144 lines
61 KiB
Lua
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot")
|
|
local BabbleBoss = AtlasLoot_GetLocaleLibBabble("LibBabble-Boss-3.0")
|
|
local BabbleInventory = AtlasLoot_GetLocaleLibBabble("LibBabble-Inventory-3.0")
|
|
local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
|
|
local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
|
|
local WHITE = "|cffFFFFFF"
|
|
--------------------------------------------------------------------------------
|
|
-- Text replacement function
|
|
--------------------------------------------------------------------------------
|
|
AtlasLoot.FixedItemText = {
|
|
--Intact Vial of Lady Vashj
|
|
[450000] = BabbleInventory["Quest"],
|
|
[450002] = BabbleInventory["Quest"],
|
|
[1450002] = BabbleInventory["Quest"],
|
|
[450004] = BabbleInventory["Quest"],
|
|
--Intact Vial of Kael'thas Sunstrider
|
|
[450001] = BabbleInventory["Quest"],
|
|
[450003] = BabbleInventory["Quest"],
|
|
[1450003] = BabbleInventory["Quest"],
|
|
[450005] = BabbleInventory["Quest"],
|
|
-- Magtheridon's Head
|
|
[32385] = BabbleInventory["Quest"],
|
|
[122561] = BabbleInventory["Quest"],
|
|
[1332385] = BabbleInventory["Quest"],
|
|
[232385] = BabbleInventory["Quest"],
|
|
[32405] = BabbleInventory["Quest"], -- Verdant Sphere
|
|
[29906] = BabbleInventory["Quest"], -- Vashj's Vial Remnant
|
|
[29905] = BabbleInventory["Quest"], -- Kael's Vial Remnant
|
|
[98570] = AL["Mystic Enchanting"],
|
|
[229739] = AL["Epic Shoulder Enchants"],
|
|
[222637] = AL["Head Enchants"],
|
|
[29434] = AL["Token"],
|
|
[400751] = AL["Token"],
|
|
}
|
|
|
|
|
|
|
|
function AtlasLoot:FixText(text)
|
|
-- Classes
|
|
text = gsub(text, "#c1#", "Druid")
|
|
text = gsub(text, "#c2#", LOCALIZED_CLASS_NAMES_MALE["HUNTER"])
|
|
text = gsub(text, "#c3#", LOCALIZED_CLASS_NAMES_MALE["MAGE"])
|
|
text = gsub(text, "#c4#", LOCALIZED_CLASS_NAMES_MALE["PALADIN"])
|
|
text = gsub(text, "#c5#", LOCALIZED_CLASS_NAMES_MALE["PRIEST"])
|
|
text = gsub(text, "#c6#", LOCALIZED_CLASS_NAMES_MALE["ROGUE"])
|
|
text = gsub(text, "#c7#", LOCALIZED_CLASS_NAMES_MALE["SHAMAN"])
|
|
text = gsub(text, "#c8#", LOCALIZED_CLASS_NAMES_MALE["WARLOCK"])
|
|
text = gsub(text, "#c9#", LOCALIZED_CLASS_NAMES_MALE["WARRIOR"])
|
|
text = gsub(text, "#c10#", LOCALIZED_CLASS_NAMES_MALE["DEATHKNIGHT"])
|
|
|
|
-- Reputation
|
|
text = gsub(text, "#r1#", BabbleFaction["Neutral"])
|
|
text = gsub(text, "#r2#", BabbleFaction["Friendly"])
|
|
text = gsub(text, "#r3#", BabbleFaction["Honored"])
|
|
text = gsub(text, "#r4#", BabbleFaction["Revered"])
|
|
text = gsub(text, "#r5#", BabbleFaction["Exalted"])
|
|
|
|
-- Body Slot
|
|
text = gsub(text, "INVTYPE_HEAD", BabbleInventory["Head"])
|
|
text = gsub(text, "INVTYPE_NECK, Miscellaneous", BabbleInventory["Neck"])
|
|
text = gsub(text, "INVTYPE_SHOULDER", BabbleInventory["Shoulder"])
|
|
text = gsub(text, "INVTYPE_CLOAK, Cloth", BabbleInventory["Back"])
|
|
text = gsub(text, "INVTYPE_CHEST", BabbleInventory["Chest"])
|
|
text = gsub(text, "INVTYPE_BODY", BabbleInventory["Shirt"])
|
|
text = gsub(text, "INVTYPE_ROBE", BabbleInventory["Chest"])
|
|
text = gsub(text, "INVTYPE_TABARD, Miscellaneous", BabbleInventory["Tabard"])
|
|
text = gsub(text, "INVTYPE_WRIST", BabbleInventory["Wrist"])
|
|
text = gsub(text, "INVTYPE_HAND", BabbleInventory["Hands"])
|
|
text = gsub(text, "INVTYPE_WAIST", BabbleInventory["Waist"])
|
|
text = gsub(text, "INVTYPE_LEGS", BabbleInventory["Legs"])
|
|
text = gsub(text, "INVTYPE_FEET", BabbleInventory["Feet"])
|
|
text = gsub(text, "INVTYPE_FINGER, Miscellaneous", BabbleInventory["Ring"])
|
|
text = gsub(text, "INVTYPE_TRINKET, Miscellaneous", BabbleInventory["Trinket"])
|
|
text = gsub(text, "INVTYPE_RELIC, Miscellaneous", BabbleInventory["Relic"])
|
|
|
|
-- Weapon Weilding
|
|
text = gsub(text, "INVTYPE_WEAPON, ", "")
|
|
text = gsub(text, "INVTYPE_2HWEAPON, ", "")
|
|
text = gsub(text, "INVTYPE_WEAPONMAINHAND, ", "")
|
|
text = gsub(text, "INVTYPE_WEAPONOFFHAND, ", "")
|
|
text = gsub(text, "INVTYPE_RANGED, ", "")
|
|
text = gsub(text, "INVTYPE_SHIELD, ", "")
|
|
text = gsub(text, "INVTYPE_HOLDABLE, Miscellaneous", BabbleInventory["Off Hand"])
|
|
text = gsub(text, "INVTYPE_THROWN, ", "")
|
|
|
|
text = gsub(text, ", Jewelcrafting", BabbleInventory["Jewelcrafting"])
|
|
text = gsub(text, ", Enchanting", BabbleInventory["Enchanting"])
|
|
text = gsub(text, ", Tailoring", BabbleInventory["Tailoring"])
|
|
text = gsub(text, ", Blacksmithing", BabbleInventory["Blacksmithing"])
|
|
text = gsub(text, ", Leatherworking", BabbleInventory["Leatherworking"])
|
|
text = gsub(text, ", Alchemy", BabbleInventory["Alchemy"])
|
|
text = gsub(text, ", Engineering", BabbleInventory["Engineering"])
|
|
text = gsub(text, ", Cooking", BabbleInventory["Cooking"])
|
|
text = gsub(text, ", Mining", AL["Mining"])
|
|
text = gsub(text, ", Herbalism", AL["Herbalism"])
|
|
|
|
|
|
-- Weapon Type
|
|
text = gsub(text, "Axes", BabbleInventory["Axe"])
|
|
text = gsub(text, "Bows", BabbleInventory["Bow"])
|
|
text = gsub(text, "INVTYPE_RANGEDRIGHT, Crossbows", BabbleInventory["Crossbow"])
|
|
text = gsub(text, "INVTYPE_RANGEDRIGHT, Gun", BabbleInventory["Gun"])
|
|
text = gsub(text, "Daggers", BabbleInventory["Dagger"])
|
|
text = gsub(text, "Guns", BabbleInventory["Gun"])
|
|
text = gsub(text, "INVTYPE_AMMO, Bullet", BabbleInventory["Bullet"])
|
|
text = gsub(text, "INVTYPE_AMMO, Arrow", BabbleInventory["Arrow"])
|
|
text = gsub(text, "One%-Handed Maces", AL["One-Handed Mace"])
|
|
text = gsub(text, "Two%-Handed Maces", AL["Two-Handed Mace"])
|
|
text = gsub(text, "Polearms", BabbleInventory["Polearm"])
|
|
text = gsub(text, "Shields", BabbleInventory["Shield"])
|
|
text = gsub(text, "Staves", BabbleInventory["Staff"])
|
|
text = gsub(text, "One%-Handed Swords", AL["One-Handed Sword"])
|
|
text = gsub(text, "Two%-Handed Swords", AL["Two-Handed Sword"])
|
|
text = gsub(text, "INVTYPE_RANGEDRIGHT, Wands", BabbleInventory["Wand"])
|
|
text = gsub(text, "Fist Weapons", BabbleInventory["Fist Weapon"])
|
|
text = gsub(text, "INVTYPE_RELIC, Idols", BabbleInventory["Idol"])
|
|
text = gsub(text, "INVTYPE_RELIC, Totem", BabbleInventory["Totem"])
|
|
text = gsub(text, "INVTYPE_RELIC, Libram", BabbleInventory["Libram"])
|
|
text = gsub(text, "INVTYPE_BAG, Bag", BabbleInventory["Bag"])
|
|
text = gsub(text, "INVTYPE_BAG, Soul Bag", BabbleInventory["Soul Bag"])
|
|
text = gsub(text, "#w21#", AL["Sigil"])
|
|
|
|
text = gsub(text, ", Pet", BabbleInventory["Pet"])
|
|
text = gsub(text, ", Money", AL["Currency"])
|
|
text = gsub(text, ", Consumable", BabbleInventory["Consumable"])
|
|
text = gsub(text, ", Mount", BabbleInventory["Mount"])
|
|
text = gsub(text, ", Quest", BabbleInventory["Quest"])
|
|
text = gsub(text, ", Key", BabbleInventory["Key"])
|
|
text = gsub(text, ", Book", BabbleInventory["Book"])
|
|
text = gsub(text, ", Materials", BabbleInventory["Reagent"])
|
|
text = gsub(text, ", Flask", BabbleInventory["Flask"])
|
|
text = gsub(text, ", Other", AL["Misc"])
|
|
text = gsub(text, ", Junk", AL["Misc"])
|
|
text = gsub(text, "%(OBSOLETE%)", "")
|
|
text = gsub(text, ", Food & Drink", BabbleInventory["Food & Drink"])
|
|
|
|
text = gsub(text, ", Red", AL["Red Gem"])
|
|
text = gsub(text, ", Blue", AL["Blue Gem"])
|
|
text = gsub(text, ", Yellow", AL["Yellow Gem"])
|
|
text = gsub(text, ", Purple", AL["Purple Gem"])
|
|
text = gsub(text, ", Orange", AL["Orange Gem"])
|
|
text = gsub(text, ", Green", AL["Green Gem"])
|
|
|
|
-- Misc Inventory related words
|
|
text = gsub(text, "#e1#", BabbleInventory["Bag"])
|
|
text = gsub(text, "#e2#", BabbleInventory["Potion"])
|
|
text = gsub(text, "#e3#", BabbleInventory["Food"])
|
|
text = gsub(text, "#e4#", BabbleInventory["Drink"])
|
|
text = gsub(text, "#e5#", BabbleInventory["Bandage"])
|
|
text = gsub(text, "#e6#", BabbleInventory["Trade Goods"])
|
|
text = gsub(text, "#e7#", BabbleInventory["Gem"])
|
|
text = gsub(text, "#e8#", BabbleInventory["Reagent"])
|
|
text = gsub(text, "#e9#", BabbleInventory["Key"])
|
|
text = gsub(text, "#e10#", BabbleInventory["Book"])
|
|
text = gsub(text, "#e11#", AL["Scope"])
|
|
text = gsub(text, "#e12#", BabbleInventory["Mount"])
|
|
text = gsub(text, "#e13#", BabbleInventory["Pet"])
|
|
text = gsub(text, "#e14#", AL["Banner"])
|
|
text = gsub(text, "#e15#", AL["Token"])
|
|
text = gsub(text, "#e16#", AL["Darkmoon Faire Card"])
|
|
text = gsub(text, "#e17#", AL["Enchant"])
|
|
text = gsub(text, "#e18#", AL["Skinning Knife"])
|
|
text = gsub(text, "#e19#", AL["Herbalism Knife"])
|
|
text = gsub(text, "#e20#", BabbleInventory["Fishing Pole"])
|
|
text = gsub(text, "#e21#", AL["Fish"])
|
|
text = gsub(text, "#e22#", AL["Combat Pet"])
|
|
text = gsub(text, "#e23#", AL["Fireworks"])
|
|
text = gsub(text, "#e24#", AL["Fishing Lure"])
|
|
text = gsub(text, "#e25#", AL["Crafting Reagent"])
|
|
|
|
-- Labels for Loot Descriptions
|
|
text = gsub(text, "#m1#", AL["Classes:"])
|
|
text = gsub(text, "#m2#", AL["This Item Begins a Quest"])
|
|
text = gsub(text, "#m3#", AL["Quest Item"])
|
|
text = gsub(text, "#m4#", AL["Quest Reward"])
|
|
text = gsub(text, "#m5#", AL["Shared"])
|
|
text = gsub(text, "#m6#", BabbleFaction["Horde"])
|
|
text = gsub(text, "#m7#", BabbleFaction["Alliance"])
|
|
text = gsub(text, "#m8#", AL["Unique"])
|
|
text = gsub(text, "#m9#", AL["Right Half"])
|
|
text = gsub(text, "#m10#", AL["Left Half"])
|
|
text = gsub(text, "#m11#", AL["28 Slot Soul Shard"])
|
|
text = gsub(text, "#m12#", AL["10 Slot"])
|
|
text = gsub(text, "#m13#", AL["16 Slot"])
|
|
text = gsub(text, "#m14#", AL["18 Slot"])
|
|
text = gsub(text, "#m15#", AL["20 Slot"])
|
|
text = gsub(text, "#m16#", AL["(has random enchantment)"])
|
|
text = gsub(text, "#m17#", AL["Currency"])
|
|
text = gsub(text, "#m18#", AL["Currency (Alliance)"])
|
|
text = gsub(text, "#m19#", AL["Currency (Horde)"])
|
|
text = gsub(text, "#m20#", AL["Misc"])
|
|
text = gsub(text, "#m21#", AL["Tier 4"])
|
|
text = gsub(text, "#m22#", AL["Tier 5"])
|
|
text = gsub(text, "#m23#", AL["Tier 6"])
|
|
text = gsub(text, "#m24#", AL["Card Game Item"])
|
|
text = gsub(text, "#m25#", AL["Arena Reward"])
|
|
text = gsub(text, "#m26#", AL["Conjured Item"])
|
|
text = gsub(text, "#m27#", AL["Used to summon boss"])
|
|
text = gsub(text, "#m28#", AL["Feast of Winter Veil"])
|
|
text = gsub(text, "#m29#", AL["Tradable against sunmote + item above"])
|
|
text = gsub(text, "#m30#", AL["Tier 1"])
|
|
text = gsub(text, "#m31#", AL["Tier 2"])
|
|
text = gsub(text, "#m32#", AL["Achievement Reward"])
|
|
text = gsub(text, "#m33#", AL["Old Quest Item"])
|
|
text = gsub(text, "#m34#", AL["Old Quest Reward"])
|
|
text = gsub(text, "#m35#", AL["Tier 3"])
|
|
text = gsub(text, "#m36#", AL["NOT AVAILABLE ANYMORE"])
|
|
|
|
-- Misc
|
|
text = gsub(text, "#j1#", AL["Normal Mode"])
|
|
text = gsub(text, "#j2#", AL["Raid"])
|
|
text = gsub(text, "#j3#", AL["Heroic Mode"])
|
|
text = gsub(text, "#j5#", AL["Dungeon Set 2 Summonable"])
|
|
text = gsub(text, "#j6#", AL["Dungeon Set 1"])
|
|
text = gsub(text, "#j7#", AL["Dungeon Set 2"])
|
|
text = gsub(text, "#j8#", AL["Token Hand-Ins"])
|
|
text = gsub(text, "#j9#", AL["Level 60"])
|
|
text = gsub(text, "#j10#", AL["Level 70"])
|
|
text = gsub(text, "#j11#", AL["Fire Resistance Gear"])
|
|
text = gsub(text, "#j12#", AL["Arcane Resistance Gear"])
|
|
text = gsub(text, "#j13#", AL["Nature Resistance Gear"])
|
|
text = gsub(text, "#j14#", AL["Frost Resistance Gear"])
|
|
text = gsub(text, "#j15#", AL["Shadow Resistance Gear"])
|
|
text = gsub(text, "#j16#", AL["Phase 1"])
|
|
text = gsub(text, "#j17#", AL["Phase 2"])
|
|
text = gsub(text, "#j18#", AL["Phase 3"])
|
|
text = gsub(text, "#j19#", AL["Fire"])
|
|
text = gsub(text, "#j20#", AL["Water"])
|
|
text = gsub(text, "#j21#", AL["Wind"])
|
|
text = gsub(text, "#j22#", AL["Earth"])
|
|
text = gsub(text, "#j23#", AL["Master Angler"])
|
|
text = gsub(text, "#j24#", AL["First Prize"])
|
|
text = gsub(text, "#j25#", AL["Rare Fish Rewards"])
|
|
text = gsub(text, "#j26#", AL["Rare Fish"])
|
|
text = gsub(text, "#j27#", AL["Additional Heroic Loot"])
|
|
text = gsub(text, "#j28#", AL["Entrance"])
|
|
text = gsub(text, "#j29#", AL["Unattainable Tabards"])
|
|
text = gsub(text, "#j30#", AL["Mounts"])
|
|
text = gsub(text, "#j31#", AL["Card Game Mounts"])
|
|
text = gsub(text, "#j32#", AL["Crafted Mounts"])
|
|
text = gsub(text, "#j33#", AL["Event Mounts"])
|
|
text = gsub(text, "#j34#", AL["PvP Mounts"])
|
|
text = gsub(text, "#j35#", AL["Rare Mounts"])
|
|
text = gsub(text, "#j37#", AL["10 Man"])
|
|
text = gsub(text, "#j38#", AL["25 Man"])
|
|
text = gsub(text, "#j46#", AL["Hard Mode"])
|
|
text = gsub(text, "#j47#", AL["Heroic"])
|
|
text = gsub(text, "#j50#", AL["Weapons"])
|
|
text = gsub(text, "#j51#", AL["Accessories"])
|
|
text = gsub(text, "#j52#", AL["Heirloom"])
|
|
text = gsub(text, "#j53#", AL["Hard Mode"])
|
|
text = gsub(text, "#j54#", AL["Level 80"])
|
|
|
|
-- Upper Deck Card Game
|
|
text = gsub(text, "#ud1#", AL["Heroes of Azeroth"])
|
|
text = gsub(text, "#ud2#", AL["Through The Dark Portal"])
|
|
text = gsub(text, "#ud3#", AL["Fires of Outland"])
|
|
text = gsub(text, "#ud4#", AL["Loot Card Items"])
|
|
text = gsub(text, "#ud5#", AL["UDE Items"])
|
|
text = gsub(text, "#ud6#", AL["Landro Longshot"])
|
|
text = gsub(text, "#ud7#", AL["Thunderhead Hippogryph"])
|
|
text = gsub(text, "#ud8#", AL["Saltwater Snapjaw"])
|
|
text = gsub(text, "#ud9#", AL["King Mukla"])
|
|
text = gsub(text, "#ud10#", AL["Rest and Relaxation"])
|
|
text = gsub(text, "#ud11#", AL["Fortune Telling"])
|
|
text = gsub(text, "#ud12#", AL["Goblin Gumbo"])
|
|
text = gsub(text, "#ud13#", AL["Gone Fishin'"])
|
|
text = gsub(text, "#ud14#", AL["Spectral Tiger"])
|
|
text = gsub(text, "#ud15#", AL["March of the Legion"])
|
|
text = gsub(text, "#ud16#", AL["Kiting"])
|
|
text = gsub(text, "#ud17#", AL["Robotic Homing Chicken"])
|
|
text = gsub(text, "#ud18#", AL["Paper Airplane"])
|
|
text = gsub(text, "#ud19#", AL["Servants of the Betrayer"])
|
|
text = gsub(text, "#ud20#", AL["Papa Hummel's Old-fashioned Pet Biscuit"])
|
|
text = gsub(text, "#ud21#", AL["Personal Weather Machine"])
|
|
text = gsub(text, "#ud22#", AL["X-51 Nether-Rocket"])
|
|
text = gsub(text, "#ud23#", AL["Hunt for Illidan"])
|
|
text = gsub(text, "#ud24#", AL["The Footsteps of Illidan"])
|
|
text = gsub(text, "#ud25#", AL["Disco Inferno!"])
|
|
text = gsub(text, "#ud26#", AL["Ethereal Plunderer"])
|
|
text = gsub(text, "#ud27#", AL["Drums of War"])
|
|
text = gsub(text, "#ud28#", AL["The Red Bearon"])
|
|
text = gsub(text, "#ud29#", AL["Owned!"])
|
|
text = gsub(text, "#ud30#", AL["Slashdance"])
|
|
text = gsub(text, "#ud31#", AL["Blood of Gladiators"])
|
|
text = gsub(text, "#ud32#", AL["Center of Attention"])
|
|
text = gsub(text, "#ud33#", AL["Foam Sword Rack"])
|
|
text = gsub(text, "#ud34#", AL["Sandbox Tiger"])
|
|
text = gsub(text, "#ud35#", AL["Fields of Honor"])
|
|
text = gsub(text, "#ud36#", AL["Path of Cenarius"])
|
|
text = gsub(text, "#ud37#", AL["Pinata"])
|
|
text = gsub(text, "#ud38#", AL["El Pollo Grande"])
|
|
text = gsub(text, "#ud39#", AL["Scourgewar"])
|
|
text = gsub(text, "#ud40#", AL["Tiny"])
|
|
text = gsub(text, "#ud41#", AL["Tuskarr Kite"])
|
|
text = gsub(text, "#ud42#", AL["Spectral Kitten"])
|
|
text = gsub(text, "#ud39#", AL["Scourgewar"])
|
|
text = gsub(text, "#ud43#", AL["Wrathgate"])
|
|
text = gsub(text, "#ud44#", AL["Landro's Gift"])
|
|
text = gsub(text, "#ud45#", AL["Statue Generator"])
|
|
text = gsub(text, "#ud46#", AL["Blazing Hippogryph"])
|
|
text = gsub(text, "#ud47#", AL["Icecrown"])
|
|
text = gsub(text, "#ud48#", AL["Wooly White Rhino"])
|
|
text = gsub(text, "#ud49#", AL["Ethereal Portal"])
|
|
text = gsub(text, "#ud50#", AL["Paint Bomb"])
|
|
|
|
-- ZG Tokens
|
|
text = gsub(text, "#zgt1#", AL["Primal Hakkari Kossack"])
|
|
text = gsub(text, "#zgt2#", AL["Primal Hakkari Shawl"])
|
|
text = gsub(text, "#zgt3#", AL["Primal Hakkari Bindings"])
|
|
text = gsub(text, "#zgt4#", AL["Primal Hakkari Sash"])
|
|
text = gsub(text, "#zgt5#", AL["Primal Hakkari Stanchion"])
|
|
text = gsub(text, "#zgt6#", AL["Primal Hakkari Aegis"])
|
|
text = gsub(text, "#zgt7#", AL["Primal Hakkari Girdle"])
|
|
text = gsub(text, "#zgt8#", AL["Primal Hakkari Armsplint"])
|
|
text = gsub(text, "#zgt9#", AL["Primal Hakkari Tabard"])
|
|
|
|
-- AQ20 Tokens
|
|
text = gsub(text, "#aq20t1#", AL["Qiraji Ornate Hilt"])
|
|
text = gsub(text, "#aq20t2#", AL["Qiraji Martial Drape"])
|
|
text = gsub(text, "#aq20t3#", AL["Qiraji Magisterial Ring"])
|
|
text = gsub(text, "#aq20t4#", AL["Qiraji Ceremonial Ring"])
|
|
text = gsub(text, "#aq20t5#", AL["Qiraji Regal Drape"])
|
|
text = gsub(text, "#aq20t6#", AL["Qiraji Spiked Hilt"])
|
|
|
|
-- AQ40 Tokens
|
|
text = gsub(text, "#aq40t1#", AL["Qiraji Bindings of Dominance"])
|
|
text = gsub(text, "#aq40t2#", AL["Vek'nilash's Circlet"])
|
|
text = gsub(text, "#aq40t3#", AL["Ouro's Intact Hide"])
|
|
text = gsub(text, "#aq40t4#", AL["Husk of the Old God"])
|
|
text = gsub(text, "#aq40t5#", AL["Qiraji Bindings of Command"])
|
|
text = gsub(text, "#aq40t6#", AL["Vek'lor's Diadem"])
|
|
text = gsub(text, "#aq40t7#", AL["Skin of the Great Sandworm"])
|
|
text = gsub(text, "#aq40t8#", AL["Carapace of the Old God"])
|
|
|
|
-- Battleground Factions
|
|
text = gsub(text, "#b1#", BabbleFaction["Stormpike Guard"])
|
|
text = gsub(text, "#b2#", BabbleFaction["Frostwolf Clan"])
|
|
text = gsub(text, "#b3#", BabbleFaction["Silverwing Sentinels"])
|
|
text = gsub(text, "#b4#", BabbleFaction["Warsong Outriders"])
|
|
text = gsub(text, "#b5#", BabbleFaction["The League of Arathor"])
|
|
text = gsub(text, "#b6#", BabbleFaction["The Defilers"])
|
|
|
|
-- BRD Arena Mini Bosses
|
|
text = gsub(text, "#brd1#", BabbleBoss["Anub'shiah"])
|
|
text = gsub(text, "#brd2#", BabbleBoss["Eviscerator"])
|
|
text = gsub(text, "#brd3#", BabbleBoss["Gorosh the Dervish"])
|
|
text = gsub(text, "#brd4#", BabbleBoss["Grizzle"])
|
|
text = gsub(text, "#brd5#", BabbleBoss["Hedrum the Creeper"])
|
|
text = gsub(text, "#brd6#", BabbleBoss["Ok'thor the Breaker"])
|
|
|
|
-- Sunken Temple Troll Mini Bosses
|
|
text = gsub(text, "#st1#", BabbleBoss["Gasher"])
|
|
text = gsub(text, "#st2#", BabbleBoss["Hukku"])
|
|
text = gsub(text, "#st3#", BabbleBoss["Loro"])
|
|
text = gsub(text, "#st4#", BabbleBoss["Mijan"])
|
|
text = gsub(text, "#st5#", BabbleBoss["Zolo"])
|
|
text = gsub(text, "#st6#", BabbleBoss["Zul'Lor"])
|
|
|
|
-- NPC Names
|
|
text = gsub(text, "#n1#", BabbleBoss["Lord Cobrahn"])
|
|
text = gsub(text, "#n2#", BabbleBoss["Lady Anacondra"])
|
|
text = gsub(text, "#n3#", BabbleBoss["Lord Serpentis"])
|
|
text = gsub(text, "#n4#", AL["Druid of the Fang"])
|
|
text = gsub(text, "#n5#", BabbleBoss["Lord Pythas"])
|
|
text = gsub(text, "#n6#", BabbleBoss["Edwin VanCleef"])
|
|
text = gsub(text, "#n7#", BabbleBoss["Captain Greenskin"])
|
|
text = gsub(text, "#n8#", AL["Defias Strip Miner"])
|
|
text = gsub(text, "#n9#", AL["Defias Overseer/Taskmaster"])
|
|
text = gsub(text, "#n10#", AL["Scarlet Defender/Myrmidon"])
|
|
text = gsub(text, "#n11#", AL["Trash Mobs"])
|
|
text = gsub(text, "#n12#", AL["Scarlet Champion"])
|
|
text = gsub(text, "#n13#", AL["Scarlet Centurion"])
|
|
text = gsub(text, "#n14#", AL["Herod/Mograine"])
|
|
text = gsub(text, "#n15#", AL["Scarlet Protector/Guardsman"])
|
|
text = gsub(text, "#n16#", BabbleBoss["Lord Valthalak"])
|
|
text = gsub(text, "#n17#", AL["Theldren"])
|
|
text = gsub(text, "#n18#", AL["Sothos and Jarien"])
|
|
text = gsub(text, "#n19#", BabbleBoss["Halycon"])
|
|
text = gsub(text, "#n20#", BabbleBoss["Isalien"])
|
|
text = gsub(text, "#n21#", BabbleBoss["Mor Grayhoof"])
|
|
text = gsub(text, "#n22#", BabbleBoss["Kormok"])
|
|
text = gsub(text, "#n23#", BabbleBoss["The Beast"])
|
|
text = gsub(text, "#n24#", BabbleBoss["Postmaster Malown"])
|
|
text = gsub(text, "#n25#", AL["Shadow of Doom"])
|
|
text = gsub(text, "#n26#", AL["Bone Witch"])
|
|
text = gsub(text, "#n27#", AL["Lumbering Horror"])
|
|
text = gsub(text, "#n28#", BabbleBoss["High Priest Thekal"])
|
|
text = gsub(text, "#n29#", BabbleBoss["High Priestess Mar'li"])
|
|
text = gsub(text, "#n30#", BabbleBoss["High Priestess Arlokk"])
|
|
text = gsub(text, "#n31#", BabbleBoss["High Priestess Jeklik"])
|
|
text = gsub(text, "#n32#", BabbleBoss["High Priest Venoxis"])
|
|
text = gsub(text, "#n33#", BabbleBoss["Bloodlord Mandokir"])
|
|
text = gsub(text, "#n34#", BabbleBoss["Hakkar"])
|
|
text = gsub(text, "#n35#", BabbleBoss["Ragnaros"])
|
|
text = gsub(text, "#n36#", BabbleBoss["Onyxia"])
|
|
text = gsub(text, "#n37#", AL["Highlord Kruul"])
|
|
text = gsub(text, "#n38#", BabbleBoss["Magmadar"])
|
|
text = gsub(text, "#n39#", BabbleBoss["Azuregos"])
|
|
text = gsub(text, "#n40#", BabbleBoss["Warchief Rend Blackhand"])
|
|
text = gsub(text, "#n41#", BabbleBoss["Crystal Fang"])
|
|
text = gsub(text, "#n42#", BabbleBoss["Mother Smolderweb"])
|
|
text = gsub(text, "#n43#", AL["Scarlet Trainee"])
|
|
text = gsub(text, "#n44#", AL["Shadowforge Flame Keeper"])
|
|
text = gsub(text, "#n45#", BabbleBoss["Baelog"])
|
|
text = gsub(text, "#n46#", AL["Eric 'The Swift'"])
|
|
text = gsub(text, "#n47#", AL["Olaf"])
|
|
text = gsub(text, "#n48#", BabbleBoss["Hurley Blackbreath"])
|
|
text = gsub(text, "#n49#", BabbleBoss["Phalanx"])
|
|
text = gsub(text, "#n50#", BabbleBoss["Ribbly Screwspigot"])
|
|
text = gsub(text, "#n51#", BabbleBoss["Plugger Spazzring"])
|
|
text = gsub(text, "#n52#", BabbleBoss["Baron Rivendare"])
|
|
text = gsub(text, "#n53#", BabbleBoss["Attumen the Huntsman"])
|
|
text = gsub(text, "#n54#", AL["Nexus Stalker"])
|
|
text = gsub(text, "#n55#", AL["Auchenai Monk"])
|
|
text = gsub(text, "#n56#", AL["Cabal Fanatic"])
|
|
text = gsub(text, "#n57#", AL["Unchained Doombringer"])
|
|
text = gsub(text, "#n58#", BabbleBoss["Anzu"])
|
|
text = gsub(text, "#n59#", BabbleBoss["Kael'thas Sunstrider"])
|
|
text = gsub(text, "#n60#", AL["Crimson Sorcerer"])
|
|
text = gsub(text, "#n61#", AL["Thuzadin Shadowcaster"])
|
|
text = gsub(text, "#n62#", AL["Crimson Inquisitor"])
|
|
text = gsub(text, "#n63#", AL["Crimson Battle Mage"])
|
|
text = gsub(text, "#n64#", AL["Ghoul Ravener"])
|
|
text = gsub(text, "#n65#", AL["Spectral Citizen"])
|
|
text = gsub(text, "#n66#", AL["Spectral Researcher"])
|
|
text = gsub(text, "#n67#", AL["Scholomance Adept"])
|
|
text = gsub(text, "#n68#", AL["Scholomance Dark Summoner"])
|
|
text = gsub(text, "#n69#", AL["Blackhand Elite"])
|
|
text = gsub(text, "#n70#", AL["Blackhand Assassin"])
|
|
text = gsub(text, "#n71#", AL["Firebrand Pyromancer"])
|
|
text = gsub(text, "#n72#", AL["Firebrand Invoker"])
|
|
text = gsub(text, "#n75#", AL["Firebrand Grunt"])
|
|
text = gsub(text, "#n76#", AL["Firebrand Legionnaire"])
|
|
text = gsub(text, "#n73#", AL["Spirestone Warlord"])
|
|
text = gsub(text, "#n74#", AL["Spirestone Mystic"])
|
|
text = gsub(text, "#n75#", AL["Anvilrage Captain"])
|
|
text = gsub(text, "#n76#", AL["Anvilrage Marshal"])
|
|
text = gsub(text, "#n77#", AL["Doomforge Arcanasmith"])
|
|
text = gsub(text, "#n78#", AL["Weapon Technician"])
|
|
text = gsub(text, "#n79#", AL["Doomforge Craftsman"])
|
|
text = gsub(text, "#n80#", AL["Murk Worm"])
|
|
text = gsub(text, "#n81#", AL["Atal'ai Witch Doctor"])
|
|
text = gsub(text, "#n82#", AL["Raging Skeleton"])
|
|
text = gsub(text, "#n83#", AL["Ethereal Priest"])
|
|
text = gsub(text, "#n84#", AL["Sethekk Ravenguard"])
|
|
text = gsub(text, "#n85#", AL["Time-Lost Shadowmage"])
|
|
text = gsub(text, "#n86#", AL["Coilfang Sorceress"])
|
|
text = gsub(text, "#n87#", AL["Coilfang Oracle"])
|
|
text = gsub(text, "#n88#", AL["Shattered Hand Centurion"])
|
|
text = gsub(text, "#n89#", AL["Eredar Deathbringer"])
|
|
text = gsub(text, "#n90#", AL["Arcatraz Sentinel"])
|
|
text = gsub(text, "#n91#", AL["Gargantuan Abyssal"])
|
|
text = gsub(text, "#n92#", AL["Sunseeker Botanist"])
|
|
text = gsub(text, "#n93#", AL["Sunseeker Astromage"])
|
|
text = gsub(text, "#n94#", AL["Durnholde Rifleman"])
|
|
text = gsub(text, "#n95#", AL["Rift Keeper/Rift Lord"])
|
|
text = gsub(text, "#n96#", AL["Crimson Templar"])
|
|
text = gsub(text, "#n97#", AL["Azure Templar"])
|
|
text = gsub(text, "#n98#", AL["Hoary Templar"])
|
|
text = gsub(text, "#n99#", AL["Earthen Templar"])
|
|
text = gsub(text, "#n100#", AL["The Duke of Cynders"])
|
|
text = gsub(text, "#n101#", AL["The Duke of Fathoms"])
|
|
text = gsub(text, "#n102#", AL["The Duke of Zephyrs"])
|
|
text = gsub(text, "#n103#", AL["The Duke of Shards"])
|
|
text = gsub(text, "#n104#", BabbleBoss["Prince Skaldrenox"])
|
|
text = gsub(text, "#n105#", BabbleBoss["Lord Skwol"])
|
|
text = gsub(text, "#n106#", BabbleBoss["High Marshal Whirlaxis"])
|
|
text = gsub(text, "#n107#", BabbleBoss["Baron Kazum"])
|
|
text = gsub(text, "#n108#", BabbleBoss["Baron Charr"])
|
|
text = gsub(text, "#n109#", BabbleBoss["Princess Tempestria"])
|
|
text = gsub(text, "#n110#", BabbleBoss["Avalanchion"])
|
|
text = gsub(text, "#n111#", BabbleBoss["The Windreaver"])
|
|
text = gsub(text, "#n112#", AL["Aether-tech Assistant"])
|
|
text = gsub(text, "#n113#", AL["Aether-tech Adept"])
|
|
text = gsub(text, "#n114#", AL["Aether-tech Master"])
|
|
text = gsub(text, "#n115#", BabbleBoss["Lord Kri"])
|
|
text = gsub(text, "#n116#", BabbleBoss["Vem"])
|
|
text = gsub(text, "#n117#", BabbleBoss["Princess Yauj"])
|
|
text = gsub(text, "#n118#", AL["Trelopades"])
|
|
text = gsub(text, "#n119#", AL["King Dorfbruiser"])
|
|
text = gsub(text, "#n120#", AL["Gorgolon the All-seeing"])
|
|
text = gsub(text, "#n121#", AL["Matron Li-sahar"])
|
|
text = gsub(text, "#n122#", AL["Solus the Eternal"])
|
|
text = gsub(text, "#n123#", AL["Balzaphon"])
|
|
text = gsub(text, "#n124#", AL["Lord Blackwood"])
|
|
text = gsub(text, "#n125#", AL["Revanchion"])
|
|
text = gsub(text, "#n126#", AL["Scorn"])
|
|
text = gsub(text, "#n127#", AL["Sever"])
|
|
text = gsub(text, "#n128#", AL["Lady Falther'ess"])
|
|
text = gsub(text, "#n129#", AL["Smokywood Pastures Vendor"])
|
|
text = gsub(text, "#n130#", BabbleBoss["Nalorakk"])
|
|
text = gsub(text, "#n131#", AL["Barleybrew Brewery"])
|
|
text = gsub(text, "#n132#", AL["Thunderbrew Brewery"])
|
|
text = gsub(text, "#n133#", AL["Gordok Brewery"])
|
|
text = gsub(text, "#n134#", AL["Drohn's Distillery"])
|
|
text = gsub(text, "#n135#", AL["T'chali's Voodoo Brewery"])
|
|
text = gsub(text, "#n136#", AL["Headless Horseman"])
|
|
text = gsub(text, "#n137#", BabbleBoss["Illidan Stormrage"])
|
|
text = gsub(text, "#n138#", BabbleBoss["Vexallus"])
|
|
text = gsub(text, "#n139#", BabbleBoss["Aeonus"])
|
|
text = gsub(text, "#n150#", AL["Coren Direbrew"])
|
|
text = gsub(text, "#n151#", BabbleBoss["Skadi the Ruthless"])
|
|
text = gsub(text, "#n152#", BabbleBoss["Infinite Corruptor"])
|
|
text = gsub(text, "#n153#", BabbleBoss["Sartharion"])
|
|
text = gsub(text, "#n154#", BabbleBoss["Malygos"])
|
|
text = gsub(text, "#n155#", AL["Time-Lost Proto Drake"])
|
|
|
|
-- Zone Names
|
|
text = gsub(text, "#z1#", BabbleZone["The Deadmines"])
|
|
text = gsub(text, "#z2#", BabbleZone["Wailing Caverns"])
|
|
text = gsub(text, "#z3#", BabbleZone["Scarlet Monastery"])
|
|
text = gsub(text, "#z4#", BabbleZone["Blackrock Depths"])
|
|
text = gsub(text, "#z5#", BabbleZone["Scholomance"])
|
|
text = gsub(text, "#z6#", BabbleZone["Stratholme"])
|
|
text = gsub(text, "#z7#", AL["Various Locations"])
|
|
text = gsub(text, "#z8#", BabbleZone["Zul'Gurub"])
|
|
text = gsub(text, "#z9#", BabbleZone["Upper Blackrock Spire"])
|
|
text = gsub(text, "#z10#", BabbleZone["Lower Blackrock Spire"])
|
|
text = gsub(text, "#z11#", BabbleZone["Ahn'Qiraj"])
|
|
text = gsub(text, "#z12#", BabbleZone["Karazhan"])
|
|
text = gsub(text, "#z13#", BabbleZone["Dire Maul (East)"])
|
|
text = gsub(text, "#z14#", BabbleZone["Molten Core"])
|
|
text = gsub(text, "#z15#", BabbleZone["Onyxia's Lair"])
|
|
text = gsub(text, "#z16#", BabbleZone["Sethekk Halls"])
|
|
text = gsub(text, "#z17#", AL["World Drop"])
|
|
text = gsub(text, "#z18#", BabbleZone["Black Temple"])
|
|
text = gsub(text, "#z19#", BabbleZone["The Eye"])
|
|
text = gsub(text, "#z20#", BabbleZone["Un'Goro Crater"])
|
|
text = gsub(text, "#z21#", BabbleZone["Winterspring"])
|
|
text = gsub(text, "#z22#", BabbleZone["Azshara"])
|
|
text = gsub(text, "#z23#", BabbleZone["Silithus"])
|
|
text = gsub(text, "#z24#", BabbleZone["Azeroth"])
|
|
text = gsub(text, "#z25#", BabbleZone["Outland"])
|
|
text = gsub(text, "#z26#", BabbleZone["Shadowfang Keep"])
|
|
text = gsub(text, "#z27#", BabbleZone["Razorfen Downs"])
|
|
text = gsub(text, "#z28#", BabbleZone["Graveyard"])
|
|
text = gsub(text, "#z29#", BabbleZone["Zul'Aman"])
|
|
text = gsub(text, "#z30#", BabbleZone["Magisters' Terrace"])
|
|
text = gsub(text, "#z31#", BabbleZone["Shattrath City"])
|
|
text = gsub(text, "#z32#", AL["Sunwell Isle"])
|
|
text = gsub(text, "#z33#", BabbleZone["The Black Morass"])
|
|
text = gsub(text, "#z34#", BabbleZone["Hyjal Summit"])
|
|
text = gsub(text, "#z35#", BabbleZone["Utgarde Pinnacle"])
|
|
text = gsub(text, "#z36#", BabbleZone["Old Stratholme"])
|
|
text = gsub(text, "#z37#", BabbleZone["The Storm Peaks"])
|
|
text = gsub(text, "#z38#", BabbleZone["The Obsidian Sanctum"])
|
|
text = gsub(text, "#z39#", BabbleZone["The Eye of Eternity"])
|
|
text = gsub(text, "#z40#", BabbleZone["Northrend"])
|
|
|
|
-- Factions
|
|
text = gsub(text, "#f1#", BabbleFaction["Lower City"])
|
|
text = gsub(text, "#f2#", BabbleFaction["The Sha'tar"])
|
|
text = gsub(text, "#f3#", BabbleFaction["Thrallmar"])
|
|
text = gsub(text, "#f4#", BabbleFaction["Honor Hold"])
|
|
text = gsub(text, "#f5#", BabbleFaction["Keepers of Time"])
|
|
text = gsub(text, "#f6#", BabbleFaction["Cenarion Expedition"])
|
|
text = gsub(text, "#f7#", BabbleFaction["The Sons of Hodir"])
|
|
text = gsub(text, "#f8#", BabbleFaction["The Wyrmrest Accord"])
|
|
text = gsub(text, "#f9#", AL["Argent Tournament"])
|
|
|
|
-- Blacksmithing Crafted Mail Sets
|
|
text = gsub(text, "#craftbm1#", AL["Bloodsoul Embrace"])
|
|
text = gsub(text, "#craftbm2#", AL["Fel Iron Chain"])
|
|
|
|
-- Blacksmithing Crafted Plate Sets
|
|
text = gsub(text, "#craftbp1#", AL["Imperial Plate"])
|
|
text = gsub(text, "#craftbp2#", AL["The Darksoul"])
|
|
text = gsub(text, "#craftbp3#", AL["Fel Iron Plate"])
|
|
text = gsub(text, "#craftbp4#", AL["Adamantite Battlegear"])
|
|
text = gsub(text, "#craftbp5#", AL["Flame Guard"])
|
|
text = gsub(text, "#craftbp6#", AL["Enchanted Adamantite Armor"])
|
|
text = gsub(text, "#craftbp7#", AL["Khorium Ward"])
|
|
text = gsub(text, "#craftbp8#", AL["Faith in Felsteel"])
|
|
text = gsub(text, "#craftbp9#", AL["Burning Rage"])
|
|
text = gsub(text, "#craftbp10#", AL["Ornate Saronite Battlegear"])
|
|
text = gsub(text, "#craftbp11#", AL["Savage Saronite Battlegear"])
|
|
|
|
-- Leatherworking Crafted Leather Sets
|
|
text = gsub(text, "#craftlwl1#", AL["Volcanic Armor"])
|
|
text = gsub(text, "#craftlwl2#", AL["Ironfeather Armor"])
|
|
text = gsub(text, "#craftlwl3#", AL["Stormshroud Armor"])
|
|
text = gsub(text, "#craftlwl4#", AL["Devilsaur Armor"])
|
|
text = gsub(text, "#craftlwl5#", AL["Blood Tiger Harness"])
|
|
text = gsub(text, "#craftlwl6#", AL["Primal Batskin"])
|
|
text = gsub(text, "#craftlwl7#", AL["Wild Draenish Armor"])
|
|
text = gsub(text, "#craftlwl8#", AL["Thick Draenic Armor"])
|
|
text = gsub(text, "#craftlwl9#", AL["Fel Skin"])
|
|
text = gsub(text, "#craftlwl10#", AL["Strength of the Clefthoof"])
|
|
text = gsub(text, "#craftlwe1#", AL["Primal Intent"])
|
|
text = gsub(text, "#craftlwt1#", AL["Windhawk Armor"])
|
|
text = gsub(text, "#craftlwl11#", AL["Borean Embrace"])
|
|
text = gsub(text, "#craftlwl12#", AL["Iceborne Embrace"])
|
|
text = gsub(text, "#craftlwl13#", AL["Eviscerator's Battlegear"])
|
|
text = gsub(text, "#craftlwl14#", AL["Overcaster Battlegear"])
|
|
|
|
-- Leatherworking Crafted Mail Sets
|
|
text = gsub(text, "#craftlwm1#", AL["Green Dragon Mail"])
|
|
text = gsub(text, "#craftlwm2#", AL["Blue Dragon Mail"])
|
|
text = gsub(text, "#craftlwm3#", AL["Black Dragon Mail"])
|
|
text = gsub(text, "#craftlwm4#", AL["Scaled Draenic Armor"])
|
|
text = gsub(text, "#craftlwm5#", AL["Felscale Armor"])
|
|
text = gsub(text, "#craftlwm6#", AL["Felstalker Armor"])
|
|
text = gsub(text, "#craftlwm7#", AL["Fury of the Nether"])
|
|
text = gsub(text, "#craftlwd1#", AL["Netherscale Armor"])
|
|
text = gsub(text, "#craftlwd2#", AL["Netherstrike Armor"])
|
|
text = gsub(text, "#craftlwm8#", AL["Frostscale Binding"])
|
|
text = gsub(text, "#craftlwm9#", AL["Nerubian Hive"])
|
|
text = gsub(text, "#craftlwm10#", AL["Stormhide Battlegear"])
|
|
text = gsub(text, "#craftlwm11#", AL["Swiftarrow Battlefear"])
|
|
|
|
-- Tailoring Crafted Sets
|
|
text = gsub(text, "#craftt1#", AL["Bloodvine Garb"])
|
|
text = gsub(text, "#craftt2#", AL["Netherweave Vestments"])
|
|
text = gsub(text, "#craftt3#", AL["Imbued Netherweave"])
|
|
text = gsub(text, "#craftt4#", AL["Arcanoweave Vestments"])
|
|
text = gsub(text, "#craftt5#", AL["The Unyielding"])
|
|
text = gsub(text, "#craftt6#", AL["Whitemend Wisdom"])
|
|
text = gsub(text, "#craftt7#", AL["Spellstrike Infusion"])
|
|
text = gsub(text, "#craftt8#", AL["Battlecast Garb"])
|
|
text = gsub(text, "#craftt9#", AL["Soulcloth Embrace"])
|
|
text = gsub(text, "#crafttm1#", AL["Primal Mooncloth"])
|
|
text = gsub(text, "#crafttsh1#", AL["Shadow's Embrace"])
|
|
text = gsub(text, "#crafttsf1#", AL["Wrath of Spellfire"])
|
|
text = gsub(text, "#craftt10#", AL["Frostwoven Power"])
|
|
text = gsub(text, "#craftt11#", AL["Duskweaver"])
|
|
text = gsub(text, "#craftt12#", AL["Frostsavage Battlegear"])
|
|
|
|
-- Vanilla WoW Sets
|
|
text = gsub(text, "#pre60s1#", AL["Defias Leather"])
|
|
text = gsub(text, "#pre60s2#", AL["Embrace of the Viper"])
|
|
text = gsub(text, "#pre60s3#", AL["Chain of the Scarlet Crusade"])
|
|
text = gsub(text, "#pre60s4#", AL["The Gladiator"])
|
|
text = gsub(text, "#pre60s5#", AL["Ironweave Battlesuit"])
|
|
text = gsub(text, "#pre60s6#", AL["Necropile Raiment"])
|
|
text = gsub(text, "#pre60s7#", AL["Cadaverous Garb"])
|
|
text = gsub(text, "#pre60s8#", AL["Bloodmail Regalia"])
|
|
text = gsub(text, "#pre60s9#", AL["Deathbone Guardian"])
|
|
text = gsub(text, "#pre60s10#", AL["The Postmaster"])
|
|
text = gsub(text, "#pre60s15#", AL["Shard of the Gods"])
|
|
text = gsub(text, "#pre60s16#", AL["Major Mojo Infusion"])
|
|
text = gsub(text, "#pre60s17#", AL["Overlord's Resolution"])
|
|
text = gsub(text, "#pre60s18#", AL["Prayer of the Primal"])
|
|
text = gsub(text, "#pre60s19#", AL["Zanzil's Concentration"])
|
|
text = gsub(text, "#pre60s20#", AL["Spirit of Eskhandar"])
|
|
text = gsub(text, "#pre60s21#", AL["The Twin Blades of Hakkari"])
|
|
text = gsub(text, "#pre60s22#", AL["Primal Blessing"])
|
|
text = gsub(text, "#pre60s23#", AL["Dal'Rend's Arms"])
|
|
text = gsub(text, "#pre60s24#", AL["Spider's Kiss"])
|
|
|
|
-- The Burning Crusade Sets
|
|
text = gsub(text, "#bcs1#", AL["The Twin Stars"])
|
|
text = gsub(text, "#bcs2#", AL["The Twin Blades of Azzinoth"])
|
|
text = gsub(text, "#bcs3#", AL["Latro's Flurry"])
|
|
text = gsub(text, "#bcs4#", AL["The Fists of Fury"])
|
|
|
|
-- Wrath Of The Lich King Sets
|
|
text = gsub(text, "#wotlk1#", AL["Raine's Revenge"])
|
|
text = gsub(text, "#wotlk2#", AL["Purified Shard of the Gods"])
|
|
text = gsub(text, "#wotlk3#", AL["Shiny Shard of the Gods"])
|
|
|
|
-- ZG Sets
|
|
text = gsub(text, "#zgs1#", AL["Haruspex's Garb"])
|
|
text = gsub(text, "#zgs2#", AL["Predator's Armor"])
|
|
text = gsub(text, "#zgs3#", AL["Illusionist's Attire"])
|
|
text = gsub(text, "#zgs4#", AL["Freethinker's Armor"])
|
|
text = gsub(text, "#zgs5#", AL["Confessor's Raiment"])
|
|
text = gsub(text, "#zgs6#", AL["Madcap's Outfit"])
|
|
text = gsub(text, "#zgs7#", AL["Augur's Regalia"])
|
|
text = gsub(text, "#zgs8#", AL["Demoniac's Threads"])
|
|
text = gsub(text, "#zgs9#", AL["Vindicator's Battlegear"])
|
|
|
|
-- AQ20 Sets
|
|
text = gsub(text, "#aq20s1#", AL["Symbols of Unending Life"])
|
|
text = gsub(text, "#aq20s2#", AL["Trappings of the Unseen Path"])
|
|
text = gsub(text, "#aq20s3#", AL["Trappings of Vaulted Secrets"])
|
|
text = gsub(text, "#aq20s4#", AL["Battlegear of Eternal Justice"])
|
|
text = gsub(text, "#aq20s5#", AL["Finery of Infinite Wisdom"])
|
|
text = gsub(text, "#aq20s6#", AL["Emblems of Veiled Shadows"])
|
|
text = gsub(text, "#aq20s7#", AL["Gift of the Gathering Storm"])
|
|
text = gsub(text, "#aq20s8#", AL["Implements of Unspoken Names"])
|
|
text = gsub(text, "#aq20s9#", AL["Battlegear of Unyielding Strength"])
|
|
text = gsub(text, "#aq20s10#", AL["Keepsakes of Endless Machinations"])
|
|
text = gsub(text, "#aq20s11#", AL["Regalia of Roaring Earth"])
|
|
text = gsub(text, "#aq20s12#", AL["Relics of Ferocious Vigor"])
|
|
text = gsub(text, "#aq20s13#", AL["Laurels of the Faithful Zealot"])
|
|
text = gsub(text, "#aq20s14#", AL["Instruments of Masterful Technique"])
|
|
text = gsub(text, "#aq20s15#", AL["Decorations of Martial Prowess"])
|
|
text = gsub(text, "#aq20s16#", AL["Trophies of Unrivaled Rage"])
|
|
text = gsub(text, "#aq20s17#", AL["Remnants of Expansive Research"])
|
|
|
|
-- AQ40 Sets
|
|
text = gsub(text, "#aq40s1#", AL["Genesis Raiment"])
|
|
text = gsub(text, "#aq40s2#", AL["Striker's Garb"])
|
|
text = gsub(text, "#aq40s3#", AL["Enigma Vestments"])
|
|
text = gsub(text, "#aq40s4#", AL["Avenger's Battlegear"])
|
|
text = gsub(text, "#aq40s5#", AL["Garments of the Oracle"])
|
|
text = gsub(text, "#aq40s6#", AL["Deathdealer's Embrace"])
|
|
text = gsub(text, "#aq40s7#", AL["Stormcaller's Garb"])
|
|
text = gsub(text, "#aq40s8#", AL["Doomcaller's Attire"])
|
|
text = gsub(text, "#aq40s9#", AL["Conqueror's Battlegear"])
|
|
|
|
-- Tier Tokens
|
|
text = gsub(text, "#setToken#", AL["Set Token (Click)"]) --Accessory tokens
|
|
|
|
-- Dungeon 3 Sets
|
|
text = gsub(text, "#ds3s1#", AL["Hallowed Raiment"])
|
|
text = gsub(text, "#ds3s2#", AL["Incanter's Regalia"])
|
|
text = gsub(text, "#ds3s3#", AL["Mana-Etched Regalia"])
|
|
text = gsub(text, "#ds3s4#", AL["Oblivion Raiment"])
|
|
text = gsub(text, "#ds3s5#", AL["Assassination Armor"])
|
|
text = gsub(text, "#ds3s6#", AL["Moonglade Raiment"])
|
|
text = gsub(text, "#ds3s7#", AL["Wastewalker Armor"])
|
|
text = gsub(text, "#ds3s8#", AL["Beast Lord Armor"])
|
|
text = gsub(text, "#ds3s9#", AL["Desolation Battlegear"])
|
|
text = gsub(text, "#ds3s10#", AL["Tidefury Raiment"])
|
|
text = gsub(text, "#ds3s11#", AL["Bold Armor"])
|
|
text = gsub(text, "#ds3s12#", AL["Doomplate Battlegear"])
|
|
text = gsub(text, "#ds3s13#", AL["Righteous Armor"])
|
|
|
|
-- Tier 1 Sets
|
|
text = gsub(text, "#t1s1#", AL["Cenarion Raiment"])
|
|
text = gsub(text, "#t1s2#", AL["Giantstalker Armor"])
|
|
text = gsub(text, "#t1s3#", AL["Arcanist Regalia"])
|
|
text = gsub(text, "#t1s4#", AL["Lawbringer Armor"])
|
|
text = gsub(text, "#t1s5#", AL["Vestments of Prophecy"])
|
|
text = gsub(text, "#t1s6#", AL["Nightslayer Armor"])
|
|
text = gsub(text, "#t1s7#", AL["The Earthfury"])
|
|
text = gsub(text, "#t1s8#", AL["Felheart Raiment"])
|
|
text = gsub(text, "#t1s9#", AL["Battlegear of Might"])
|
|
text = gsub(text, "#t1s10#", AL["Fury of Might"])
|
|
|
|
-- Tier 2 Sets
|
|
text = gsub(text, "#t2s1#", AL["Stormrage Raiment"])
|
|
text = gsub(text, "#t2s2#", AL["Dragonstalker Armor"])
|
|
text = gsub(text, "#t2s3#", AL["Netherwind Regalia"])
|
|
text = gsub(text, "#t2s4#", AL["Judgement Armor"])
|
|
text = gsub(text, "#t2s5#", AL["Vestments of Transcendence"])
|
|
text = gsub(text, "#t2s6#", AL["Bloodfang Armor"])
|
|
text = gsub(text, "#t2s7#", AL["The Ten Storms"])
|
|
text = gsub(text, "#t2s8#", AL["Nemesis Raiment"])
|
|
text = gsub(text, "#t2s9#", AL["Battlegear of Wrath"])
|
|
text = gsub(text, "#t2s10#", AL["Fury of Wrath"])
|
|
|
|
-- Tier 3 Sets
|
|
text = gsub(text, "#t3s1#", AL["Dreamwalker Raiment"])
|
|
text = gsub(text, "#t3s2#", AL["Cryptstalker Armor"])
|
|
text = gsub(text, "#t3s3#", AL["Frostfire Regalia"])
|
|
text = gsub(text, "#t3s4#", AL["Redemption Armor"])
|
|
text = gsub(text, "#t3s5#", AL["Vestments of Faith"])
|
|
text = gsub(text, "#t3s6#", AL["Bonescythe Armor"])
|
|
text = gsub(text, "#t3s7#", AL["The Earthshatterer"])
|
|
text = gsub(text, "#t3s8#", AL["Plagueheart Raiment"])
|
|
text = gsub(text, "#t3s9#", AL["Dreadnaught's Battlegear"])
|
|
text = gsub(text, "#t3s10#", AL["Dreadborne Warplate"])
|
|
|
|
-- Tier 4 Sets
|
|
text = gsub(text, "#t4s1_1#", AL["Malorne Harness"])
|
|
text = gsub(text, "#t4s1_2#", AL["Malorne Raiment"])
|
|
text = gsub(text, "#t4s1_3#", AL["Malorne Regalia"])
|
|
text = gsub(text, "#t4s2#", AL["Demon Stalker Armor"])
|
|
text = gsub(text, "#t4s3#", AL["Aldor Regalia"])
|
|
text = gsub(text, "#t4s4_1#", AL["Justicar Armor"])
|
|
text = gsub(text, "#t4s4_2#", AL["Justicar Battlegear"])
|
|
text = gsub(text, "#t4s4_3#", AL["Justicar Raiment"])
|
|
text = gsub(text, "#t4s5_1#", AL["Incarnate Raiment"])
|
|
text = gsub(text, "#t4s5_2#", AL["Incarnate Regalia"])
|
|
text = gsub(text, "#t4s6#", AL["Netherblade Set"])
|
|
text = gsub(text, "#t4s7_1#", AL["Cyclone Harness"])
|
|
text = gsub(text, "#t4s7_2#", AL["Cyclone Raiment"])
|
|
text = gsub(text, "#t4s7_3#", AL["Cyclone Regalia"])
|
|
text = gsub(text, "#t4s8#", AL["Voidheart Raiment"])
|
|
text = gsub(text, "#t4s9_1#", AL["Warbringer Armor"])
|
|
text = gsub(text, "#t4s9_2#", AL["Warbringer Battlegear"])
|
|
|
|
-- Tier 5 Sets
|
|
text = gsub(text, "#t5s1_1#", AL["Nordrassil Harness"])
|
|
text = gsub(text, "#t5s1_2#", AL["Nordrassil Raiment"])
|
|
text = gsub(text, "#t5s1_3#", AL["Nordrassil Regalia"])
|
|
text = gsub(text, "#t5s2#", AL["Rift Stalker Armor"])
|
|
text = gsub(text, "#t5s3#", AL["Tirisfal Regalia"])
|
|
text = gsub(text, "#t5s4_1#", AL["Crystalforge Armor"])
|
|
text = gsub(text, "#t5s4_2#", AL["Crystalforge Battlegear"])
|
|
text = gsub(text, "#t5s4_3#", AL["Crystalforge Raiment"])
|
|
text = gsub(text, "#t5s5_1#", AL["Avatar Raiment"])
|
|
text = gsub(text, "#t5s5_2#", AL["Avatar Regalia"])
|
|
text = gsub(text, "#t5s6#", AL["Deathmantle Set"])
|
|
text = gsub(text, "#t5s7_1#", AL["Cataclysm Harness"])
|
|
text = gsub(text, "#t5s7_2#", AL["Cataclysm Raiment"])
|
|
text = gsub(text, "#t5s7_3#", AL["Cataclysm Regalia"])
|
|
text = gsub(text, "#t5s8#", AL["Corruptor Raiment"])
|
|
text = gsub(text, "#t5s9_1#", AL["Destroyer Armor"])
|
|
text = gsub(text, "#t5s9_2#", AL["Destroyer Battlegear"])
|
|
|
|
-- Tier 6 Sets
|
|
text = gsub(text, "#t6s1_1#", AL["Thunderheart Harness"])
|
|
text = gsub(text, "#t6s1_2#", AL["Thunderheart Raiment"])
|
|
text = gsub(text, "#t6s1_3#", AL["Thunderheart Regalia"])
|
|
text = gsub(text, "#t6s2#", AL["Gronnstalker's Armor"])
|
|
text = gsub(text, "#t6s3#", AL["Tempest Regalia"])
|
|
text = gsub(text, "#t6s4_1#", AL["Lightbringer Armor"])
|
|
text = gsub(text, "#t6s4_2#", AL["Lightbringer Battlegear"])
|
|
text = gsub(text, "#t6s4_3#", AL["Lightbringer Raiment"])
|
|
text = gsub(text, "#t6s5_1#", AL["Vestments of Absolution"])
|
|
text = gsub(text, "#t6s5_2#", AL["Absolution Regalia"])
|
|
text = gsub(text, "#t6s6#", AL["Slayer's Armor"])
|
|
text = gsub(text, "#t6s7_1#", AL["Skyshatter Harness"])
|
|
text = gsub(text, "#t6s7_2#", AL["Skyshatter Raiment"])
|
|
text = gsub(text, "#t6s7_3#", AL["Skyshatter Regalia"])
|
|
text = gsub(text, "#t6s8#", AL["Malefic Raiment"])
|
|
text = gsub(text, "#t6s9_1#", AL["Onslaught Armor"])
|
|
text = gsub(text, "#t6s9_2#", AL["Onslaught Battlegear"])
|
|
|
|
-- Tier 7 Sets
|
|
text = gsub(text, "#t7s1_1#", AL["Dreamwalker Garb"])
|
|
text = gsub(text, "#t7s1_2#", AL["Dreamwalker Battlegear"])
|
|
text = gsub(text, "#t7s1_3#", AL["Dreamwalker Regalia"])
|
|
text = gsub(text, "#t7s2#", AL["Cryptstalker Battlegear"])
|
|
text = gsub(text, "#t7s3#", AL["Frostfire Garb"])
|
|
text = gsub(text, "#t7s4_1#", AL["Redemption Regalia"])
|
|
text = gsub(text, "#t7s4_2#", AL["Redemption Battlegear"])
|
|
text = gsub(text, "#t7s4_3#", AL["Redemption Plate"])
|
|
text = gsub(text, "#t7s5_1#", AL["Regalia of Faith"])
|
|
text = gsub(text, "#t7s5_2#", AL["Garb of Faith"])
|
|
text = gsub(text, "#t7s6#", AL["Bonescythe Battlegear"])
|
|
text = gsub(text, "#t7s7_1#", AL["Earthshatter Garb"])
|
|
text = gsub(text, "#t7s7_2#", AL["Earthshatter Battlegear"])
|
|
text = gsub(text, "#t7s7_3#", AL["Earthshatter Regalia"])
|
|
text = gsub(text, "#t7s8#", AL["Plagueheart Garb"])
|
|
text = gsub(text, "#t7s9_1#", AL["Dreadnaught Battlegear"])
|
|
text = gsub(text, "#t7s9_2#", AL["Dreadnaught Plate"])
|
|
text = gsub(text, "#t7s10_1#", AL["Scourgeborne Battlegear"])
|
|
text = gsub(text, "#t7s10_2#", AL["Scourgeborne Plate"])
|
|
|
|
-- Tier 8 Sets
|
|
text = gsub(text, "#t8s1_1#", AL["Nightsong Garb"])
|
|
text = gsub(text, "#t8s1_2#", AL["Nightsong Battlegear"])
|
|
text = gsub(text, "#t8s1_3#", AL["Nightsong Regalia"])
|
|
text = gsub(text, "#t8s2#", AL["Scourgestalker Battlegear"])
|
|
text = gsub(text, "#t8s3#", AL["Kirin Tor Garb"])
|
|
text = gsub(text, "#t8s4_1#", AL["Aegis Regalia"])
|
|
text = gsub(text, "#t8s4_2#", AL["Aegis Battlegear"])
|
|
text = gsub(text, "#t8s4_3#", AL["Aegis Plate"])
|
|
text = gsub(text, "#t8s5_1#", AL["Sanctification Regalia"])
|
|
text = gsub(text, "#t8s5_2#", AL["Sanctification Garb"])
|
|
text = gsub(text, "#t8s6#", AL["Terrorblade Battlegear"])
|
|
text = gsub(text, "#t8s7_1#", AL["Worldbreaker Garb"])
|
|
text = gsub(text, "#t8s7_2#", AL["Worldbreaker Battlegear"])
|
|
text = gsub(text, "#t8s7_3#", AL["Worldbreaker Regalia"])
|
|
text = gsub(text, "#t8s8#", AL["Deathbringer Garb"])
|
|
text = gsub(text, "#t8s9_1#", AL["Siegebreaker Battlegear"])
|
|
text = gsub(text, "#t8s9_2#", AL["Siegebreaker Plate"])
|
|
text = gsub(text, "#t8s10_1#", AL["Darkruned Battlegear"])
|
|
text = gsub(text, "#t8s10_2#", AL["Darkruned Plate"])
|
|
|
|
-- Tier 9 Sets
|
|
text = gsub(text, "#t9s1_1a#", AL["Malfurion's Garb"])
|
|
text = gsub(text, "#t9s1_1h#", AL["Runetotem's Garb"])
|
|
text = gsub(text, "#t9s1_2a#", AL["Malfurion's Battlegear"])
|
|
text = gsub(text, "#t9s1_2h#", AL["Runetotem's Battlegear"])
|
|
text = gsub(text, "#t9s1_3a#", AL["Malfurion's Regalia"])
|
|
text = gsub(text, "#t9s1_3h#", AL["Runetotem's Regalia"])
|
|
text = gsub(text, "#t9s2_a#", AL["Windrunner's Battlegear"])
|
|
text = gsub(text, "#t9s2_h#", AL["Windrunner's Pursuit"])
|
|
text = gsub(text, "#t9s3_a#", AL["Khadgar's Regalia"])
|
|
text = gsub(text, "#t9s3_h#", AL["Sunstrider's Regalia"])
|
|
text = gsub(text, "#t9s4_1a#", AL["Turalyon's Garb"])
|
|
text = gsub(text, "#t9s4_1h#", AL["Liadrin's Garb"])
|
|
text = gsub(text, "#t9s4_2a#", AL["Turalyon's Battlegear"])
|
|
text = gsub(text, "#t9s4_2h#", AL["Liadrin's Battlegear"])
|
|
text = gsub(text, "#t9s4_3a#", AL["Turalyon's Plate"])
|
|
text = gsub(text, "#t9s4_3h#", AL["Liadrin's Plate"])
|
|
text = gsub(text, "#t9s5_1a#", AL["Velen's Regalia"])
|
|
text = gsub(text, "#t9s5_1h#", AL["Zabra's Regalia"])
|
|
text = gsub(text, "#t9s5_2a#", AL["Velen's Raiment"])
|
|
text = gsub(text, "#t9s5_2h#", AL["Zabra's Raiment"])
|
|
text = gsub(text, "#t9s6_a#", AL["VanCleef's Battlegear"])
|
|
text = gsub(text, "#t9s6_h#", AL["Garona's Battlegear"])
|
|
text = gsub(text, "#t9s7_1a#", AL["Nobundo's Garb"])
|
|
text = gsub(text, "#t9s7_1h#", AL["Thrall's Garb"])
|
|
text = gsub(text, "#t9s7_2a#", AL["Nobundo's Battlegear"])
|
|
text = gsub(text, "#t9s7_2h#", AL["Thrall's Battlegear"])
|
|
text = gsub(text, "#t9s7_3a#", AL["Nobundo's Regalia"])
|
|
text = gsub(text, "#t9s7_3h#", AL["Thrall's Regalia"])
|
|
text = gsub(text, "#t9s8_a#", AL["Kel'Thuzad's Regalia"])
|
|
text = gsub(text, "#t9s8_h#", AL["Gul'dan's Regalia"])
|
|
text = gsub(text, "#t9s9_1a#", AL["Wrynn's Battlegear"])
|
|
text = gsub(text, "#t9s9_1h#", AL["Hellscream's Battlegear"])
|
|
text = gsub(text, "#t9s9_2a#", AL["Wrynn's Plate"])
|
|
text = gsub(text, "#t9s9_2h#", AL["Hellscream's Plate"])
|
|
text = gsub(text, "#t9s10_1a#", AL["Thassarian's Plate"])
|
|
text = gsub(text, "#t9s10_1h#", AL["Koltira's Plate"])
|
|
text = gsub(text, "#t9s10_2a#", AL["Thassarian's Battlegear"])
|
|
text = gsub(text, "#t9s10_2h#", AL["Koltira's Battlegear"])
|
|
|
|
-- Tier 10 Sets
|
|
text = gsub(text, "#t10s1_1#", AL["Lasherweave's Garb"])
|
|
text = gsub(text, "#t10s1_2#", AL["Lasherweave's Battlegear"])
|
|
text = gsub(text, "#t10s1_3#", AL["Lasherweave's Regalia"])
|
|
text = gsub(text, "#t10s2#", AL["Ahn'Kahar Blood Hunter's Battlegear"])
|
|
text = gsub(text, "#t10s3#", AL["Bloodmage's Regalia"])
|
|
text = gsub(text, "#t10s4_1#", AL["Lightsworn Garb"])
|
|
text = gsub(text, "#t10s4_2#", AL["Lightsworn Battlegear"])
|
|
text = gsub(text, "#t10s4_3#", AL["Lightsworn Plate"])
|
|
text = gsub(text, "#t10s5_1#", AL["Crimson Acolyte's Regalia"])
|
|
text = gsub(text, "#t10s5_2#", AL["Crimson Acolyte's Raiment"])
|
|
text = gsub(text, "#t10s6#", AL["Shadowblade's Battlegear"])
|
|
text = gsub(text, "#t10s7_1#", AL["Frost Witch's Garb"])
|
|
text = gsub(text, "#t10s7_2#", AL["Frost Witch's Battlegear"])
|
|
text = gsub(text, "#t10s7_3#", AL["Frost Witch's Regalia"])
|
|
text = gsub(text, "#t10s8#", AL["Dark Coven's Garb"])
|
|
text = gsub(text, "#t10s9_1#", AL["Ymirjar Lord's Battlegear"])
|
|
text = gsub(text, "#t10s9_2#", AL["Ymirjar Lord's Plate"])
|
|
text = gsub(text, "#t10s10_1#", AL["Scourgelord's Battlegear"])
|
|
text = gsub(text, "#t10s10_2#", AL["Scourgelord's Plate"])
|
|
|
|
-- Arathi Basin Sets - Alliance
|
|
text = gsub(text, "#absa1#", AL["The Highlander's Intent"])
|
|
text = gsub(text, "#absa2#", AL["The Highlander's Purpose"])
|
|
text = gsub(text, "#absa3#", AL["The Highlander's Will"])
|
|
text = gsub(text, "#absa4#", AL["The Highlander's Determination"])
|
|
text = gsub(text, "#absa5#", AL["The Highlander's Fortitude"])
|
|
text = gsub(text, "#absa6#", AL["The Highlander's Resolution"])
|
|
text = gsub(text, "#absa7#", AL["The Highlander's Resolve"])
|
|
|
|
-- Arathi Basin Sets - Horde
|
|
text = gsub(text, "#absh1#", AL["The Defiler's Intent"])
|
|
text = gsub(text, "#absh2#", AL["The Defiler's Purpose"])
|
|
text = gsub(text, "#absh3#", AL["The Defiler's Will"])
|
|
text = gsub(text, "#absh4#", AL["The Defiler's Determination"])
|
|
text = gsub(text, "#absh5#", AL["The Defiler's Fortitude"])
|
|
text = gsub(text, "#absh6#", AL["The Defiler's Resolution"])
|
|
|
|
-- PvP Level 60 Rare Sets - Alliance
|
|
text = gsub(text, "#pvpra1#", AL["Lieutenant Commander's Refuge"])
|
|
text = gsub(text, "#pvpra2#", AL["Lieutenant Commander's Pursuance"])
|
|
text = gsub(text, "#pvpra3#", AL["Lieutenant Commander's Arcanum"])
|
|
text = gsub(text, "#pvpra4#", AL["Lieutenant Commander's Redoubt"])
|
|
text = gsub(text, "#pvpra5#", AL["Lieutenant Commander's Investiture"])
|
|
text = gsub(text, "#pvpra6#", AL["Lieutenant Commander's Guard"])
|
|
text = gsub(text, "#pvpra7#", AL["Lieutenant Commander's Dreadgear"])
|
|
text = gsub(text, "#pvpra8#", AL["Lieutenant Commander's Battlearmor"])
|
|
text = gsub(text, "#pvpra9#", AL["Lieutenant Commander's Stormcaller"])
|
|
|
|
-- PvP Level 60 Rare Sets - Horde
|
|
text = gsub(text, "#pvprh1#", AL["Champion's Refuge"])
|
|
text = gsub(text, "#pvprh2#", AL["Champion's Pursuance"])
|
|
text = gsub(text, "#pvprh3#", AL["Champion's Arcanum"])
|
|
text = gsub(text, "#pvprh4#", AL["Champion's Investiture"])
|
|
text = gsub(text, "#pvprh5#", AL["Champion's Guard"])
|
|
text = gsub(text, "#pvprh6#", AL["Champion's Stormcaller"])
|
|
text = gsub(text, "#pvprh7#", AL["Champion's Dreadgear"])
|
|
text = gsub(text, "#pvprh8#", AL["Champion's Battlearmor"])
|
|
text = gsub(text, "#pvprh9#", AL["Champion's Redoubt"])
|
|
|
|
-- PvP Level 60 Epic Sets - Alliance
|
|
text = gsub(text, "#pvpea1#", AL["Field Marshal's Sanctuary"])
|
|
text = gsub(text, "#pvpea2#", AL["Field Marshal's Pursuit"])
|
|
text = gsub(text, "#pvpea3#", AL["Field Marshal's Regalia"])
|
|
text = gsub(text, "#pvpea4#", AL["Field Marshal's Aegis"])
|
|
text = gsub(text, "#pvpea5#", AL["Field Marshal's Raiment"])
|
|
text = gsub(text, "#pvpea6#", AL["Field Marshal's Vestments"])
|
|
text = gsub(text, "#pvpea7#", AL["Field Marshal's Threads"])
|
|
text = gsub(text, "#pvpea8#", AL["Field Marshal's Battlegear"])
|
|
text = gsub(text, "#pvpea9#", AL["Field Marshal's Earthshaker"])
|
|
|
|
-- PvP Level 60 Epic Sets - Horde
|
|
text = gsub(text, "#pvpeh1#", AL["Warlord's Sanctuary"])
|
|
text = gsub(text, "#pvpeh2#", AL["Warlord's Pursuit"])
|
|
text = gsub(text, "#pvpeh3#", AL["Warlord's Regalia"])
|
|
text = gsub(text, "#pvpeh4#", AL["Warlord's Raiment"])
|
|
text = gsub(text, "#pvpeh5#", AL["Warlord's Vestments"])
|
|
text = gsub(text, "#pvpeh6#", AL["Warlord's Earthshaker"])
|
|
text = gsub(text, "#pvpeh7#", AL["Warlord's Threads"])
|
|
text = gsub(text, "#pvpeh8#", AL["Warlord's Battlegear"])
|
|
text = gsub(text, "#pvpeh9#", AL["Warlord's Aegis"])
|
|
|
|
-- PvP Level 60 Epic Sets - Alliance
|
|
text = gsub(text, "#pvpeea1#", AL["Grand Marshal's Sanctuary"])
|
|
text = gsub(text, "#pvpeea2#", AL["Grand Marshal's Pursuit"])
|
|
text = gsub(text, "#pvpeea3#", AL["Grand Marshal's Regalia"])
|
|
text = gsub(text, "#pvpeea4#", AL["Grand Marshal's Aegis"])
|
|
text = gsub(text, "#pvpeea5#", AL["Grand Marshal's Raiment"])
|
|
text = gsub(text, "#pvpeea6#", AL["Grand Marshal's Vestments"])
|
|
text = gsub(text, "#pvpeea7#", AL["Grand Marshal's Threads"])
|
|
text = gsub(text, "#pvpeea8#", AL["Grand Marshal's Battlegear"])
|
|
text = gsub(text, "#pvpeea9#", AL["Grand Marshal's Earthshaker"])
|
|
|
|
-- PvP Level 60 Epic Sets - Horde
|
|
text = gsub(text, "#pvpeeh1#", AL["High Warlord's Sanctuary"])
|
|
text = gsub(text, "#pvpeeh2#", AL["High Warlord's Pursuit"])
|
|
text = gsub(text, "#pvpeeh3#", AL["High Warlord's Regalia"])
|
|
text = gsub(text, "#pvpeeh4#", AL["High Warlord's Raiment"])
|
|
text = gsub(text, "#pvpeeh5#", AL["High Warlord's Vestments"])
|
|
text = gsub(text, "#pvpeeh6#", AL["High Warlord's Earthshaker"])
|
|
text = gsub(text, "#pvpeeh7#", AL["High Warlord's Threads"])
|
|
text = gsub(text, "#pvpeeh8#", AL["High Warlord's Battlegear"])
|
|
text = gsub(text, "#pvpeeh9#", AL["High Warlord's Aegis"])
|
|
|
|
-- Outland Faction Reputation PvP Sets
|
|
text = gsub(text, "#pvprep701_1#", AL["Dragonhide Battlegear"])
|
|
text = gsub(text, "#pvprep701_2#", AL["Wyrmhide Battlegear"])
|
|
text = gsub(text, "#pvprep701_3#", AL["Kodohide Battlegear"])
|
|
text = gsub(text, "#pvprep702#", AL["Stalker's Chain Battlegear"])
|
|
text = gsub(text, "#pvprep703#", AL["Evoker's Silk Battlegear"])
|
|
text = gsub(text, "#pvprep704_1#", AL["Crusader's Scaled Battledgear"])
|
|
text = gsub(text, "#pvprep704_2#", AL["Crusader's Ornamented Battledgear"])
|
|
text = gsub(text, "#pvprep705_1#", AL["Satin Battlegear"])
|
|
text = gsub(text, "#pvprep705_2#", AL["Mooncloth Battlegear"])
|
|
text = gsub(text, "#pvprep706#", AL["Opportunist's Battlegear"])
|
|
text = gsub(text, "#pvprep707_1#", AL["Seer's Linked Battlegear"])
|
|
text = gsub(text, "#pvprep707_2#", AL["Seer's Mail Battlegear"])
|
|
text = gsub(text, "#pvprep707_3#", AL["Seer's Ringmail Battlegear"])
|
|
text = gsub(text, "#pvprep708#", AL["Dreadweave Battlegear"])
|
|
text = gsub(text, "#pvprep709#", AL["Savage's Plate Battlegear"])
|
|
|
|
-- Arena Epic Sets
|
|
text = gsub(text, "#reqrating#", AL["Rating:"])
|
|
text = gsub(text, "#arenas1_1#", AL["Gladiator's Sanctuary"])
|
|
text = gsub(text, "#arenas1_2#", AL["Gladiator's Wildhide"])
|
|
text = gsub(text, "#arenas1_3#", AL["Gladiator's Refuge"])
|
|
text = gsub(text, "#arenas2#", AL["Gladiator's Pursuit"])
|
|
text = gsub(text, "#arenas3#", AL["Gladiator's Regalia"])
|
|
text = gsub(text, "#arenas4_1#", AL["Gladiator's Aegis"])
|
|
text = gsub(text, "#arenas4_2#", AL["Gladiator's Vindication"])
|
|
text = gsub(text, "#arenas4_3#", AL["Gladiator's Redemption"])
|
|
text = gsub(text, "#arenas5_1#", AL["Gladiator's Raiment"])
|
|
text = gsub(text, "#arenas5_2#", AL["Gladiator's Investiture"])
|
|
text = gsub(text, "#arenas6#", AL["Gladiator's Vestments"])
|
|
text = gsub(text, "#arenas7_1#", AL["Gladiator's Earthshaker"])
|
|
text = gsub(text, "#arenas7_2#", AL["Gladiator's Thunderfist"])
|
|
text = gsub(text, "#arenas7_3#", AL["Gladiator's Wartide"])
|
|
text = gsub(text, "#arenas8_1#", AL["Gladiator's Dreadgear"])
|
|
text = gsub(text, "#arenas8_2#", AL["Gladiator's Felshroud"])
|
|
text = gsub(text, "#arenas9#", AL["Gladiator's Battlegear"])
|
|
text = gsub(text, "#arenas10#", AL["Gladiator's Desecration"])
|
|
|
|
-- PVP Seasons
|
|
|
|
text = gsub(text, "#arenas1L#", AL["Arena Season 1"])
|
|
text = gsub(text, "#arenas2L#", AL["Arena Season 2"])
|
|
text = gsub(text, "#arenas3L#", AL["Arena Season 3"])
|
|
text = gsub(text, "#arenas4L#", AL["Arena Season 4"])
|
|
|
|
-- Crafting
|
|
text = gsub(text, "#sr#", AL["Skill Required:"])
|
|
text = gsub(text, "#source#", AL["Source"]..": "..WHITE)
|
|
text = gsub(text, "#zone#", AL["Zone"]..": "..WHITE)
|
|
|
|
-- Misc PvP Set Text
|
|
text = gsub(text, "#pvps1#", AL["Epic Set"])
|
|
text = gsub(text, "#pvps2#", AL["Superior Rare Set"])
|
|
text = gsub(text, "#pvps3#", AL["Rare Set"])
|
|
text = gsub(text, "#pvps4#", AL["Superior Epic Set"])
|
|
|
|
-- Text Colouring
|
|
text = gsub(text, "=q0=", "|cff9d9d9d")
|
|
text = gsub(text, "=q1=", "|cffFFFFFF")
|
|
text = gsub(text, "=q2=", "|cff1eff00")
|
|
text = gsub(text, "=q3=", "|cff0070dd")
|
|
text = gsub(text, "=q4=", "|cffa335ee")
|
|
text = gsub(text, "=q5=", "|cffFF8000")
|
|
text = gsub(text, "=q6=", "|cffFF0000")
|
|
text = gsub(text, "=q7=", "|cffe6cc80")
|
|
text = gsub(text, "=ec1=", "|cffFF8400")
|
|
text = gsub(text, "=ds=", "|cffFFd200")
|
|
|
|
-- Months
|
|
text = gsub(text, "#month1#", AL["January"])
|
|
text = gsub(text, "#month2#", AL["February"])
|
|
text = gsub(text, "#month3#", AL["March"])
|
|
text = gsub(text, "#month4#", AL["April"])
|
|
text = gsub(text, "#month5#", AL["May"])
|
|
text = gsub(text, "#month6#", AL["June"])
|
|
text = gsub(text, "#month7#", AL["July"])
|
|
text = gsub(text, "#month8#", AL["August"])
|
|
text = gsub(text, "#month9#", AL["September"])
|
|
text = gsub(text, "#month10#", AL["October"])
|
|
text = gsub(text, "#month11#", AL["November"])
|
|
text = gsub(text, "#month12#", AL["December"])
|
|
|
|
-- Currency Icons
|
|
text = gsub(text, "#gold#", "|TInterface\\AddOns\\AtlasLoot\\Images\\gold:0|t")
|
|
text = gsub(text, "#silver#", "|TInterface\\AddOns\\AtlasLoot\\Images\\silver:0|t")
|
|
text = gsub(text, "#copper#", "|TInterface\\AddOns\\AtlasLoot\\Images\\bronze:0|t")
|
|
text = gsub(text, "#wsg#", "|TInterface\\Icons\\INV_Misc_Rune_07:0|t")
|
|
text = gsub(text, "#ab#", "|TInterface\\Icons\\INV_Jewelry_Amulet_07:0|t")
|
|
text = gsub(text, "#av#", "|TInterface\\Icons\\INV_Jewelry_Necklace_21:0|t")
|
|
text = gsub(text, "#eos#", "|TInterface\\Icons\\Spell_Nature_EyeOfTheStorm:0|t")
|
|
text = gsub(text, "#arena#", "|TInterface\\PVPFrame\\PVP-ArenaPoints-Icon:14:14:2:-1|t")
|
|
text = gsub(text, "#markthrallmar#", "|TInterface\\Icons\\INV_Misc_Token_Thrallmar:0|t")
|
|
text = gsub(text, "#markhhold#", "|TInterface\\Icons\\INV_Misc_Token_HonorHold:0|t")
|
|
text = gsub(text, "#halaabattle#", "|TInterface\\Icons\\INV_Misc_Rune_08:0|t")
|
|
text = gsub(text, "#halaaresearch#", "|TInterface\\Icons\\INV_Misc_Rune_09:0|t")
|
|
text = gsub(text, "#spiritshard#", "|TInterface\\Icons\\INV_Jewelry_FrostwolfTrinket_04:0|t")
|
|
text = gsub(text, "#wintergrasp#", "|TInterface\\Icons\\INV_Misc_Platnumdisks:0|t")
|
|
text = gsub(text, "#tokenofprestige#", "|TInterface\\Icons\\Spell_Holy_MindSooth:0|t")
|
|
text = gsub(text, "#marks#", "|TInterface\\Icons\\Mail_GMIcon:0|t")
|
|
text = gsub(text, "#bazaar#", "|TInterface\\Icons\\Spell_Shadow_Teleport:0|t")
|
|
text = gsub(text, "#wintergraspmark#", "|TInterface\\Icons\\INV_Jewelry_Ring_66:0|t")
|
|
text = gsub(text, "#venturecoin#", "|TInterface\\Icons\\INV_Misc_Coin_16:0|t")
|
|
text = gsub(text, "#heroic#", "|TInterface\\Icons\\Spell_Holy_ChampionsBond:0|t")
|
|
text = gsub(text, "#eofvalor#", "|TInterface\\Icons\\Spell_Holy_ProclaimChampion_02:0|t")
|
|
text = gsub(text, "#eofheroism#", "|TInterface\\Icons\\Spell_Holy_ProclaimChampion:0|t")
|
|
text = gsub(text, "#eofconquest#", "|TInterface\\Icons\\Spell_Holy_ChampionsGrace:0|t")
|
|
text = gsub(text, "#eoftriumph#", "|TInterface\\Icons\\spell_holy_summonchampion:0|t")
|
|
text = gsub(text, "#eoffrost#", "|TInterface\\Icons\\inv_misc_frostemblem_01:0|t")
|
|
text = gsub(text, "#trophyofthecrusade#", "|TInterface\\Icons\\INV_Misc_Trophy_Argent:0|t")
|
|
text = gsub(text, "#darkmoon#", "|TInterface\\Icons\\INV_Misc_Ticket_Darkmoon_01:0|t")
|
|
text = gsub(text, "#noblegarden#", "|TInterface\\Icons\\Achievement_Noblegarden_Chocolate_Egg:0|t")
|
|
text = gsub(text, "#brewfest#", "|TInterface\\Icons\\INV_Misc_Coin_01:0|t")
|
|
text = gsub(text, "#ccombat#", "|TInterface\\Icons\\INV_Jewelry_Talisman_06:0|t")
|
|
text = gsub(text, "#champseal#", "|TInterface\\Icons\\Ability_Paladin_ArtofWar:0|t")
|
|
text = gsub(text, "#champwrit#", "|TInterface\\Icons\\INV_Scroll_11:0|t")
|
|
text = gsub(text, "#ctactical#", "|TInterface\\Icons\\INV_Jewelry_Amulet_02:0|t")
|
|
text = gsub(text, "#clogistics#", "|TInterface\\Icons\\INV_Jewelry_Necklace_16:0|t")
|
|
text = gsub(text, "#cremulos#", "|TInterface\\Icons\\INV_Jewelry_Necklace_14:0|t")
|
|
text = gsub(text, "#ccenarius#", "|TInterface\\Icons\\INV_Jewelry_Necklace_12:0|t")
|
|
text = gsub(text, "#zandalar#", "|TInterface\\Icons\\INV_Misc_Coin_08:0|t")
|
|
text = gsub(text, "#glowcap#", "|TInterface\\Icons\\INV_Mushroom_02:0|t")
|
|
text = gsub(text, "#ogrilashard#", "|TInterface\\Icons\\INV_Misc_Apexis_Shard:0|t")
|
|
text = gsub(text, "#ogrilacrystal#", "|TInterface\\Icons\\INV_Misc_Apexis_Crystal:0|t")
|
|
text = gsub(text, "#winterfinclam#", "|TInterface\\Icons\\INV_Misc_Shell_03:0|t")
|
|
text = gsub(text, "#horde#", "|TInterface\\AddOns\\AtlasLoot\\Images\\Horde:14:14:0:-1|t")
|
|
text = gsub(text, "#alliance#", "|TInterface\\AddOns\\AtlasLoot\\Images\\Alliance:16:16:0:-2|t")
|
|
text = gsub(text, "#fireflower#", "|TInterface\\Icons\\INV_SummerFest_FireFlower:0|t")
|
|
text = gsub(text, "#t10mark#", "|TInterface\\Icons\\ability_paladin_shieldofthetemplar:0|t")
|
|
text = gsub(text, "#valentineday#", "|TInterface\\Icons\\inv_valentinescard01:0|t")
|
|
text = gsub(text, "#valentineday2#", "|TInterface\\Icons\\inv_jewelry_necklace_43:0|t")
|
|
|
|
local englishFaction, _ = UnitFactionGroup("player")
|
|
if englishFaction == "Horde" then
|
|
text = gsub(text, "#faction#", "|TInterface\\AddOns\\AtlasLoot\\Images\\Horde:14:14:0:-1|t")
|
|
text = gsub(text, "#factionoutlandPvP#", "|TInterface\\AddOns\\AtlasLoot\\Images\\Horde:0|t")
|
|
text = gsub(text, "#markthrallmarhhold#", "|TInterface\\Icons\\INV_Misc_Token_Thrallmar:0|t")
|
|
else
|
|
text = gsub(text, "#faction#", "|TInterface\\AddOns\\AtlasLoot\\Images\\Alliance:16:16:0:-2|t")
|
|
text = gsub(text, "#factionoutlandPvP#", "|TInterface\\AddOns\\AtlasLoot\\Images\\Alliance:0|t")
|
|
text = gsub(text, "#markthrallmarhhold#", "|TInterface\\Icons\\INV_Misc_Token_HonorHold:0|t")
|
|
end
|
|
|
|
return text
|
|
end
|