mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
features: - tool - Maps: * finally supports multi-layered zones * should also support icons if needed (questgiver, ect) - tool - Item Comparison: * fully functional (yes, that includes heirlooms and items with random props) * may throw a minor js-error if using arrow-keys/esc/ret in input-fields in the LightboxPopus (but wowhead does also) * icons for prismatic sockets are not displayed if no other sockets are present (calculation is correct though) * modelviewer will still 'call home' - tool - Talent Calculator: * got rid of a VERY dirty hack for the icons (they are now supplied as texture, not laoded one at a time) * glyphs should also be a bit more informative * talent data is pulled from static file, that should a) speed up load and b) prevent lockups if it cant be generated on the fly * you can now set the level for your build, which affects available talent points, glyphs and glyph-slots - tool - Pet Calculator: * initial implementation; basically the same as the Talent Calculator - general concept changed: * dropped ajax.php; json is now supplied by the appropriate page if &json is appended to the url * search.php and opensearch.php are being merged; again, output will depend on the appended parameter (&openserach, &json) * data included via data.php will be static and assembled only on installation and when the database changes (should speed up load) * locale strings are now in a single file instead of being split up to the template * still getting rid of criss-cross-includes, global variables and string-defines
3226 lines
140 KiB
JavaScript
3226 lines
140 KiB
JavaScript
var mn_classes = [
|
||
[6,"Death Knight",,,{className:"c6",tinyIcon:"class_deathknight"}],
|
||
[11,"Druid",,,{className:"c11",tinyIcon:"class_druid"}],
|
||
[3,"Hunter",,,{className:"c3",tinyIcon:"class_hunter"}],
|
||
[8,"Mage",,,{className:"c8",tinyIcon:"class_mage"}],
|
||
[2,"Paladin",,,{className:"c2",tinyIcon:"class_paladin"}],
|
||
[5,"Priest",,,{className:"c5",tinyIcon:"class_priest"}],
|
||
[4,"Rogue",,,{className:"c4",tinyIcon:"class_rogue"}],
|
||
[7,"Shaman",,,{className:"c7",tinyIcon:"class_shaman"}],
|
||
[9,"Warlock",,,{className:"c9",tinyIcon:"class_warlock"}],
|
||
[1,"Warrior",,,{className:"c1",tinyIcon:"class_warrior"}]
|
||
];
|
||
var mn_races = [
|
||
[,"Alliance",,,{tinyIcon:"alliance-icon"}],
|
||
[11,"Draenei",,,{tinyIcon:"race_draenei_female"}],
|
||
[3,"Dwarf",,,{tinyIcon:"race_dwarf_female"}],
|
||
[7,"Gnome",,,{tinyIcon:"race_gnome_female"}],
|
||
[1,"Human",,,{tinyIcon:"race_human_female"}],
|
||
[4,"Night Elf",,,{tinyIcon:"race_nightelf_female"}],
|
||
[,"Horde",,,{tinyIcon:"horde-icon"}],
|
||
[10,"Blood Elf",,,{tinyIcon:"race_bloodelf_female"}],
|
||
[2,"Orc",,,{tinyIcon:"race_orc_female"}],
|
||
[6,"Tauren",,,{tinyIcon:"race_tauren_female"}],
|
||
[8,"Troll",,,{tinyIcon:"race_troll_female"}],
|
||
[5,"Undead",,,{tinyIcon:"race_scourge_female"}]
|
||
];
|
||
var mn_items = [
|
||
[2,"Weapons",,[
|
||
[,"One-Handed",'?items=2&filter=ty=15:13:0:4:7'],
|
||
[15,"Daggers"],
|
||
[13,"Fist Weapons"],
|
||
[0,"One-Handed Axes"],
|
||
[4,"One-Handed Maces"],
|
||
[7,"One-Handed Swords"],
|
||
[,"Two-Handed",'?items=2&filter=ty=6:10:1:5:8'],
|
||
[6,"Polearms"],
|
||
[10,"Staves"],
|
||
[1,"Two-Handed Axes"],
|
||
[5,"Two-Handed Maces"],
|
||
[8,"Two-Handed Swords"],
|
||
[,"Ranged",'?items=2&filter=ty=2:18:3:16:19'],
|
||
[2,"Bows"],
|
||
[18,"Crossbows"],
|
||
[3,"Guns"],
|
||
[16,"Thrown"],
|
||
[19,"Wands"],
|
||
[,"Other",'?items=2&filter=ty=20:14'],
|
||
[20,"Fishing Poles"],
|
||
[14,"Miscellaneous"]
|
||
]],
|
||
[4,"Armor",,[
|
||
[,"By Type",'?items=4&filter=ty=1:2:3:4'],
|
||
[1,"Cloth",,[
|
||
[5,"Chest","?items=4.1&filter=sl=5"],
|
||
[8,"Feet","?items=4.1&filter=sl=8"],
|
||
[10,"Hands","?items=4.1&filter=sl=10"],
|
||
[1,"Head","?items=4.1&filter=sl=1"],
|
||
[7,"Legs","?items=4.1&filter=sl=7"],
|
||
[3,"Shoulder","?items=4.1&filter=sl=3"],
|
||
[6,"Waist","?items=4.1&filter=sl=6"],
|
||
[9,"Wrist","?items=4.1&filter=sl=9"]
|
||
]],
|
||
[2,"Leather",,[
|
||
[5,"Chest","?items=4.2&filter=sl=5"],
|
||
[8,"Feet","?items=4.2&filter=sl=8"],
|
||
[10,"Hands","?items=4.2&filter=sl=10"],
|
||
[1,"Head","?items=4.2&filter=sl=1"],
|
||
[7,"Legs","?items=4.2&filter=sl=7"],
|
||
[3,"Shoulder","?items=4.2&filter=sl=3"],
|
||
[6,"Waist","?items=4.2&filter=sl=6"],
|
||
[9,"Wrist","?items=4.2&filter=sl=9"]
|
||
]],
|
||
[3,"Mail",,[
|
||
[5,"Chest","?items=4.3&filter=sl=5"],
|
||
[8,"Feet","?items=4.3&filter=sl=8"],
|
||
[10,"Hands","?items=4.3&filter=sl=10"],
|
||
[1,"Head","?items=4.3&filter=sl=1"],
|
||
[7,"Legs","?items=4.3&filter=sl=7"],
|
||
[3,"Shoulder","?items=4.3&filter=sl=3"],
|
||
[6,"Waist","?items=4.3&filter=sl=6"],
|
||
[9,"Wrist","?items=4.3&filter=sl=9"]
|
||
]],
|
||
[4,"Plate",,[
|
||
[5,"Chest","?items=4.4&filter=sl=5"],
|
||
[8,"Feet","?items=4.4&filter=sl=8"],
|
||
[10,"Hands","?items=4.4&filter=sl=10"],
|
||
[1,"Head","?items=4.4&filter=sl=1"],
|
||
[7,"Legs","?items=4.4&filter=sl=7"],
|
||
[3,"Shoulder","?items=4.4&filter=sl=3"],
|
||
[6,"Waist","?items=4.4&filter=sl=6"],
|
||
[9,"Wrist","?items=4.4&filter=sl=9"]
|
||
]],
|
||
[,"Other",'?items=4&filter=ty=-6:-5:-7:6:-8:0'],
|
||
[-6,"Cloaks"],
|
||
[-5,"Off-hand Frills"],
|
||
[6,"Shields"],
|
||
[-8,"Shirts"],
|
||
[-7,"Tabards"],
|
||
[0,"Miscellaneous"],
|
||
[,"Jewelry",'?items=4&filter=ty=-3:-2:-4'],
|
||
[-3,"Amulets"],
|
||
[-2,"Rings"],
|
||
[-4,"Trinkets"],
|
||
[,"Relics",'?items=4&filter=ty=7:8:9:10'],
|
||
[8,"Idols"],
|
||
[7,"Librams"],
|
||
[9,"Totems"],
|
||
[10,"Sigils"]
|
||
]],
|
||
[1,"Containers",,[
|
||
[0,"Bags"],
|
||
[3,"Enchanting Bags"],
|
||
[4,"Engineering Bags"],
|
||
[5,"Gem Bags"],
|
||
[2,"Herb Bags"],
|
||
[8,"Inscription Bags"],
|
||
[7,"Leatherworking Bags"],
|
||
[6,"Mining Bags"],
|
||
[1,"Soul Bags"]
|
||
]],
|
||
[0,"Consumables",,[
|
||
[7,"Bandages"],
|
||
[0,"Consumables"],
|
||
[2,"Elixirs",,[[1,"Battle"],[2,"Guardian"]]],
|
||
[3,"Flasks"],
|
||
[5,"Food & Drinks"],
|
||
[6,"Item Enhancements (Permanent)"],
|
||
[-3,"Item Enhancements (Temporary)"],
|
||
[1,"Potions"],
|
||
[4,"Scrolls"],
|
||
[8,"Other"]
|
||
]],
|
||
[16,"Glyphs",,[
|
||
[6,"Death Knight",,[[1,"Major"],[2,"Minor"]],{className:"c6",tinyIcon:"class_deathknight"}],
|
||
[11,"Druid",,[[1,"Major"],[2,"Minor"]],{className:"c11",tinyIcon:"class_druid"}],
|
||
[3,"Hunter",,[[1,"Major"],[2,"Minor"]],{className:"c3",tinyIcon:"class_hunter"}],
|
||
[8,"Mage",,[[1,"Major"],[2,"Minor"]],{className:"c8",tinyIcon:"class_mage"}],
|
||
[2,"Paladin",,[[1,"Major"],[2,"Minor"]],{className:"c2",tinyIcon:"class_paladin"}],
|
||
[5,"Priest",,[[1,"Major"],[2,"Minor"]],{className:"c5",tinyIcon:"class_priest"}],
|
||
[4,"Rogue",,[[1,"Major"],[2,"Minor"]],{className:"c4",tinyIcon:"class_rogue"}],
|
||
[7,"Shaman",,[[1,"Major"],[2,"Minor"]],{className:"c7",tinyIcon:"class_shaman"}],
|
||
[9,"Warlock",,[[1,"Major"],[2,"Minor"]],{className:"c9",tinyIcon:"class_warlock"}],
|
||
[1,"Warrior",,[[1,"Major"],[2,"Minor"]],{className:"c1",tinyIcon:"class_warrior"}]
|
||
]],
|
||
[7,"Trade Goods",,[
|
||
[14,"Armor Enchantments"],
|
||
[5,"Cloth"],
|
||
[3,"Devices"],
|
||
[10,"Elemental"],
|
||
[12,"Enchanting"],
|
||
[2,"Explosives"],
|
||
[9,"Herbs"],
|
||
[4,"Jewelcrafting"],
|
||
[6,"Leather"],
|
||
[13,"Materials"],
|
||
[8,"Meat"],
|
||
[7,"Metal & Stone"],
|
||
[1,"Parts"],
|
||
[15,"Weapon Enchantments"],
|
||
[11,"Other"]
|
||
]],
|
||
[6,"Projectiles",,[[2,"Arrows"],[3,"Bullets"]]],
|
||
[11,"Quivers",,[[3,"Ammo Pouches"],[2,"Quivers"]]],
|
||
[9,"Recipes",,[
|
||
[0,"Books",,,{tinyIcon:"inv_misc_book_03"}],
|
||
[6,"Alchemy",,,{tinyIcon:"trade_alchemy"}],
|
||
[4,"Blacksmithing",,,{tinyIcon:"trade_blacksmithing"}],
|
||
[5,"Cooking",,,{tinyIcon:"inv_misc_food_15"}],
|
||
[8,"Enchanting",,,{tinyIcon:"trade_engraving"}],
|
||
[3,"Engineering",,,{tinyIcon:"trade_engineering"}],
|
||
[7,"First Aid",,,{tinyIcon:"spell_holy_sealofsacrifice"}],
|
||
[9,"Fishing",,,{tinyIcon:"trade_fishing"}],
|
||
[11,"Inscripción",,,{tinyIcon:'inv_inscription_tradeskill01'}],
|
||
[10,"Jewelcrafting",,,{tinyIcon:"inv_misc_gem_01"}],
|
||
[1,"Leatherworking",,,{tinyIcon:"inv_misc_armorkit_17"}],
|
||
[12,"Mining",,,{tinyIcon:'trade_mining'}],
|
||
[2,"Tailoring",,,{tinyIcon:"trade_tailoring"}]
|
||
]],
|
||
[3,"Gems",,[
|
||
[,"Colors"],
|
||
[6,"Meta",,,{className:"gem1"}],
|
||
[0,"Red",,,{className:"gem2"}],
|
||
[1,"Blue",,,{className:"gem8"}],
|
||
[2,"Yellow",,,{className:"gem4"}],
|
||
[3,"Purple",,,{className:"gem10"}],
|
||
[4,"Green",,,{className:"gem12"}],
|
||
[5,"Orange",,,{className:"gem6"}],
|
||
[8,"Prismatic",,,{className:"gem14"}],
|
||
[,"Other"],
|
||
[7,"Simple"]
|
||
]],
|
||
[15,"Miscellaneous",,[
|
||
[-2,"Armor Tokens"],
|
||
[3,"Holiday"],
|
||
[0,"Junk"],
|
||
[1,"Reagents"],
|
||
[5,"Mounts"],
|
||
[-7,"Flying Mounts"],
|
||
[2,"Small Pets"],
|
||
[4,"Other"]
|
||
]],
|
||
[10,"Currency"],
|
||
[12,"Quest"],
|
||
[13,"Keys"]
|
||
];
|
||
var mn_itemSets = [
|
||
[,"By Class"],
|
||
[6,"Death Knight",,,{className:"c6",tinyIcon:"class_deathknight"}],
|
||
[11,"Druid",,,{className:"c11",tinyIcon:"class_druid"}],
|
||
[3,"Hunter",,,{className:"c3",tinyIcon:"class_hunter"}],
|
||
[8,"Mage",,,{className:"c8",tinyIcon:"class_mage"}],
|
||
[2,"Paladin",,,{className:"c2",tinyIcon:"class_paladin"}],
|
||
[5,"Priest",,,{className:"c5",tinyIcon:"class_priest"}],
|
||
[4,"Rogue",,,{className:"c4",tinyIcon:"class_rogue"}],
|
||
[7,"Shaman",,,{className:"c7",tinyIcon:"class_shaman"}],
|
||
[9,"Warlock",,,{className:"c9",tinyIcon:"class_warlock"}],
|
||
[1,"Warrior",,,{className:"c1",tinyIcon:"class_warrior"}]
|
||
];
|
||
var mn_npcs = [
|
||
[1,"Beasts",,[
|
||
[24,"Bat","?npcs=1&filter=fa=24"],
|
||
[4,"Bear","?npcs=1&filter=fa=4"],
|
||
[26,"Bird of Prey","?npcs=1&filter=fa=26"],
|
||
[5,"Boar","?npcs=1&filter=fa=5"],
|
||
[7,"Carrion Bird","?npcs=1&filter=fa=7"],
|
||
[2,"Cat","?npcs=1&filter=fa=2"],
|
||
[38,"Chimaera","?npcs=1&filter=fa=38"],
|
||
[45,"Core Hound","?npcs=1&filter=fa=45"],
|
||
[8,"Crab","?npcs=1&filter=fa=8"],
|
||
[6,"Crocolisk","?npcs=1&filter=fa=6"],
|
||
[39,"Devilsaur","?npcs=1&filter=fa=39"],
|
||
[30,"Dragonhawk","?npcs=1&filter=fa=30"],
|
||
[9,"Gorilla","?npcs=1&filter=fa=9"],
|
||
[25,"Hyena","?npcs=1&filter=fa=25"],
|
||
[37,"Moth","?npcs=1&filter=fa=37"],
|
||
[34,"Nether Ray","?npcs=1&filter=fa=34"],
|
||
[11,"Raptor","?npcs=1&filter=fa=11"],
|
||
[31,"Ravager","?npcs=1&filter=fa=31"],
|
||
[43,"Rhino","?npcs=1&filter=fa=43"],
|
||
[20,"Scorpid","?npcs=1&filter=fa=20"],
|
||
[35,"Serpent","?npcs=1&filter=fa=35"],
|
||
[41,"Silithid","?npcs=1&filter=fa=41"],
|
||
[3,"Spider","?npcs=1&filter=fa=3"],
|
||
[46,"Spirit Beast","?npcs=1&filter=fa=46"],
|
||
[33,"Sporebat","?npcs=1&filter=fa=33"],
|
||
[12,"Tallstrider","?npcs=1&filter=fa=12"],
|
||
[21,"Turtle","?npcs=1&filter=fa=21"],
|
||
[32,"Warp Stalker","?npcs=1&filter=fa=32"],
|
||
[44,"Wasp","?npcs=1&filter=fa=44"],
|
||
[27,"Wind Serpent","?npcs=1&filter=fa=27"],
|
||
[1,"Wolf","?npcs=1&filter=fa=1"],
|
||
[42,"Worm","?npcs=1&filter=fa=42"]
|
||
]],
|
||
[8,"Critters"],
|
||
[3,"Demons"],
|
||
[2,"Dragonkin"],
|
||
[4,"Elementals"],
|
||
[5,"Giants"],
|
||
[7,"Humanoids"],
|
||
[9,"Mechanicals"],
|
||
[6,"Undead"],
|
||
[10,"Uncategorized"]
|
||
];
|
||
var mn_objects = [
|
||
[9,"Books"],
|
||
[3,"Containers"],
|
||
[-5,"Footlockers"],
|
||
[-3,"Herbs"],
|
||
[-4,"Mineral Veins"],
|
||
[-2,"Quest"]
|
||
];
|
||
var mn_quests = [
|
||
[,"Continents"],
|
||
[0,"Eastern Kingdoms",,[
|
||
[36,"Alterac Mountains"],
|
||
[45,"Arathi Highlands"],
|
||
[3,"Badlands"],
|
||
[25,"Blackrock Mountain"],
|
||
[4,"Blasted Lands"],
|
||
[46,"Burning Steppes"],
|
||
[279,"Dalaran Crater"],
|
||
[41,"Deadwind Pass"],
|
||
[2257,"Deeprun Tram"],
|
||
[1,"Dun Morogh"],
|
||
[10,"Duskwood"],
|
||
[139,"Eastern Plaguelands"],
|
||
[12,"Elwynn Forest"],
|
||
[3430,"Eversong Woods"],
|
||
[3433,"Ghostlands"],
|
||
[267,"Hillsbrad Foothills"],
|
||
[1537,"Ironforge"],
|
||
[4080,"Isle of Quel'Danas"],
|
||
[38,"Loch Modan"],
|
||
[44,"Redridge Mountains"],
|
||
[51,"Searing Gorge"],
|
||
[3487,"Silvermoon City"],
|
||
[130,"Silverpine Forest"],
|
||
[1519,"Stormwind City"],
|
||
[33,"Stranglethorn Vale"],
|
||
[8,"Swamp of Sorrows"],
|
||
[47,"The Hinterlands"],
|
||
[4298,"The Scarlet Enclave"],
|
||
[85,"Tirisfal Glades"],
|
||
[1497,"Undercity"],
|
||
[28,"Western Plaguelands"],
|
||
[40,"Westfall"],
|
||
[11,"Wetlands"]
|
||
]],
|
||
[1,"Kalimdor",,[
|
||
[331,"Ashenvale"],
|
||
[16,"Azshara"],
|
||
[3524,"Azuremyst Isle"],
|
||
[3525,"Bloodmyst Isle"],
|
||
[148,"Darkshore"],
|
||
[1657,"Darnassus"],
|
||
[405,"Desolace"],
|
||
[14,"Durotar"],
|
||
[15,"Dustwallow Marsh"],
|
||
[361,"Felwood"],
|
||
[357,"Feralas"],
|
||
[493,"Moonglade"],
|
||
[215,"Mulgore"],
|
||
[1637,"Orgrimmar"],
|
||
[1377,"Silithus"],
|
||
[406,"Stonetalon Mountains"],
|
||
[440,"Tanaris"],
|
||
[141,"Teldrassil"],
|
||
[17,"The Barrens"],
|
||
[3557,"The Exodar"],
|
||
[457,"The Veiled Sea"],
|
||
[400,"Thousand Needles"],
|
||
[1638,"Thunder Bluff"],
|
||
[490,"Un'Goro Crater"],
|
||
[618,"Winterspring"]
|
||
]],
|
||
[8,"Outland",,[
|
||
[3522,"Blade's Edge Mountains"],
|
||
[3483,"Hellfire Peninsula"],
|
||
[4095,"Magisters' Terrace"],
|
||
[3518,"Nagrand"],
|
||
[3523,"Netherstorm"],
|
||
[3520,"Shadowmoon Valley"],
|
||
[3703,"Shattrath City"],
|
||
[3679,"Skettis"],
|
||
[3519,"Terokkar Forest"],
|
||
[3521,"Zangarmarsh"]
|
||
]],
|
||
[10,"Northrend",,[
|
||
[3537,"Borean Tundra"],
|
||
[2817,"Crystalsong Forest"],
|
||
[4395,"Dalaran"],
|
||
[65,"Dragonblight"],
|
||
[394,"Grizzly Hills"],
|
||
[495,"Howling Fjord"],
|
||
[4742,"Hrothgar's Landing"],
|
||
[210,"Icecrown"],
|
||
[3711,"Sholazar Basin"],
|
||
[67,"The Storm Peaks"],
|
||
[4197,"Wintergrasp"],
|
||
[66,"Zul'Drak"]
|
||
]],
|
||
[,"Othere"],
|
||
[2,"Dungeons",,[
|
||
[4494,"Ahn'kahet: The Old Kingdom"],
|
||
[3790,"Auchenai Crypts"],
|
||
[4277,"Azjol-Nerub"],
|
||
[719,"Blackfathom Deeps"],
|
||
[1584,"Blackrock Depths"],
|
||
[1583,"Blackrock Spire"],
|
||
[1941,"Caverns of Time"],
|
||
[3905,"Coilfang Reservoir"],
|
||
[2557,"Dire Maul"],
|
||
[4196,"Drak'Tharon Keep"],
|
||
[721,"Gnomeregan"],
|
||
[4416,"Gundrak"],
|
||
[4272,"Halls of Lightning"],
|
||
[4820,"Halls of Reflection"],
|
||
[4264,"Halls of Stone"],
|
||
[3562,"Hellfire Ramparts"],
|
||
[3535,"Hellfire Citadel"],
|
||
[4131,"Magisters' Terrace"],
|
||
[3792,"Mana-Tombs"],
|
||
[2100,"Maraudon"],
|
||
[2367,"Old Hillsbrad Foothills"],
|
||
[4813,"Pit of Saron"],
|
||
[2437,"Ragefire Chasm"],
|
||
[722,"Razorfen Downs"],
|
||
[491,"Razorfen Kraul"],
|
||
[796,"Scarlet Monastery"],
|
||
[2057,"Scholomance"],
|
||
[3791,"Sethekk Halls"],
|
||
[3789,"Shadow Labyrinth"],
|
||
[209,"Shadowfang Keep"],
|
||
[2017,"Stratholme"],
|
||
[1477,"Sunken Temple"],
|
||
[3845,"Tempest Keep"],
|
||
[3848,"The Arcatraz"],
|
||
[2366,"The Black Morass"],
|
||
[3713,"The Blood Furnace"],
|
||
[3847,"The Botanica"],
|
||
[4100,"The Culling of Stratholme"],
|
||
[1581,"The Deadmines"],
|
||
[4809,"The Forge of Souls"],
|
||
[3849,"The Mechanar"],
|
||
[4120,"The Nexus"],
|
||
[4228,"The Oculus"],
|
||
[3714,"The Shattered Halls"],
|
||
[3717,"The Slave Pens"],
|
||
[3715,"The Steamvault"],
|
||
[717,"The Stockade"],
|
||
[3716,"The Underbog"],
|
||
[4415,"The Violet Hold"],
|
||
[4723,"Trial of the Champion"],
|
||
[1337,"Uldaman"],
|
||
[206,"Utgarde Keep"],
|
||
[1196,"Utgarde Pinnacle"],
|
||
[718,"Wailing Caverns"],
|
||
[1176,"Zul'Farrak"]
|
||
]],
|
||
[3,"Raids",,[
|
||
[3959,"Black Temple"],
|
||
[2677,"Blackwing Lair"],
|
||
[3923,"Gruul's Lair"],
|
||
[3606,"Hyjal Summit"],
|
||
[4812,"Icecrown Citadel"],
|
||
[3457,"Karazhan"],
|
||
[3836,"Magtheridon's Lair"],
|
||
[2717,"Molten Core"],
|
||
[3456,"Naxxramas"],
|
||
[2159,"Onyxia's Lair"],
|
||
[3429,"Ruins of Ahn'Qiraj"],
|
||
[3607,"Serpentshrine Cavern"],
|
||
[4075,"Sunwell Plateau"],
|
||
[3428,"Temple of Ahn'Qiraj"],
|
||
[3842,"The Eye"],
|
||
[4500,"The Eye of Eternity"],
|
||
[4493,"The Obsidian Sanctum"],
|
||
[4722,"Trial of the Crusader"],
|
||
[4273,"Ulduar"],
|
||
[4603,"Vault of Archavon"],
|
||
[3805,"Zul'Aman"],
|
||
[1977,"Zul'Gurub"]
|
||
]],
|
||
[4,"Classes",,[
|
||
[-372,"Death Knight"],
|
||
[-263,"Druid"],
|
||
[-261,"Hunter"],
|
||
[-161,"Mage"],
|
||
[-141,"Paladin"],
|
||
[-262,"Priest"],
|
||
[-162,"Rogue"],
|
||
[-82,"Shaman"],
|
||
[-61,"Warlock"],
|
||
[-81,"Warrior"]
|
||
]],
|
||
[5,"Professions",,[
|
||
[-181,"Alchemy"],
|
||
[-121,"Blacksmithing"],
|
||
[-304,"Cooking"],
|
||
[-201,"Engineering"],
|
||
[-324,"First Aid"],
|
||
[-101,"Fishing"],
|
||
[-24,"Herbalism"],
|
||
[-371,"Inscription"],
|
||
[-373,"Jewelcrafting"],
|
||
[-182,"Leatherworking"],
|
||
[-264,"Tailoring"]
|
||
]],
|
||
[6,"Battlegrounds",,[
|
||
[-25,"All"],
|
||
[2597,"Alterac Valley"],
|
||
[3358,"Arathi Basin"],
|
||
[3820,"Eye of the Storm"],
|
||
[4710,"Isle of Conquest"],
|
||
[4384,"Strand of the Ancients"],
|
||
[3277,"Warsong Gulch"]
|
||
]],
|
||
[9,"Seasonal",,[
|
||
[-370,"Brewfest"],
|
||
[-1002,"Children's Week"],
|
||
[-364,"Darkmoon Faire"],
|
||
[-1007,"Day of the Dead"],
|
||
[-1003,"Hallow's End"],
|
||
[-1005,"Harvest Festival"],
|
||
[-1004,"Love is in the Air"],
|
||
[-366,"Lunar Festival"],
|
||
[-369,"Midsummer"],
|
||
[-1006,"New Year's Eve"],
|
||
[-1008,"Pilgrim's Bounty"],
|
||
[-374,"Noblegarden"],
|
||
[-1001,"Winter Veil"]
|
||
]],
|
||
[7,"Miscellaneous",,[
|
||
[-365,"Ahn'Qiraj War Effort"],
|
||
[-241,"Argent Tournament"],
|
||
[-1010,"Dungeonfinder"],
|
||
[-1,"Epic"],
|
||
[-344,"Legendary"],
|
||
[-367,"Reputation"],
|
||
[-368,"Scourge Invasion"]
|
||
]],
|
||
[-2,"Uncategorized"]
|
||
];
|
||
var mn_titles = [
|
||
[0,"General"],
|
||
[4,"Quests"],
|
||
[1,"Player vs. Player"],
|
||
[3,"Dungeons & Raids"],
|
||
[5,"Professions"],
|
||
[2,"Reputation"],
|
||
[6,"World Events"]
|
||
];
|
||
var mn_skills = [
|
||
[,"Professions","?skills=11"],
|
||
[171,"Alchemy","?skill=171",,{tinyIcon:"trade_alchemy"}],
|
||
[164,"Blacksmithing","?skill=164",,{tinyIcon:"trade_blacksmithing"}],
|
||
[333,"Enchanting","?skill=333",,{tinyIcon:"trade_engraving"}],
|
||
[202,"Engineering","?skill=202",,{tinyIcon:"trade_engineering"}],
|
||
[182,"Herbalism","?skill=182",,{tinyIcon:"spell_nature_naturetouchgrow"}],
|
||
[773,"Inscription","?skill=773",,{tinyIcon:"inv_inscription_tradeskill01"}],
|
||
[755,"Jewelcrafting","?skill=755",,{tinyIcon:"inv_misc_gem_01"}],
|
||
[165,"Leatherworking","?skill=165",,{tinyIcon:"inv_misc_armorkit_17"}],
|
||
[186,"Mining","?skill=186",,{tinyIcon:"trade_mining"}],
|
||
[393,"Skinning","?skill=393",,{tinyIcon:"inv_misc_pelt_wolf_01"}],
|
||
[197,"Tailoring","?skill=197",,{tinyIcon:"trade_tailoring"}],
|
||
[,"Secondary Skills","?skills=9"],
|
||
[185,"Cooking","?skill=185",,{tinyIcon:"inv_misc_food_15"}],
|
||
[129,"First Aid","?skill=129",,{tinyIcon:"spell_holy_sealofsacrifice"}],
|
||
[356,"Fishing","?skill=356",,{tinyIcon:"trade_fishing"}],
|
||
[762,"Riding","?skill=762",,{tinyIcon:"spell_nature_swiftness"}],
|
||
[,"Other"],
|
||
[8,"Armor Proficiencies","?skills=8"],
|
||
[10,"Languages","?skills=10"],
|
||
[6,"Weapon Skills","?skills=6"]
|
||
];
|
||
var mn_spells = [
|
||
[,"Character"],
|
||
[7,"Class Skills",,[
|
||
[6,"Death Knight",,[[770,"Blood",,,{tinyIcon:"Spell_Deathknight_BloodPresence"}],[771,"Frost",,,{tinyIcon:"Spell_Deathknight_FrostPresence"}],[772,"Unholy",,,{tinyIcon:"Spell_Deathknight_UnholyPresence"}],[776,"Runeforging"]],{className:"c6",tinyIcon:"class_deathknight"}],
|
||
[11,"Druid",,[[574,"Balance",,,{tinyIcon:"Spell_Nature_StarFall"}],[134,"Feral",,,{tinyIcon:"Ability_Racial_BearForm"}],[573,"Restoration",,,{tinyIcon:"Spell_Nature_HealingTouch"}]],{className:"c11",tinyIcon:"class_druid"}],
|
||
[3,"Hunter",,[[50,"Beast Mastery",,,{tinyIcon:"Ability_Hunter_BeastTaming"}],[163,"Marksmanship",,,{tinyIcon:"Ability_Marksmanship"}],[51,"Survival",,,{tinyIcon:"Ability_Hunter_SwiftStrike"}]],{className:"c3",tinyIcon:"class_hunter"}],
|
||
[8,"Mage",,[[237,"Arcane",,,{tinyIcon:"Spell_Holy_MagicalSentry"}],[8,"Fire",,,{tinyIcon:"Spell_Fire_FireBolt02"}],[6,"Frost",,,{tinyIcon:"Spell_Frost_FrostBolt02"}]],{className:"c8",tinyIcon:"class_mage"}],
|
||
[2,"Paladin",,[[594,"Holy",,,{tinyIcon:"Spell_Holy_HolyBolt"}],[267,"Protection",,,{tinyIcon:"Spell_Holy_DevotionAura"}],[184,"Retribution",,,{tinyIcon:"Spell_Holy_AuraOfLight"}]],{className:"c2",tinyIcon:"class_paladin"}],
|
||
[5,"Priest",,[[613,"Discipline",,,{tinyIcon:"Spell_Holy_WordFortitude"}],[56,"Holy",,,{tinyIcon:"Spell_Holy_GuardianSpirit"}],[78,"Shadow Magic",,,{tinyIcon:"Spell_Shadow_ShadowWordPain"}]],{className:"c5",tinyIcon:"class_priest"}],
|
||
[4,"Rogue",,[[253,"Assassination",,,{tinyIcon:"Ability_Rogue_Eviscerate"}],[38,"Combat",,,{tinyIcon:"Ability_BackStab"}],[39,"Subtlety",,,{tinyIcon:"Ability_Stealth"}]],{className:"c4",tinyIcon:"class_rogue"}],
|
||
[7,"Shaman",,[[375,"Elemental Combat",,,{tinyIcon:"Spell_Nature_Lightning"}],[373,"Enhancement",,,{tinyIcon:"Spell_Nature_LightningShield"}],[374,"Restoration",,,{tinyIcon:"Spell_Nature_MagicImmunity"}]],{className:"c7",tinyIcon:"class_shaman"}],
|
||
[9,"Warlock",,[[355,"Affliction",,,{tinyIcon:"Spell_Shadow_DeathCoil"}],[354,"Demonology",,,{tinyIcon:"Spell_Shadow_Metamorphosis"}],[593,"Destruction",,,{tinyIcon:"Spell_Shadow_RainOfFire"}]],{className:"c9",tinyIcon:"class_warlock"}],
|
||
[1,"Warrior",,[[26,"Arms",,,{tinyIcon:"Ability_Rogue_Eviscerate"}],[256,"Fury",,,{tinyIcon:"Ability_Warrior_InnerRage"}],[257,"Protection",,,{tinyIcon:"INV_Shield_06"}]],{className:"c1",tinyIcon:"class_warrior"}]
|
||
]],
|
||
[-11,"Proficiencies",, [
|
||
[8,"Armor"],
|
||
[6,"Weapon"],
|
||
[10,"Languages"]
|
||
]],
|
||
[-4,"Racial Traits"],
|
||
[-2,"Talents",,[
|
||
[6,"Death Knight",,[[770,"Blood",,,{tinyIcon:"Spell_Deathknight_BloodPresence"}],[771,"Frost",,,{tinyIcon:"Spell_Deathknight_FrostPresence"}],[772,"Unholy",,,{tinyIcon:"Spell_Deathknight_UnholyPresence"}]],{className:"c6",tinyIcon:"class_deathknight"}],
|
||
[11,"Druid",,[[574,"Balance",,,{tinyIcon:"Spell_Nature_StarFall"}],[134,"Feral",,,{tinyIcon:"Ability_Racial_BearForm"}],[573,"Restoration",,,{tinyIcon:"Spell_Nature_HealingTouch"}]],{className:"c11",tinyIcon:"class_druid"}],
|
||
[3,"Hunter",,[[50,"Beast Mastery",,,{tinyIcon:"Ability_Hunter_BeastTaming"}],[163,"Marksmanship",,,{tinyIcon:"Ability_Marksmanship"}],[51,"Survival",,,{tinyIcon:"Ability_Hunter_SwiftStrike"}]],{className:"c3",tinyIcon:"class_hunter"}],
|
||
[8,"Mage",,[[237,"Arcane",,,{tinyIcon:"Spell_Holy_MagicalSentry"}],[8,"Fire",,,{tinyIcon:"Spell_Fire_FireBolt02"}],[6,"Frost",,,{tinyIcon:"Spell_Frost_FrostBolt02"}]],{className:"c8",tinyIcon:"class_mage"}],
|
||
[2,"Paladin",,[[594,"Holy",,,{tinyIcon:"Spell_Holy_HolyBolt"}],[267,"Protection",,,{tinyIcon:"Spell_Holy_DevotionAura"}],[184,"Retribution",,,{tinyIcon:"Spell_Holy_AuraOfLight"}]],{className:"c2",tinyIcon:"class_paladin"}],
|
||
[5,"Priest",,[[613,"Discipline",,,{tinyIcon:"Spell_Holy_WordFortitude"}],[56,"Holy",,,{tinyIcon:"Spell_Holy_GuardianSpirit"}],[78,"Shadow Magic",,,{tinyIcon:"Spell_Shadow_ShadowWordPain"}]],{className:"c5",tinyIcon:"class_priest"}],
|
||
[4,"Rogue",,[[253,"Assassination",,,{tinyIcon:"Ability_Rogue_Eviscerate"}],[38,"Combat",,,{tinyIcon:"Ability_BackStab"}],[39,"Subtlety",,,{tinyIcon:"Ability_Stealth"}]],{className:"c4",tinyIcon:"class_rogue"}],
|
||
[7,"Shaman",,[[375,"Elemental Combat",,,{tinyIcon:"Spell_Nature_Lightning"}],[373,"Enhancement",,,{tinyIcon:"Spell_Nature_LightningShield"}],[374,"Restoration",,,{tinyIcon:"Spell_Nature_MagicImmunity"}]],{className:"c7",tinyIcon:"class_shaman"}],
|
||
[9,"Warlock",,[[355,"Affliction",,,{tinyIcon:"Spell_Shadow_DeathCoil"}],[354,"Demonology",,,{tinyIcon:"Spell_Shadow_Metamorphosis"}],[593,"Destruction",,,{tinyIcon:"Spell_Shadow_RainOfFire"}]],{className:"c9",tinyIcon:"class_warlock"}],
|
||
[1,"Warrior",,[[26,"Arms",,,{tinyIcon:"Ability_Rogue_Eviscerate"}],[256,"Fury",,,{tinyIcon:"Ability_Warrior_InnerRage"}],[257,"Protection",,,{tinyIcon:"INV_Shield_06"}]],{className:"c1",tinyIcon:"class_warrior"}]
|
||
]],
|
||
[,"Pets"],
|
||
[-6,"Companions"],
|
||
[-5,"Mounts"],
|
||
[-3,"Pet Skills",,[
|
||
[,"Death Knight"],
|
||
[782,"Ghoul",,,{tinyIcon:"Spell_Shadow_AnimateDead"}],
|
||
[,"Hunter"],
|
||
[270,"Generic",,,{tinyIcon:"Ability_GhoulFrenzy"}],
|
||
[653,"Bat",,,{tinyIcon:"Ability_Hunter_Pet_Bat"}],
|
||
[210,"Bear",,,{tinyIcon:"Ability_Hunter_Pet_Bear"}],
|
||
[655,"Bird of Prey",,,{tinyIcon:"Ability_Hunter_Pet_Owl"}],
|
||
[211,"Boar",,,{tinyIcon:"Ability_Hunter_Pet_Boar"}],
|
||
[213,"Carrion Bird",,,{tinyIcon:"Ability_Hunter_Pet_Vulture"}],
|
||
[209,"Cat",,,{tinyIcon:"Ability_Hunter_Pet_Cat"}],
|
||
[780,"Chimaera",,,{tinyIcon:"Ability_Hunter_Pet_Chimera"}],
|
||
[787,"Core Hound",,,{tinyIcon:"Ability_Hunter_Pet_CoreHound"}],
|
||
[214,"Crab",,,{tinyIcon:"Ability_Hunter_Pet_Crab"}],
|
||
[212,"Crocolisk",,,{tinyIcon:"Ability_Hunter_Pet_Crocolisk"}],
|
||
[781,"Devilsaur",,,{tinyIcon:"Ability_Hunter_Pet_Devilsaur"}],
|
||
[763,"Dragonhawk",,,{tinyIcon:"Ability_Hunter_Pet_DragonHawk"}],
|
||
[215,"Gorilla",,,{tinyIcon:"Ability_Hunter_Pet_Gorilla"}],
|
||
[654,"Hyena",,,{tinyIcon:"Ability_Hunter_Pet_Hyena"}],
|
||
[775,"Moth",,,{tinyIcon:"Ability_Hunter_Pet_Moth"}],
|
||
[764,"Nether Ray",,,{tinyIcon:"Ability_Hunter_Pet_NetherRay"}],
|
||
[217,"Raptor",,,{tinyIcon:"Ability_Hunter_Pet_Raptor"}],
|
||
[767,"Ravager",,,{tinyIcon:"Ability_Hunter_Pet_Ravager"}],
|
||
[786,"Rhino",,,{tinyIcon:"Ability_Hunter_Pet_Rhino"}],
|
||
[236,"Scorpid",,,{tinyIcon:"Ability_Hunter_Pet_Scorpid"}],
|
||
[768,"Serpent",,,{tinyIcon:"Spell_Nature_GuardianWard"}],
|
||
[783,"Silithid",,,{tinyIcon:"Ability_Hunter_Pet_Silithid"}],
|
||
[203,"Spider",,,{tinyIcon:"Ability_Hunter_Pet_Spider"}],
|
||
[788,"Spirit Beast",,,{tinyIcon:"Ability_Druid_PrimalPrecision"}],
|
||
[765,"Sporebat",,,{tinyIcon:"Ability_Hunter_Pet_Sporebat"}],
|
||
[218,"Tallstrider",,,{tinyIcon:"Ability_Hunter_Pet_TallStrider"}],
|
||
[251,"Turtle",,,{tinyIcon:"Ability_Hunter_Pet_Turtle"}],
|
||
[766,"Warp Stalker",,,{tinyIcon:"Ability_Hunter_Pet_WarpStalker"}],
|
||
[785,"Wasp",,,{tinyIcon:"Ability_Hunter_Pet_Wasp"}],
|
||
[656,"Wind Serpent",,,{tinyIcon:"Ability_Hunter_Pet_WindSerpent"}],
|
||
[208,"Wolf",,,{tinyIcon:"Ability_Hunter_Pet_Wolf"}],
|
||
[784,"Worm",,,{tinyIcon:"Ability_Hunter_Pet_Worm"}],
|
||
[,"Warlock"],
|
||
[761,"Felguard",,,{tinyIcon:"Spell_Shadow_SummonFelguard"}],
|
||
[189,"Felhunter",,,{tinyIcon:"Spell_Shadow_SummonFelhunter"}],
|
||
[188,"Imp",,,{tinyIcon:"Spell_Shadow_SummonImp"}],
|
||
[205,"Succubus",,,{tinyIcon:"Spell_Shadow_SummonSuccubus"}],
|
||
[204,"Voidwalker",,,{tinyIcon:"Spell_Shadow_SummonVoidwalker"}]
|
||
]],
|
||
[-7,"Pet Talents",,[
|
||
[410,"Cunning",,,{tinyIcon:"Ability_Hunter_CombatExperience"}],
|
||
[411,"Ferocity",,,{tinyIcon:"Ability_Druid_Swipe"}],
|
||
[409,"Tenacity",,,{tinyIcon:"Ability_Hunter_Pet_Bear"}]
|
||
]],
|
||
[,"Professions & Skills"],
|
||
[11,"Professions",,[
|
||
[171,"Alchemy",,,{tinyIcon:"trade_alchemy"}],
|
||
[164,"Blacksmithing",,[[9788,"Armorsmithing"],[9787,"Weaponsmithing"],[17041,"Master Axesmithing"],[17040,"Master Hammersmithing"],[17039,"Master Swordsmithing"]],{tinyIcon:"trade_blacksmithing"}],
|
||
[333,"Enchanting",,,{tinyIcon:"trade_engraving"}],
|
||
[202,"Engineering",,[[20219,"Gnomish Engineering"],[20222,"Goblin Engineering"]],{tinyIcon:"trade_engineering"}],
|
||
[182,"Herbalism",,,{tinyIcon:"spell_nature_naturetouchgrow"}],
|
||
[773,"Inscription",,,{tinyIcon:"inv_inscription_tradeskill01"}],
|
||
[755,"Jewelcrafting",,,{tinyIcon:"inv_misc_gem_01"}],
|
||
[165,"Leatherworking",,[[10656,"Dragonscale Leatherworking"],[10658,"Elemental Leatherworking"],[10660,"Tribal Leatherworking"]],{tinyIcon:"inv_misc_armorkit_17"}],
|
||
[186,"Mining",,,{tinyIcon:"trade_mining"}],
|
||
[393,"Skinning",,,{tinyIcon:"inv_misc_pelt_wolf_01"}],
|
||
[197,"Tailoring",,[[26798,"Mooncloth Tailoring"],[26801,"Shadoweave Tailoring"],[26797,"Spellfire Tailoring"]],{tinyIcon:"trade_tailoring"}]
|
||
]],
|
||
[9,"Secondary Skills",,[
|
||
[185,"Cooking",,,{tinyIcon:"inv_misc_food_15"}],
|
||
[129,"First Aid",,,{tinyIcon:"spell_holy_sealofsacrifice"}],
|
||
[356,"Fishing",,,{tinyIcon:"trade_fishing"}],
|
||
[762,"Riding",,,{tinyIcon:"spell_nature_swiftness"}]
|
||
]],
|
||
[,"Other"],
|
||
[-8,"NPC Abilities"],
|
||
[-9,"GM Abilities"],
|
||
[0,"Uncategorized"]
|
||
];
|
||
var mn_zones = [
|
||
[,"Continents"],
|
||
[0,"Eastern Kingdoms"],
|
||
[1,"Kalimdor"],
|
||
[8,"Outland"],
|
||
[10,"Northrend"],
|
||
[,"Other"],
|
||
[2,"Dungeons",,[[0,"Classic"],[1,"The Burning Crusade"],[2,"Wrath of the Lich King"]]],
|
||
[3,"Raids",,[[0,"Classic"],[1,"The Burning Crusade"],[2,"Wrath of the Lich King"]]],
|
||
[6,"Battlegrounds"],
|
||
[9,"Arenas"]
|
||
];
|
||
var mn_factions = [
|
||
[1118,"Classic",,[[469,"Alliance"],[891,"Alliance Forces"],[67,"Horde"],[892,"Horde Forces"],[169,"Steamwheedle Cartel"]]],
|
||
[980,"The Burning Crusade",,[[936,"Shattrath City"]]],
|
||
[1097,"Wrath of the Lich King",,[[1037,"Alliance Vanguard"],[1052,"Horde Expedition"],[1117,"Sholazar Basin"]]],
|
||
[0,"Other"]
|
||
];
|
||
var mn_pets = [
|
||
[2,"Cunning",,,{tinyIcon:"Ability_Hunter_CombatExperience"}],
|
||
[0,"Ferocity",,,{tinyIcon:"Ability_Druid_Swipe"}],
|
||
[1,"Tenacity",,,{tinyIcon:"Ability_Hunter_Pet_Bear"}]
|
||
];
|
||
var mn_achievements = [
|
||
[92,"General"],
|
||
[96,"Quests",,[
|
||
[14861,"Classic"],
|
||
[14862,"The Burning Crusade"],
|
||
[14863,"Wrath of the Lich King"]
|
||
]],
|
||
[97,"Exploration",,[
|
||
[14777,"Eastern Kingdoms"],
|
||
[14778,"Kalimdor"],
|
||
[14779,"Outland"],
|
||
[14780,"Northrend"]
|
||
]],
|
||
[95,"Player vs. Player",,[
|
||
[165,"Arena"],
|
||
[14801,"Alterac Valley"],
|
||
[14802,"Arathi Basin"],
|
||
[14803,"Eye of the Storm"],
|
||
[14804,"Warsong Gulch"],
|
||
[14881,"Strand of the Ancients"],
|
||
[14901,"Wintergrasp"],
|
||
[15003,"Isle of Conquest"]
|
||
]],
|
||
[168,"Dungeons & Raids",,[
|
||
[14808,"Classic"],
|
||
[14805,"The Burning Crusade"],
|
||
[14806,"Lich King Dungeon"],
|
||
[14921,"Lich King Heroic"],
|
||
[14922,"Lich King 10-Player Raid"],
|
||
[14923,"Lich King 25-Player Raid"],
|
||
[14961,"Secrets of Ulduar 10-Player Raid"],
|
||
[14962,"Secrets of Ulduar 25-Player Raid"],
|
||
[15001,"Call of the Crusade 10-Player Raid"],
|
||
[15002,"Call of the Crusade 25-Player Raid"],
|
||
[15041,"Fall of the Lich King 10-Player Raid"],
|
||
[15042,"Fall of the Lich King 25-Player Raid"]
|
||
]],
|
||
[169,"Professions",,[
|
||
[170,"Cooking"],
|
||
[171,"Fishing"],
|
||
[172,"First Aid"]
|
||
]],
|
||
[201,"Reputation",,[
|
||
[14864,"Classic"],
|
||
[14865,"The Burning Crusade"],
|
||
[14866,"Wrath of the Lich King"]
|
||
]],
|
||
[155,"World Events",,[
|
||
[160,"Lunar Festival"],
|
||
[187,"Love is in the Air"],
|
||
[159,"Noblegarden"],
|
||
[163,"Children's Week"],
|
||
[161,"Midsummer"],
|
||
[162,"Brewfest"],
|
||
[158,"Hallow's End"],
|
||
[14981,"Pilgrim's Bounty"],
|
||
[156,"Winter Veil"],
|
||
[14941,"Argent Tournament"]
|
||
]],
|
||
[81,"Feats of Strength"],
|
||
[1,"Statistics",,[
|
||
[130,"Character",,[
|
||
[140,"Wealth"],
|
||
[145,"Consumables"],
|
||
[147,"Reputation"],
|
||
[191,"Gear"]
|
||
]],
|
||
[141,"Combat"],
|
||
[128,"Kills",,[
|
||
[135,"Creatures"],
|
||
[136,"Honorable Kills"],
|
||
[137,"Killing Blows"]
|
||
]],
|
||
[122,"Deaths",,[
|
||
[123,"Arenas"],
|
||
[124,"Battlegrounds"],
|
||
[125,"Dungeons"],
|
||
[126,"World"],
|
||
[127,"Resurrection"]
|
||
]],
|
||
[133,"Quests"],
|
||
[14807,"Dungeons & Raids",,[
|
||
[14821,"Classic"],
|
||
[14822,"The Burning Crusade"],
|
||
[14823,"Wrath of the Lich King"],
|
||
[14963,"Secrets of Ulduar"],
|
||
[15021,"Call of the Crusade"],
|
||
[15062,"Fall of the Lich King"]
|
||
]],
|
||
[132,"Skills",,[
|
||
[178,"Secondary Skills"],
|
||
[173,"Professions"]
|
||
]],
|
||
[134,"Travel"],
|
||
[131,"Social"],
|
||
[21,"Player vs. Player",,[
|
||
[152,"Rated Arenas"],
|
||
[153,"Battlegrounds"],
|
||
[154,"World"]
|
||
]]
|
||
]]
|
||
];
|
||
var mn_holidays = [
|
||
[1,"Holidays","?events=1"],
|
||
[2,"Recurring","?events=2"],
|
||
[3,"Player vs. Player","?events=3"]
|
||
];
|
||
var mn_currencies = [
|
||
[22,"Dungeon and Raid"],
|
||
[1,"Miscellaneous"],
|
||
[2,"Player vs. Player"]
|
||
];
|
||
var mn_talentCalc = [
|
||
[6,"Death Knight","?talent#j",,{className:"c6",tinyIcon:"class_deathknight"}],
|
||
[11,"Druid","?talent#0",,{className:"c11",tinyIcon:"class_druid"}],
|
||
[3,"Hunter","?talent#c",,{className:"c3",tinyIcon:"class_hunter"}],
|
||
[8,"Mage","?talent#o",,{className:"c8",tinyIcon:"class_mage"}],
|
||
[2,"Paladin","?talent#s",,{className:"c2",tinyIcon:"class_paladin"}],
|
||
[5,"Priest","?talent#b",,{className:"c5",tinyIcon:"class_priest"}],
|
||
[4,"Rogue","?talent#f",,{className:"c4",tinyIcon:"class_rogue"}],
|
||
[7,"Shaman","?talent#h",,{className:"c7",tinyIcon:"class_shaman"}],
|
||
[9,"Warlock","?talent#I",,{className:"c9",tinyIcon:"class_warlock"}],
|
||
[1,"Warrior","?talent#L",,{className:"c1",tinyIcon:"class_warrior"}]
|
||
];
|
||
var mn_petCalc = [
|
||
[,"Cunning",,,{tinyIcon:"Ability_Hunter_CombatExperience"}],
|
||
[24,"Bat","?petcalc#MR",,{tinyIcon:"Ability_Hunter_Pet_Bat"}],
|
||
[26,"Bird of Prey","?petcalc#Mb",,{tinyIcon:"Ability_Hunter_Pet_Owl"}],
|
||
[38,"Chimaera","?petcalc#cw",,{tinyIcon:"Ability_Hunter_Pet_Chimera"}],
|
||
[30,"Dragonhawk","?petcalc#c0",,{tinyIcon:"Ability_Hunter_Pet_DragonHawk"}],
|
||
[34,"Nether Ray","?petcalc#cR",,{tinyIcon:"Ability_Hunter_Pet_NetherRay"}],
|
||
[31,"Ravager","?petcalc#cM",,{tinyIcon:"Ability_Hunter_Pet_Ravager"}],
|
||
[35,"Serpent","?petcalc#ca",,{tinyIcon:"Spell_Nature_GuardianWard"}],
|
||
[41,"Silithid","?petcalc#mM",,{tinyIcon:"Ability_Hunter_Pet_Silithid"}],
|
||
[3,"Spider","?petcalc#0o",,{tinyIcon:"Ability_Hunter_Pet_Spider"}],
|
||
[33,"Sporebat","?petcalc#co",,{tinyIcon:"Ability_Hunter_Pet_Sporebat"}],
|
||
[27,"Wind Serpent","?petcalc#Mr",,{tinyIcon:"Ability_Hunter_Pet_WindSerpent"}],
|
||
[,"Ferocity",,,{tinyIcon:"Ability_Druid_Swipe"}],
|
||
[7,"Carrion Bird","?petcalc#0r",,{tinyIcon:"Ability_Hunter_Pet_Vulture"}],
|
||
[2,"Cat","?petcalc#0m",,{tinyIcon:"Ability_Hunter_Pet_Cat"}],
|
||
[45,"Core Hound","?petcalc#ma",,{tinyIcon:"Ability_Hunter_Pet_CoreHound"}],
|
||
[39,"Devilsaur","?petcalc#ch",,{tinyIcon:"Ability_Hunter_Pet_Devilsaur"}],
|
||
[25,"Hyena","?petcalc#Ma",,{tinyIcon:"Ability_Hunter_Pet_Hyena"}],
|
||
[37,"Moth","?petcalc#cr",,{tinyIcon:"Ability_Hunter_Pet_Moth"}],
|
||
[11,"Raptor","?petcalc#zM",,{tinyIcon:"Ability_Hunter_Pet_Raptor"}],
|
||
[46,"Spirit Beast","?petcalc#mb",,{tinyIcon:"Ability_Druid_PrimalPrecision"}],
|
||
[12,"Tallstrider","?petcalc#zm",,{tinyIcon:"Ability_Hunter_Pet_TallStrider"}],
|
||
[44,"Wasp","?petcalc#mR",,{tinyIcon:"Ability_Hunter_Pet_Wasp"}],
|
||
[1,"Wolf","?petcalc#0M",,{tinyIcon:"Ability_Hunter_Pet_Wolf"}],
|
||
[,"Tenacity",,,{tinyIcon:"Ability_Hunter_Pet_Bear"}],
|
||
[4,"Bear","?petcalc#0R",,{tinyIcon:"Ability_Hunter_Pet_Bear"}],
|
||
[5,"Boar","?petcalc#0a",,{tinyIcon:"Ability_Hunter_Pet_Boar"}],
|
||
[8,"Crab","?petcalc#0w",,{tinyIcon:"Ability_Hunter_Pet_Crab"}],
|
||
[6,"Crocolisk","?petcalc#0b",,{tinyIcon:"Ability_Hunter_Pet_Crocolisk"}],
|
||
[9,"Gorilla","?petcalc#0h",,{tinyIcon:"Ability_Hunter_Pet_Gorilla"}],
|
||
[43,"Rhino","?petcalc#mo",,{tinyIcon:"Ability_Hunter_Pet_Rhino"}],
|
||
[20,"Scorpid","?petcalc#M0",,{tinyIcon:"Ability_Hunter_Pet_Scorpid"}],
|
||
[21,"Turtle","?petcalc#MM",,{tinyIcon:"Ability_Hunter_Pet_Turtle"}],
|
||
[32,"Warp Stalker","?petcalc#cm",,{tinyIcon:"Ability_Hunter_Pet_WarpStalker"}],
|
||
[42,"Worm","?petcalc#mm",,{tinyIcon:"Ability_Hunter_Pet_Worm"}]
|
||
];
|
||
var mn_database = [
|
||
[9,"Achievements","?achievements",mn_achievements],
|
||
[12,"Classes","?classes",mn_classes],
|
||
[15,"Currencies","?currencies",mn_currencies],
|
||
[7,"Factions","?factions",mn_factions],
|
||
[0,"Items","?items",mn_items],
|
||
[2,"Item Sets","?itemsets",mn_itemSets],
|
||
[4,"NPCs","?npcs",mn_npcs],
|
||
[5,"Objects","?objects",mn_objects],
|
||
[8,"Pets","?pets",mn_pets],
|
||
[14,"Professions & Skills","?skills",mn_skills],
|
||
[3,"Quests","?quests",mn_quests],
|
||
[13,"Races","?races",mn_races],
|
||
[1,"Spells","?spells",mn_spells],
|
||
[10,"Titles","?titles",mn_titles],
|
||
[11,"World Events","?events",mn_holidays],
|
||
[6,"Zones","?zones",mn_zones]
|
||
];
|
||
var mn_tools = [
|
||
[0,"Talent Calculator","?talent",mn_talentCalc],
|
||
[2,"Pet Calculator","?petcalc",mn_petCalc],
|
||
[3,"Item Comparison","?compare"],
|
||
[5,"Profiler","?profiler",[
|
||
[0,"Characters","?profiles"],
|
||
[2,"Guilds","?guilds"],
|
||
[3,"Arena Teams","?arena-teams"],
|
||
[1,"New","?profile&new"]
|
||
]],
|
||
[1,"Maps","?maps"],
|
||
[,"Other"],
|
||
[6,"Guides","",[
|
||
[,"World Events"],
|
||
["lunar-festival","Lunar Festival","?guide=lunar-festival"],
|
||
["love-is-in-the-air","Love is in the Air","?guide=love-is-in-the-air"],
|
||
["noblegarden","Noblegarden","?guide=noblegarden"],
|
||
["childrens-week","Childrens Week","?guide=childrens-week"],
|
||
["midsummer-fire-festival","Midsummer Fire Festival","?guide=midsummer-fire-festival"],
|
||
["brewfest","Brewfest","?guide=brewfest"],
|
||
["hallows-end","Hallow's End","?guide=hallows-end"],
|
||
["pilgrims-bounty","Pilgrim's Bounty","?guide=pilgrims-bounty"],
|
||
["winter-veil","Feast of Winter Veil","?guide=winter-veil"]
|
||
]],
|
||
[8,"Utilities","",[
|
||
[,"Database"],
|
||
[4,"Random Page","?random"],
|
||
[0,"Latest Additions","?latest-additions"],
|
||
[1,"Latest Articles","?latest-articles"],
|
||
[3,"Latest Screenshots","?latest-screenshots"],
|
||
[11,"Latest Vídeos","?latest-videos"],
|
||
[2,"Latest Comments","?latest-comments"],
|
||
[5,"Unrated Comments","?unrated-comments"]
|
||
]]
|
||
];
|
||
var mn_community = [
|
||
[3,"Forum","http://forums.battle.net",null,{tinyIcon:"template/images/forum.png"}],
|
||
[7,"Blog","http://worldpress.com",null,{tinyIcon:"template/images/blog.png"}],
|
||
[4,"IRC-Channel","http://webchat.quakenet.org/",null,{tinyIcon:"template/images/bubble.gif"}],
|
||
[,"Social"],
|
||
[6,"Facebook Page","http://www.facebook.com",null,{tinyIcon:"template/images/facebook.gif"}],
|
||
[5,"Twitter Page","http://twitter.com",null,{tinyIcon:"template/images/twitter.gif"}]
|
||
];
|
||
var mn_more = [
|
||
[,"All About Wowhead"],
|
||
[0,"About Us & Contact","?aboutus"],
|
||
[3,"FAQ","?faq"],
|
||
[13,"Help",,[
|
||
[0,"Commenting and You","?help=commenting-and-you"],
|
||
[5,"Item Comparison","?help=item-comparison"],
|
||
[1,"Model Viewer","?help=modelviewer"],
|
||
[6,"Profiler","?help=profiler"],
|
||
[2,"Screenshots: Tips & Tricks","?help=screenshots-tips-tricks"],
|
||
[3,"Stat Weighting","?help=stat-weighting"],
|
||
[4,"Talent Calculator","?help=talent-calculator"]
|
||
]],
|
||
[7,"What's New","?whats-new"],
|
||
[,"Goodies"],
|
||
[10,"Tooltips","?tooltips"],
|
||
[8,"Search Plugins (FF, IE7, ...)","?searchplugins"]
|
||
];
|
||
var mn_path = [
|
||
[0,"Database",,mn_database],
|
||
[1,"Tools",,mn_tools],
|
||
[3,"Community","",mn_community],
|
||
[2,"More",,mn_more]
|
||
];
|
||
var g_contact_reasons = {
|
||
1:"General feedback",
|
||
2:"Bug report",
|
||
3:"Typo/mistranslation",
|
||
4:"Advertise with us",
|
||
5:"Partnership opportunities",
|
||
6:"Press inquiry",
|
||
7:"Other",
|
||
8:"Error in Article",
|
||
15:"Advertising",
|
||
16:"Inaccurate",
|
||
17:"Out of date",
|
||
18:"Spam",
|
||
19:"Vulgar/inappropriate",
|
||
20:"Other",
|
||
30:"Advertising",
|
||
31:"Inaccurate",
|
||
32:"Out of date",
|
||
33:"Spam",
|
||
34:"Sticky request",
|
||
35:"Vulgar/inappropriate",
|
||
36:"Other",
|
||
37:"Avatar",
|
||
45:"Inaccurate",
|
||
46:"Out of date",
|
||
47:"Vulgar/inappropriate",
|
||
48:"Other",
|
||
60:"Inaccurate completion data",
|
||
61:"Other"
|
||
};
|
||
var g_chr_classes = {
|
||
1:"Warrior",
|
||
2:"Paladin",
|
||
3:"Hunter",
|
||
4:"Rogue",
|
||
5:"Priest",
|
||
6:"Death Knight",
|
||
7:"Shaman",
|
||
8:"Mage",
|
||
9:"Warlock",
|
||
11:"Druid"
|
||
};
|
||
var g_chr_races = {
|
||
1:"Human",
|
||
2:"Orc",
|
||
3:"Dwarf",
|
||
4:"Night Elf",
|
||
5:"Undead",
|
||
6:"Tauren",
|
||
7:"Gnome",
|
||
8:"Troll",
|
||
10:"Blood Elf",
|
||
11:"Draenei"
|
||
};
|
||
var g_chr_specs = {
|
||
"-1":"Untalented",
|
||
0:"Hybrid",
|
||
6:["Blood","Frost","Unholy"],
|
||
11:["Balance","Feral Combat","Restoration"],
|
||
3:["Beast Mastery","Marksmanship","Survival"],
|
||
8:["Arcane","Fire","Frost"],
|
||
2:["Holy","Protection","Retribution"],
|
||
5:["Discipline","Holy","Shadow Magic"],
|
||
4:["Assassination","Combat","Subtlety"],
|
||
7:["Elemental Combat","Enhancement","Restoration"],
|
||
9:["Affliction","Demonology","Destruction"],
|
||
1:["Arms","Fury","Protection"]
|
||
};
|
||
var g_item_glyphs = {
|
||
1:"Major",
|
||
2:"Minor"
|
||
};
|
||
var g_item_slots = {
|
||
1:"Head",
|
||
2:"Neck",
|
||
3:"Shoulder",
|
||
4:"Shirt",
|
||
5:"Chest",
|
||
6:"Waist",
|
||
7:"Legs",
|
||
8:"Feet",
|
||
9:"Wrist",
|
||
10:"Hands",
|
||
11:"Finger",
|
||
12:"Trinket",
|
||
13:"One-Hand",
|
||
14:"Shield",
|
||
15:"Ranged",
|
||
16:"Back",
|
||
17:"Two-Hand",
|
||
18:"Bag",
|
||
19:"Tabard",
|
||
21:"Main Hand",
|
||
22:"Off Hand",
|
||
23:"Held In Off-hand",
|
||
24:"Projectile",
|
||
25:"Thrown",
|
||
28:"Relic"
|
||
};
|
||
var g_item_classes = {
|
||
0:"Consommable",
|
||
1:"Container",
|
||
2:"Weapon",
|
||
3:"Gem",
|
||
4:"Armor",
|
||
5:"Reagent",
|
||
6:"Projectile",
|
||
7:"Trade Goods",
|
||
9:"Recipe",
|
||
10:"Currency",
|
||
11:"Quiver",
|
||
12:"Quest",
|
||
13:"Key",
|
||
15:"Miscellaneous",
|
||
16:"Glyph"
|
||
};
|
||
var g_item_subclasses = {
|
||
0:{
|
||
0:"Consumable",
|
||
1:"Potion",
|
||
2:"Elixir",
|
||
3:"Flask",
|
||
4:"Scroll",
|
||
5:"Food & Drink",
|
||
6:"Perm. Enhancement",
|
||
"-3":"Temp. Enhancement",
|
||
7:"Bandage",
|
||
8:"Other (Consumables)"
|
||
},
|
||
1:{
|
||
0:"Bag",
|
||
1:"Soul Bag",
|
||
2:"Herb Bag",
|
||
3:"Enchanting Bag",
|
||
4:"Engineering Bag",
|
||
5:"Gem Bag",
|
||
6:"Mining Bag",
|
||
7:"Leatherworking Bag",
|
||
8:"Inscription Bag"
|
||
},
|
||
2:{
|
||
0:"One-Handed Axe",
|
||
1:"Two-Handed Axe",
|
||
2:"Bow",
|
||
3:"Gun",
|
||
4:"One-Handed Mace",
|
||
5:"Two-Handed Mace",
|
||
6:"Polearm",
|
||
7:"One-Handed Sword",
|
||
8:"Two-Handed Sword",
|
||
10:"Staff",
|
||
13:"Fist Weapon",
|
||
14:"Misc. (Weapons)",
|
||
15:"Dagger",
|
||
16:"Thrown",
|
||
18:"Crossbow",
|
||
19:"Wand",
|
||
20:"Fishing Pole"
|
||
},
|
||
3:{
|
||
0:"Red Gem",
|
||
1:"Blue Gem",
|
||
2:"Yellow Gem",
|
||
3:"Purple Gem",
|
||
4:"Green Gem",
|
||
5:"Orange Gem",
|
||
6:"Meta Gem",
|
||
7:"Simple Gem",
|
||
8:"Prismatic Gem"
|
||
},
|
||
4:{
|
||
"-8":"Shirt",
|
||
"-7":"Tabard",
|
||
"-6":"Cloak",
|
||
"-5":"Off-hand Frill",
|
||
"-4":"Trinket",
|
||
"-3":"Amulet",
|
||
"-2":"Ring",
|
||
0:"Misc. (Armor)",
|
||
1:"Cloth Armor",
|
||
2:"Leather Armor",
|
||
3:"Mail Armor",
|
||
4:"Plate Armor",
|
||
6:"Shield",
|
||
7:"Libram",
|
||
8:"Idol",
|
||
9:"Totem",
|
||
10:"Sigil"
|
||
},
|
||
6:{
|
||
2:"Arrow",
|
||
3:"Bullet"
|
||
},
|
||
7:{
|
||
1:"Part",
|
||
2:"Explosive",
|
||
3:"Device",
|
||
4:"Jewelcrafting",
|
||
5:"Cloth",
|
||
6:"Leather",
|
||
7:"Metal & Stone",
|
||
8:"Meat",
|
||
9:"Herb",
|
||
10:"Elemental",
|
||
12:"Enchanting",
|
||
13:"Material",
|
||
14:"Armor Enchantment",
|
||
15:"Weapon Enchantment",
|
||
11:"Other (Trade Goods)"
|
||
},
|
||
9:{
|
||
0:"Book",
|
||
1:"Leatherworking Pattern",
|
||
2:"Tailoring Pattern",
|
||
3:"Engineering Schematic",
|
||
4:"Blacksmithing Plans",
|
||
5:"Cooking Recipe",
|
||
6:"Alchemy Recipe",
|
||
7:"First Aid Book",
|
||
8:"Enchanting Formula",
|
||
9:"Fishing Book",
|
||
10:"Jewelcrafting Design",
|
||
11:"Inscription Technique"
|
||
},
|
||
11:{
|
||
2:"Quiver",
|
||
3:"Ammo Pouch"
|
||
},
|
||
15:{
|
||
"-7":"Flying Mount",
|
||
"-6":"Combat Pet",
|
||
"-2":"Armor Token",
|
||
0:"Junk",
|
||
1:"Reagent",
|
||
2:"Small Pet",
|
||
3:"Holiday",
|
||
4:"Other (Miscellaneous)",
|
||
5:"Mount"
|
||
},
|
||
16:{
|
||
6:"Death Knight Glyph",
|
||
11:"Druid Glyph",
|
||
3:"Hunter Glyph",
|
||
8:"Mage Glyph",
|
||
2:"Paladin Glyph",
|
||
5:"Priest Glyph",
|
||
4:"Rogue Glyph",
|
||
7:"Shaman Glyph",
|
||
9:"Warlock Glyph",
|
||
1:"Warrior Glyph"
|
||
}
|
||
};
|
||
var g_item_subsubclasses = {
|
||
0:{
|
||
2:{
|
||
1:"Battle Elixir",
|
||
2:"Guardian Elixir"
|
||
}
|
||
}
|
||
};
|
||
var g_itemset_types = {
|
||
1:"Cloth",
|
||
2:"Leather",
|
||
3:"Mail",
|
||
4:"Plate",
|
||
5:"Dagger",
|
||
6:"Ring",
|
||
7:"Fist Weapon",
|
||
8:"One-Handed Axe",
|
||
9:"One-Handed Mace",
|
||
10:"One-Handed Sword",
|
||
11:"Trinket",
|
||
12:"Amulet"
|
||
};
|
||
var g_itemset_notes = {
|
||
1:"Dungeon Set 1",
|
||
2:"Dungeon Set 2",
|
||
14:"Dungeon Set 3",
|
||
3:"Tier 1 Raid Set",
|
||
4:"Tier 2 Raid Set",
|
||
5:"Tier 3 Raid Set",
|
||
12:"Tier 4 Raid Set",
|
||
13:"Tier 5 Raid Set",
|
||
18:"Tier 6 Raid Set",
|
||
23:"Tier 7 Raid Set",
|
||
25:"Tier 8 Raid Set",
|
||
27:"Tier 9 Raid Set",
|
||
29:"Tier 10 Raid Set",
|
||
6:"Level 60 PvP Rare Set",
|
||
7:"Level 60 PvP Rare Set (Old)",
|
||
8:"Level 60 PvP Epic Set",
|
||
16:"Level 70 PvP Rare Set",
|
||
21:"Level 70 PvP Rare Set 2",
|
||
17:"Arena Season 1 Set",
|
||
19:"Arena Season 2 Set",
|
||
20:"Arena Season 3 Set",
|
||
22:"Arena Season 4 Set",
|
||
24:"Arena Season 5 Set",
|
||
26:"Arena Season 6 Set",
|
||
28:"Arena Season 7 Set",
|
||
30:"Arena Season 8 Set",
|
||
15:"Arathi Basin Set",
|
||
9:"Ruins of Ahn'Qiraj Set",
|
||
10:"Temple of Ahn'Qiraj Set",
|
||
11:"Zul'Gurub Set"
|
||
};
|
||
var g_npc_classifications = {
|
||
0:"Normal",
|
||
1:"Elite",
|
||
2:"Rare Elite",
|
||
3:"Boss",
|
||
4:"Rare"
|
||
};
|
||
var g_npc_types = {
|
||
1:"Beast",
|
||
8:"Critter",
|
||
3:"Demon",
|
||
4:"Elemental",
|
||
2:"Dragonkin",
|
||
5:"Giant",
|
||
7:"Humanoid",
|
||
9:"Mechanical",
|
||
6:"Undead",
|
||
10:"Uncategorized"
|
||
};
|
||
var g_pet_families = {
|
||
"1":"Wolf",
|
||
"2":"Cat",
|
||
"3":"Spider",
|
||
"4":"Bear",
|
||
"5":"Boar",
|
||
"6":"Crocolisk",
|
||
"7":"Carrion Bird",
|
||
"8":"Crab",
|
||
"9":"Gorilla",
|
||
"11":"Raptor",
|
||
"12":"Tallstrider",
|
||
"20":"Scorpid",
|
||
"21":"Turtle",
|
||
"24":"Bat",
|
||
"25":"Hyena",
|
||
"26":"Bird of Prey",
|
||
"27":"Wind Serpent",
|
||
"30":"Dragonhawk",
|
||
"31":"Ravager",
|
||
"32":"Warp Stalker",
|
||
"33":"Sporebat",
|
||
"34":"Nether Ray",
|
||
"35":"Serpent",
|
||
"37":"Moth",
|
||
"38":"Chimaera",
|
||
"39":"Devilsaur",
|
||
"41":"Silithid",
|
||
"42":"Worm",
|
||
"43":"Rhino",
|
||
"44":"Wasp",
|
||
"45":"Core Hound",
|
||
"46":"Spirit Beast"
|
||
};
|
||
var g_pet_types = {
|
||
0:"Ferocity",
|
||
1:"Tenacity",
|
||
2:"Cunning"
|
||
};
|
||
var g_pet_foods = {
|
||
1:"Meat",
|
||
2:"Fish",
|
||
4:"Cheese",
|
||
8:"Bread",
|
||
16:"Fungus",
|
||
32:"Fruit",
|
||
64:"Raw Meat",
|
||
128:"Raw Fish"
|
||
};
|
||
var g_object_types = {
|
||
9:"Book",
|
||
3:"Container",
|
||
"-5":"Footlocker",
|
||
"-3":"Herb",
|
||
"-4":"Mineral Vein",
|
||
"-2":"Quest"
|
||
};
|
||
var g_reputation_standings = {
|
||
0:"Hated",
|
||
1:"Hostile",
|
||
2:"Unfriendly",
|
||
3:"Neutral",
|
||
4:"Friendly",
|
||
5:"Honored",
|
||
6:"Revered",
|
||
7:"Exalted"
|
||
};
|
||
var g_quest_categories = {
|
||
"-2":"Uncategorized",
|
||
0:"Eastern Kingdoms",
|
||
1:"Kalimdor",
|
||
2:"Dungeons",
|
||
3:"Raids",
|
||
4:"Classes",
|
||
5:"Professions",
|
||
6:"Battlegrounds",
|
||
7:"Miscellaneous",
|
||
8:"Outland",
|
||
9:"Seasonal",
|
||
10:"Northrend"
|
||
};
|
||
var g_quest_sorts = {
|
||
"-1001":"Winter Veil",
|
||
"-1002":"Children's Week",
|
||
"-1003":"Hallow's End",
|
||
"-1004":"Love is in the Air",
|
||
"-1005":"Harvest Festival",
|
||
"-1006":"New Year's Eve",
|
||
"-1007":"Day of the Dead",
|
||
"-1008":"Pilgrim's Bounty",
|
||
"1939":"Abyssal Sands",
|
||
"-365":"Ahn'Qiraj War",
|
||
"4494":"Ahn'kahet: The Old Kingdom",
|
||
"-181":"Alchemy",
|
||
"3896":"Aldor Rise",
|
||
"36":"Alterac Mountains",
|
||
"2597":"Alterac Valley",
|
||
"2839":"Alterac Valley",
|
||
"3526":"Ammen Vale",
|
||
"3358":"Arathi Basin",
|
||
"45":"Arathi Highlands",
|
||
"331":"Ashenvale",
|
||
"3790":"Auchenai Crypts",
|
||
"4277":"Azjol-Nerub",
|
||
"16":"Azshara",
|
||
"3524":"Azuremyst Isle",
|
||
"3":"Badlands",
|
||
"-25":"Battlegrounds",
|
||
"719":"Blackfathom Deeps",
|
||
"1584":"Blackrock Depths",
|
||
"25":"Blackrock Mountain",
|
||
"1583":"Blackrock Spire",
|
||
"-121":"Blacksmithing",
|
||
"2677":"Blackwing Lair",
|
||
"3522":"Blade's Edge Mountains",
|
||
"4":"Blasted Lands",
|
||
"3525":"Bloodmyst Isle",
|
||
"3537":"Borean Tundra",
|
||
"-370":"Brewfest",
|
||
"46":"Burning Steppes",
|
||
"1941":"Caverns of Time",
|
||
"3905":"Coilfang Reservoir",
|
||
"4024":"Coldarra",
|
||
"-304":"Cooking",
|
||
"4395":"Dalaran",
|
||
"4613":"Dalaran City",
|
||
"279":"Dalaran Crater",
|
||
"-364":"Darkmoon Faire",
|
||
"148":"Darkshore",
|
||
"1657":"Darnassus",
|
||
"-41":"Day of the Dead",
|
||
"41":"Deadwind Pass",
|
||
"-372":"Death Knight",
|
||
"2257":"Deeprun Tram",
|
||
"151":"Designer Island",
|
||
"405":"Desolace",
|
||
"2557":"Dire Maul",
|
||
"65":"Dragonblight",
|
||
"4196":"Drak'Tharon Keep",
|
||
"-263":"Druid",
|
||
"1":"Dun Morogh",
|
||
"14":"Durotar",
|
||
"10":"Duskwood",
|
||
"15":"Dustwallow Marsh",
|
||
"139":"Eastern Plaguelands",
|
||
"12":"Elwynn Forest",
|
||
"-201":"Engineering",
|
||
"-1":"Epic",
|
||
"3430":"Eversong Woods",
|
||
"3820":"Eye of the Storm",
|
||
"361":"Felwood",
|
||
"357":"Feralas",
|
||
"-324":"First Aid",
|
||
"-101":"Fishing",
|
||
"3433":"Ghostlands",
|
||
"721":"Gnomeregan",
|
||
"394":"Grizzly Hills",
|
||
"4416":"Gundrak",
|
||
"4272":"Halls of Lightning",
|
||
"4820":"Halls of Reflection",
|
||
"4264":"Halls of Stone",
|
||
"3535":"Hellfire Citadel",
|
||
"3483":"Hellfire Peninsula",
|
||
"3562":"Hellfire Ramparts",
|
||
"-24":"Herbalism",
|
||
"267":"Hillsbrad Foothills",
|
||
"495":"Howling Fjord",
|
||
"-261":"Hunter",
|
||
"3606":"Hyjal Summit",
|
||
"210":"Icecrown",
|
||
"4812":"Icecrown Citadel",
|
||
"-371":"Inscription",
|
||
"-368":"Invasion",
|
||
"1537":"Ironforge",
|
||
"4710":"Isle of Conquest",
|
||
"4080":"Isle of Quel'Danas",
|
||
"-373":"Jewelcrafting",
|
||
"3457":"Karazhan",
|
||
"131":"Kharanos",
|
||
"-182":"Leatherworking",
|
||
"-344":"Legendary",
|
||
"38":"Loch Modan",
|
||
"-376":"Love is in the Air",
|
||
"-366":"Lunar Festival",
|
||
"-161":"Mage",
|
||
"4095":"Magisters' Terrace",
|
||
"3836":"Magtheridon's Lair",
|
||
"3792":"Mana-Tombs",
|
||
"2100":"Maraudon",
|
||
"-369":"Midsummer",
|
||
"2717":"Molten Core",
|
||
"493":"Moonglade",
|
||
"215":"Mulgore",
|
||
"3518":"Nagrand",
|
||
"3456":"Naxxramas",
|
||
"3523":"Netherstorm",
|
||
"-374":"Noblegarden",
|
||
"2367":"Old Hillsbrad Foothills",
|
||
"2159":"Onyxia's Lair",
|
||
"1637":"Orgrimmar",
|
||
"-141":"Paladin",
|
||
"4813":"Pit of Saron",
|
||
"-262":"Priest",
|
||
"22":"Programmer Isle",
|
||
"2437":"Ragefire Chasm",
|
||
"722":"Razorfen Downs",
|
||
"491":"Razorfen Kraul",
|
||
"44":"Redridge Mountains",
|
||
"-367":"Reputation",
|
||
"-162":"Rogue",
|
||
"3429":"Ruins of Ahn'Qiraj",
|
||
"796":"Scarlet Monastery",
|
||
"2057":"Scholomance",
|
||
"51":"Searing Gorge",
|
||
"-22":"Seasonal",
|
||
"3607":"Serpentshrine Cavern",
|
||
"3791":"Sethekk Halls",
|
||
"3789":"Shadow Labyrinth",
|
||
"209":"Shadowfang Keep",
|
||
"3520":"Shadowmoon Valley",
|
||
"-82":"Shaman",
|
||
"3703":"Shattrath City",
|
||
"3711":"Sholazar Basin",
|
||
"1377":"Silithus",
|
||
"3487":"Silvermoon City",
|
||
"130":"Silverpine Forest",
|
||
"3679":"Skettis",
|
||
"-284":"Special",
|
||
"406":"Stonetalon Mountains",
|
||
"1519":"Stormwind City",
|
||
"4384":"Strand of the Ancients",
|
||
"33":"Stranglethorn Vale",
|
||
"2017":"Stratholme",
|
||
"1477":"Sunken Temple",
|
||
"4075":"Sunwell Plateau",
|
||
"8":"Swamp of Sorrows",
|
||
"-264":"Tailoring",
|
||
"440":"Tanaris",
|
||
"141":"Teldrassil",
|
||
"3845":"Tempest Keep",
|
||
"3428":"Temple of Ahn'Qiraj",
|
||
"3519":"Terokkar Forest",
|
||
"3848":"The Arcatraz",
|
||
"17":"The Barrens",
|
||
"2366":"The Black Morass",
|
||
"3959":"The Black Temple",
|
||
"3713":"The Blood Furnace",
|
||
"3847":"The Botanica",
|
||
"4100":"The Culling of Stratholme",
|
||
"1581":"The Deadmines",
|
||
"3557":"The Exodar",
|
||
"3842":"The Eye",
|
||
"4500":"The Eye of Eternity",
|
||
"4809":"The Forge of Souls",
|
||
"47":"The Hinterlands",
|
||
"3849":"The Mechanar",
|
||
"4120":"The Nexus",
|
||
"4493":"The Obsidian Sanctum",
|
||
"4228":"The Oculus",
|
||
"3714":"The Shattered Halls",
|
||
"3717":"The Slave Pens",
|
||
"3715":"The Steamvault",
|
||
"717":"The Stockade",
|
||
"67":"The Storm Peaks",
|
||
"3716":"The Underbog",
|
||
"4415":"The Violet Hold",
|
||
"400":"Thousand Needles",
|
||
"1638":"Thunder Bluff",
|
||
"1216":"Timbermaw Hold",
|
||
"85":"Tirisfal Glades",
|
||
"-241":"Tournament",
|
||
"4723":"Trial of the Champion",
|
||
"4722":"Trial of the Crusader",
|
||
"1337":"Uldaman",
|
||
"4273":"Ulduar",
|
||
"490":"Un'Goro Crater",
|
||
"1497":"Undercity",
|
||
"206":"Utgarde Keep",
|
||
"1196":"Utgarde Pinnacle",
|
||
"718":"Wailing Caverns",
|
||
"-61":"Warlock",
|
||
"-81":"Warrior",
|
||
"3277":"Warsong Gulch",
|
||
"28":"Western Plaguelands",
|
||
"40":"Westfall",
|
||
"11":"Wetlands",
|
||
"4197":"Wintergrasp",
|
||
"618":"Winterspring",
|
||
"3521":"Zangarmarsh",
|
||
"3805":"Zul'Aman",
|
||
"66":"Zul'Drak",
|
||
"1176":"Zul'Farrak",
|
||
"1977":"Zul'Gurub"
|
||
};
|
||
var g_quest_types = {
|
||
0:"Normal",
|
||
1:"Group",
|
||
81:"Dungeon",
|
||
62:"Raid",
|
||
41:"PvP",
|
||
82:"World Event",
|
||
84:"Escort",
|
||
85:"Heroic"
|
||
};
|
||
var g_sides = {
|
||
1:"Alliance",
|
||
2:"Horde",
|
||
3:"Both"
|
||
};
|
||
var g_sources = {
|
||
1:"Crafted",
|
||
2:"Drop",
|
||
3:"PvP",
|
||
4:"Quest",
|
||
5:"Vendor",
|
||
6:"Trainer",
|
||
7:"Discovery",
|
||
8:"Redemption",
|
||
9:"Talent",
|
||
10:"Starter",
|
||
11:"Event",
|
||
12:"Achievement"
|
||
};
|
||
var g_sources_pvp = {
|
||
1:"Arena",
|
||
2:"Battleground",
|
||
4:"World"
|
||
};
|
||
var g_spell_resistances = {
|
||
0:"Physical",
|
||
1:"Holy",
|
||
2:"Fire",
|
||
3:"Nature",
|
||
4:"Frost",
|
||
5:"Shadow",
|
||
6:"Arcane"
|
||
};
|
||
var g_spell_types = {
|
||
"-11": {
|
||
1: "Weapons",
|
||
2: "Armor",
|
||
4: "Languages"
|
||
}
|
||
};
|
||
var g_spell_skills = {
|
||
"6":"Frost",
|
||
"8":"Fire",
|
||
"26":"Arms",
|
||
"38":"Combat",
|
||
"39":"Subtlety",
|
||
"43":"Swords",
|
||
"44":"Axes",
|
||
"45":"Bows",
|
||
"46":"Guns",
|
||
"50":"Beast Mastery",
|
||
"51":"Survival",
|
||
"54":"Maces",
|
||
"55":"Two-Handed Swords",
|
||
"56":"Holy",
|
||
"78":"Shadow Magic",
|
||
"95":"Defense",
|
||
"98":"Common",
|
||
"101":"Dwarven Racial",
|
||
"109":"Orcish",
|
||
"111":"Dwarven",
|
||
"113":"Darnassian",
|
||
"115":"Taurahe",
|
||
"118":"Dual Wield",
|
||
"124":"Tauren Racial",
|
||
"125":"Orc Racial",
|
||
"126":"Night Elf Racial",
|
||
"129":"First Aid",
|
||
"134":"Feral Combat",
|
||
"136":"Staves",
|
||
"137":"Thalassian",
|
||
"138":"Draconic",
|
||
"139":"Demon Tongue",
|
||
"140":"Titan",
|
||
"141":"Old Tongue",
|
||
"142":"Survival",
|
||
"148":"Horse Riding",
|
||
"149":"Wolf Riding",
|
||
"150":"Tiger Riding",
|
||
"152":"Ram Riding",
|
||
"155":"Swimming",
|
||
"160":"Two-Handed Maces",
|
||
"162":"Unarmed",
|
||
"163":"Marksmanship",
|
||
"164":"Blacksmithing",
|
||
"165":"Leatherworking",
|
||
"171":"Alchemy",
|
||
"172":"Two-Handed Axes",
|
||
"173":"Daggers",
|
||
"176":"Thrown",
|
||
"182":"Herbalism",
|
||
"183":"GENERIC (DND)",
|
||
"184":"Retribution",
|
||
"185":"Cooking",
|
||
"186":"Mining",
|
||
"188":"Imp",
|
||
"189":"Felhunter",
|
||
"197":"Tailoring",
|
||
"202":"Engineering",
|
||
"203":"Spider",
|
||
"204":"Voidwalker",
|
||
"205":"Succubus",
|
||
"206":"Infernal",
|
||
"207":"Doomguard",
|
||
"208":"Wolf",
|
||
"209":"Cat",
|
||
"210":"Bear",
|
||
"211":"Boar",
|
||
"212":"Crocolisk",
|
||
"213":"Carrion Bird",
|
||
"214":"Crab",
|
||
"215":"Gorilla",
|
||
"217":"Raptor",
|
||
"218":"Tallstrider",
|
||
"220":"Undead",
|
||
"226":"Crossbows",
|
||
"228":"Wands",
|
||
"229":"Polearms",
|
||
"236":"Scorpid",
|
||
"237":"Arcane",
|
||
"251":"Turtle",
|
||
"253":"Assassination",
|
||
"256":"Fury",
|
||
"257":"Protection",
|
||
"267":"Protection",
|
||
"270":"Generic Hunter",
|
||
"293":"Plate Mail",
|
||
"313":"Gnomish",
|
||
"315":"Troll",
|
||
"333":"Enchanting",
|
||
"354":"Demonology",
|
||
"355":"Affliction",
|
||
"356":"Fishing",
|
||
"373":"Enhancement",
|
||
"374":"Restoration",
|
||
"375":"Elemental Combat",
|
||
"393":"Skinning",
|
||
"413":"Mail",
|
||
"414":"Leather",
|
||
"415":"Cloth",
|
||
"433":"Shield",
|
||
"473":"Fist Weapons",
|
||
"533":"Raptor Riding",
|
||
"553":"Mechanostrider Piloting",
|
||
"554":"Undead Horsemanship",
|
||
"573":"Restoration",
|
||
"574":"Balance",
|
||
"593":"Destruction",
|
||
"594":"Holy",
|
||
"613":"Discipline",
|
||
"633":"Lockpicking",
|
||
"653":"Bat",
|
||
"654":"Hyena",
|
||
"655":"Bird of Prey",
|
||
"656":"Wind Serpent",
|
||
"673":"Gutterspeak",
|
||
"713":"Kodo Riding",
|
||
"733":"Troll",
|
||
"753":"Gnome",
|
||
"754":"Human",
|
||
"755":"Jewelcrafting",
|
||
"756":"Blood Elf Racial",
|
||
"758":"Remote Control",
|
||
"759":"Draenei",
|
||
"760":"Draenei Racial",
|
||
"761":"Felguard",
|
||
"762":"Riding",
|
||
"763":"Dragonhawk",
|
||
"764":"Nether Ray",
|
||
"765":"Sporebat",
|
||
"766":"Warp Stalker",
|
||
"767":"Ravager",
|
||
"768":"Serpent",
|
||
"769":"Internal",
|
||
"770":"Blood",
|
||
"771":"Frost",
|
||
"772":"Unholy",
|
||
"773":"Inscription",
|
||
"775":"Moth",
|
||
"776":"Runeforging",
|
||
"777":"Mounts",
|
||
"778":"Companions",
|
||
"780":"Exotic Chimaera",
|
||
"781":"Exotic Devlisaur",
|
||
"782":"Ghoul",
|
||
"783":"Exotic Silithid",
|
||
"784":"Exotic Worm",
|
||
"785":"Wasp",
|
||
"786":"Exotic Rhino",
|
||
"787":"Exotic Core Hound",
|
||
"788":"Exotic Spirit Beast"
|
||
};
|
||
var g_skill_categories = {
|
||
"-6":"Companions",
|
||
"-5":"Mounts",
|
||
"-4":"Racial Traits",
|
||
"6":"Weapon Skills",
|
||
"8":"Armor Proficiencies",
|
||
"9":"Secondary Skills",
|
||
"10":"Languages",
|
||
"11":"Professions"
|
||
};
|
||
var g_zones = {
|
||
"1":"Dun Morogh",
|
||
"3":"Badlands",
|
||
"4":"Blasted Lands",
|
||
"8":"Swamp of Sorrows",
|
||
"10":"Duskwood",
|
||
"11":"Wetlands",
|
||
"12":"Elwynn Forest",
|
||
"14":"Durotar",
|
||
"15":"Dustwallow Marsh",
|
||
"16":"Azshara",
|
||
"17":"The Barrens",
|
||
"25":"Blackrock Mountain",
|
||
"28":"Western Plaguelands",
|
||
"33":"Stranglethorn Vale",
|
||
"36":"Alterac Mountains",
|
||
"38":"Loch Modan",
|
||
"40":"Westfall",
|
||
"41":"Deadwind Pass",
|
||
"44":"Redridge Mountains",
|
||
"45":"Arathi Highlands",
|
||
"46":"Burning Steppes",
|
||
"47":"The Hinterlands",
|
||
"51":"Searing Gorge",
|
||
"65":"Dragonblight",
|
||
"66":"Zul'Drak",
|
||
"67":"The Storm Peaks",
|
||
"85":"Tirisfal Glades",
|
||
"130":"Silverpine Forest",
|
||
"139":"Eastern Plaguelands",
|
||
"141":"Teldrassil",
|
||
"148":"Darkshore",
|
||
"206":"Utgarde Keep",
|
||
"209":"Shadowfang Keep",
|
||
"210":"Icecrown",
|
||
"215":"Mulgore",
|
||
"267":"Hillsbrad Foothills",
|
||
"331":"Ashenvale",
|
||
"357":"Feralas",
|
||
"361":"Felwood",
|
||
"394":"Grizzly Hills",
|
||
"400":"Thousand Needles",
|
||
"405":"Desolace",
|
||
"406":"Stonetalon Mountains",
|
||
"440":"Tanaris",
|
||
"457":"The Veiled Sea",
|
||
"490":"Un'Goro Crater",
|
||
"491":"Razorfen Kraul",
|
||
"493":"Moonglade",
|
||
"495":"Howling Fjord",
|
||
"618":"Winterspring",
|
||
"717":"The Stockade",
|
||
"718":"Wailing Caverns",
|
||
"719":"Blackfathom Deeps",
|
||
"721":"Gnomeregan",
|
||
"722":"Razorfen Downs",
|
||
"796":"Scarlet Monastery",
|
||
"1176":"Zul'Farrak",
|
||
"1196":"Utgarde Pinnacle",
|
||
"1337":"Uldaman",
|
||
"1377":"Silithus",
|
||
"1477":"Sunken Temple",
|
||
"1497":"Undercity",
|
||
"1519":"Stormwind City",
|
||
"1537":"Ironforge",
|
||
"1581":"The Deadmines",
|
||
"1583":"Blackrock Spire",
|
||
"1584":"Blackrock Depths",
|
||
"1637":"Orgrimmar",
|
||
"1638":"Thunder Bluff",
|
||
"1657":"Darnassus",
|
||
"1977":"Zul'Gurub",
|
||
"2017":"Stratholme",
|
||
"2057":"Scholomance",
|
||
"2100":"Maraudon",
|
||
"2159":"Onyxia's Lair",
|
||
"2257":"Deeprun Tram",
|
||
"2366":"The Black Morass",
|
||
"2367":"Old Hillsbrad Foothills",
|
||
"2437":"Ragefire Chasm",
|
||
"2557":"Dire Maul",
|
||
"2597":"Alterac Valley",
|
||
"2677":"Blackwing Lair",
|
||
"2717":"Molten Core",
|
||
"2817":"Crystalsong Forest",
|
||
"3277":"Warsong Gulch",
|
||
"3358":"Arathi Basin",
|
||
"3428":"Temple of Ahn'Qiraj",
|
||
"3429":"Ruins of Ahn'Qiraj",
|
||
"3430":"Eversong Woods",
|
||
"3433":"Ghostlands",
|
||
"3456":"Naxxramas",
|
||
"3457":"Karazhan",
|
||
"4277":"Azjol-Nerub",
|
||
"3483":"Hellfire Peninsula",
|
||
"3487":"Silvermoon City",
|
||
"3518":"Nagrand",
|
||
"3519":"Terokkar Forest",
|
||
"3520":"Shadowmoon Valley",
|
||
"3521":"Zangarmarsh",
|
||
"3522":"Blade's Edge Mountains",
|
||
"3523":"Netherstorm",
|
||
"3524":"Azuremyst Isle",
|
||
"3525":"Bloodmyst Isle",
|
||
"3537":"Borean Tundra",
|
||
"3557":"The Exodar",
|
||
"3562":"Hellfire Ramparts",
|
||
"3606":"Hyjal Summit",
|
||
"3607":"Serpentshrine Cavern",
|
||
"3698":"The Ring of Trials",
|
||
"3702":"The Circle of Blood",
|
||
"3703":"Shattrath City",
|
||
"3711":"Sholazar Basin",
|
||
"3713":"The Blood Furnace",
|
||
"3714":"The Shattered Halls",
|
||
"3715":"The Steamvault",
|
||
"3716":"The Underbog",
|
||
"3717":"The Slave Pens",
|
||
"3789":"Shadow Labyrinth",
|
||
"3790":"Auchenai Crypts",
|
||
"3791":"Sethekk Halls",
|
||
"3792":"Mana-Tombs",
|
||
"3805":"Zul'Aman",
|
||
"3820":"Eye of the Storm",
|
||
"3836":"Magtheridon's Lair",
|
||
"3842":"Tempest Keep",
|
||
"3845":"Tempest Keep",
|
||
"3848":"The Arcatraz",
|
||
"3847":"The Botanica",
|
||
"3849":"The Mechanar",
|
||
"3923":"Gruul's Lair",
|
||
"3959":"Black Temple",
|
||
"3968":"Ruins of Lordaeron",
|
||
"4075":"Sunwell Plateau",
|
||
"4080":"Isle of Quel'Danas",
|
||
"4100":"The Culling of Stratholme",
|
||
"4131":"Magisters' Terrace",
|
||
"4196":"Drak'Tharon Keep",
|
||
"4197":"Wintergrasp",
|
||
"4228":"The Oculus",
|
||
"4264":"Halls of Stone",
|
||
"4265":"The Nexus",
|
||
"4272":"Halls of Lightning",
|
||
"4273":"Ulduar",
|
||
"4298":"The Scarlet Enclave",
|
||
"4416":"Gundrak",
|
||
"4378":"Dalaran Sewers",
|
||
"4384":"Strand of the Ancients",
|
||
"4395":"Dalaran",
|
||
"4406":"The Ring of Valor",
|
||
"4415":"The Violet Hold",
|
||
"4493":"The Obsidian Sanctum",
|
||
"4494":"Ahn'kahet: The Old Kingdom",
|
||
"4500":"The Eye of Eternity",
|
||
"4603":"Vault of Archavon",
|
||
"4710":"Isle of Conquest",
|
||
"4722":"Trial of the Crusader",
|
||
"4723":"Trial of the Champion",
|
||
"4742":"Hrothgar's Landing",
|
||
"4809":"The Forge of Souls",
|
||
"4812":"Icecrown Citadel",
|
||
"4813":"Pit of Saron",
|
||
"4820":"Halls of Reflection",
|
||
"4987":"The Ruby Sanctum"
|
||
};
|
||
var g_zone_areas = {
|
||
206: ['Norndir Preparation','Dragonflayer Ascent','Tyr\'s Terrace'],
|
||
209: ['The Courtyard','Dining Hall','The Vacant Den','Lower Observatory','Upper Observatory','Lord Godfrey\'s Chamber','The Wall Walk'],
|
||
719: ['The Pool of Ask\'Ar','Moonshrine Sanctum','The Forgotten Pool'],
|
||
721: ['The Hall of Gears','The Dormitory','Launch Bay','Tinkers\' Court'],
|
||
796: ['Graveyard','Library','Armory','Cathedral'],
|
||
1196: ['Lower Pinnacle','Upper Pinnacle'],
|
||
1337: ['Hall of the Keepers','Khaz\'Goroth\'s Seat'],
|
||
1581: ['The Deadmines','Ironclad Cove'],
|
||
1583: ['Tazz\'Alaor','Skitterweb Tunnels','Hordemar City','Hall of Blackhand','Dragonspire Hall','The Rookery','Blackrock Stadium'],
|
||
1584: ['Detention Block','Shadowforge City'],
|
||
2017: ['Crusader\'s Square','The Gauntlet'],
|
||
2057: ['The Reliquary','Chamber of Summoning','The Headmaster\'s Study','Barov Family Vault'],
|
||
2100: ['Caverns of Maraudon','Zaetar\'s Grave'],
|
||
2557: ['Gordok Commons','Capital Gardens','Court of the Highborne','Prison of Immol\'Thar','Warpwood Quarter','The Shrine of Eldretharr'],
|
||
2677: ['Dragonmaw Garrison','Halls of Strife','Crimson Laboratories','Nefarian\'s Lair'],
|
||
3428: ['The Hive Undergrounds','The Temple Gates','Vault of C\'Thun'],
|
||
3456: ['The Construct Quarter','The Arachnid Quarter','The Military Quarter','The Plague Quarter','Overview','Frostwyrm Lair'],
|
||
3457: ['Servant\'s Quarters','Upper Livery Stables','The Banquet Hall','The Guest Chambers','Opera Hall Balcony','Master\'s Terrace','Lower Broken Stair','Upper Broken Stair','The Menagerie','Guardian\'s Library','The Repository','Upper Library','The Celestial Watch','Gamesman\'s Hall','Medivh\'s Chambers','The Power Station','Netherspace'],
|
||
3715: ['The Steamvault','The Cooling Pools'],
|
||
3790: ['Halls of the Hereafter','Bridge of Souls'],
|
||
3791: ['Veil Sethekk','Halls of Mourning'],
|
||
3848: ['Stasis Block: Trion','Stasis Block: Maximus','Containment Core'],
|
||
3849: ['The Mechanar','Calculation Chamber'],
|
||
3959: ['Illidari Training Grounds','Karabor Sewers','Sanctuary of Shadows','Halls of Anguish','Gorefiend\'s Vigil','Den of Mortal Delights','Chamber of Command','Temple Summit'],
|
||
4075: ['Sunwell Plateau','Shrine of the Eclipse'],
|
||
4100: ['Outside Stratholme','Stratholme City'],
|
||
4131: ['Grand Magister\'s Asylum','Observation Grounds'],
|
||
4196: ['The Vestibules of Drak\'Tharon','Drak\'Tharon Overlook'],
|
||
4228: ['Band of Variance','Band of Acceleration','Band of Transmutation','Band of Alignment'],
|
||
4272: ['Unyielding Garrison','Walk of the Makers'],
|
||
4273: ['The Grand Approach','The Antechamber of Ulduar','The Inner Sanctum of Ulduar','The Prison of Yogg-Saron','The Spark of Imagination','The Mind\'s Eye'],
|
||
4277: ['The Brood Pit','Hadronox\'s Lair','The Gilded Gate'],
|
||
4395: ['Dalaran City','The Underbelly'],
|
||
4494: ['Ahn\'Kahet','Level 2'],
|
||
4722: ['Crusaders\' Coliseum','The Icy Depths'],
|
||
4723: ['Crusaders\' Coliseum','The Icy Depths'],
|
||
4812: ['The Lower Citadel','The Rampart of Skulls','Deathbringer\'s Rise','The Frost Queen\'s Lair','The Upper Reaches','Royal Quarters','The Frozen Throne','Frostmourne']
|
||
};
|
||
var g_zone_categories = {
|
||
0:"Eastern Kingdoms",
|
||
1:"Kalimdor",
|
||
8:"Outland",
|
||
10:"Northrend",
|
||
2:"Dungeons",
|
||
3:"Raids",
|
||
6:"Battlegrounds",
|
||
9:"Arenas"
|
||
};
|
||
var g_zone_instancetypes = {
|
||
1:"Transit",
|
||
2:"Dungeon",
|
||
3:"Raid",
|
||
4:"Battleground",
|
||
5:"Dungeon",
|
||
6:"Arena",
|
||
7:"Raid",
|
||
8:"Raid"
|
||
};
|
||
var g_zone_territories = {
|
||
0:"Alliance",
|
||
1:"Horde",
|
||
2:"Contested",
|
||
3:"Sanctuary",
|
||
4:"PvP"
|
||
};
|
||
var g_faction_categories = {
|
||
"0":"Other",
|
||
"469":"Alliance",
|
||
"891":"Alliance Forces",
|
||
"1037":"Alliance Vanguard",
|
||
"1118":"Classic",
|
||
"67":"Horde",
|
||
"1052":"Horde Expedition",
|
||
"892":"Horde Forces",
|
||
"936":"Shattrath City",
|
||
"1117":"Sholazar Basin",
|
||
"169":"Steamwheedle Cartel",
|
||
"980":"The Burning Crusade",
|
||
"1097":"Wrath of the Lich King"
|
||
};
|
||
var g_achievement_categories = {
|
||
"1":"Statistics",
|
||
"21":"Player vs. Player",
|
||
"81":"Feats of Strength",
|
||
"92":"General",
|
||
"95":"Player vs. Player",
|
||
"96":"Quests",
|
||
"97":"Exploration",
|
||
"122":"Deaths",
|
||
"123":"Arenas",
|
||
"124":"Battlegrounds",
|
||
"125":"Dungeons",
|
||
"126":"World",
|
||
"127":"Resurrection",
|
||
"128":"Kills",
|
||
"130":"Character",
|
||
"131":"Social",
|
||
"132":"Skills",
|
||
"133":"Quests",
|
||
"134":"Travel",
|
||
"135":"Creatures",
|
||
"136":"Honorable Kills",
|
||
"137":"Killing Blows",
|
||
"140":"Wealth",
|
||
"141":"Combat",
|
||
"145":"Consumables",
|
||
"147":"Reputation",
|
||
"152":"Rated Arenas",
|
||
"153":"Battlegrounds",
|
||
"154":"World",
|
||
"155":"World Events",
|
||
"156":"Winter Veil",
|
||
"158":"Hallow's End",
|
||
"159":"Noblegarden",
|
||
"160":"Lunar Festival",
|
||
"161":"Midsummer",
|
||
"162":"Brewfest",
|
||
"163":"Children's Week",
|
||
"165":"Arena",
|
||
"168":"Dungeons & Raids",
|
||
"169":"Professions",
|
||
"170":"Cooking",
|
||
"171":"Fishing",
|
||
"172":"First Aid",
|
||
"173":"Professions",
|
||
"178":"Secondary Skills",
|
||
"187":"Love is in the Air",
|
||
"191":"Gear",
|
||
"201":"Reputation",
|
||
"14777":"Eastern Kingdoms",
|
||
"14778":"Kalimdor",
|
||
"14779":"Outland",
|
||
"14780":"Northrend",
|
||
"14801":"Alterac Valley",
|
||
"14802":"Arathi Basin",
|
||
"14803":"Eye of the Storm",
|
||
"14804":"Warsong Gulch",
|
||
"14805":"The Burning Crusade",
|
||
"14806":"Lich King Dungeon",
|
||
"14807":"Dungeons & Raids",
|
||
"14808":"Classic",
|
||
"14821":"Classic",
|
||
"14822":"The Burning Crusade",
|
||
"14823":"Wrath of the Lich King",
|
||
"14861":"Classic",
|
||
"14862":"The Burning Crusade",
|
||
"14863":"Wrath of the Lich King",
|
||
"14864":"Classic",
|
||
"14865":"The Burning Crusade",
|
||
"14866":"Wrath of the Lich King",
|
||
"14881":"Strand of the Ancients",
|
||
"14901":"Wintergrasp",
|
||
"14921":"Lich King Heroic",
|
||
"14922":"Lich King 10-Player Raid",
|
||
"14923":"Lich King 25-Player Raid",
|
||
"14941":"Argent Tournament",
|
||
"14961":"Secrets of Ulduar 10-Player Raid",
|
||
"14962":"Secrets of Ulduar 25-Player Raid",
|
||
"14963":"Secrets of Ulduar",
|
||
"14981":"Pilgrim's Bounty",
|
||
"15001":"Call of the Crusade 10-Player Raid",
|
||
"15002":"Call of the Crusade 25-Player Raid",
|
||
"15003":"Isle of Conquest",
|
||
"15021":"Call of the Crusade",
|
||
"15041":"Fall of the Lich King 10-Player Raid",
|
||
"15042":"Fall of the Lich King 25-Player Raid",
|
||
"15062":"Fall of the Lich King"
|
||
};
|
||
var g_title_categories = {
|
||
0:"General",
|
||
1:"PvP",
|
||
2:"Reputation",
|
||
3:"Dungeons & Raids",
|
||
4:"Quests",
|
||
5:"Professions",
|
||
6:"World Events"
|
||
};
|
||
var g_holiday_categories = {
|
||
1:"Holidays",
|
||
2:"Recurring",
|
||
3:"Player vs. Player",
|
||
0:"Uncategorized"
|
||
};
|
||
var g_user_roles = {
|
||
1:"Tester",
|
||
2:"Administrator",
|
||
3:"Editor",
|
||
4:"Moderator",
|
||
5:"Bureaucrat",
|
||
6:"Developer",
|
||
7:"VIP",
|
||
8:"Blogger",
|
||
9:"Premium",
|
||
10:"Localizer",
|
||
11:"Sales agent",
|
||
12:"Screenshot manager",
|
||
13:"Video manager"
|
||
};
|
||
var g_gem_colors = {
|
||
1:"Meta",
|
||
2:"Red",
|
||
4:"Yellow",
|
||
6:"Orange",
|
||
8:"Blue",
|
||
10:"Purple",
|
||
12:"Green",
|
||
14:"Prismatic"
|
||
};
|
||
var g_socket_names = {
|
||
1:"Meta Socket",
|
||
2:"Red Socket",
|
||
4:"Yellow Socket",
|
||
8:"Blue Socket",
|
||
14:"Prismatic Socket"
|
||
};
|
||
var LANG = {
|
||
and: " and ",
|
||
comma: ", ",
|
||
ellipsis: "…",
|
||
dash: " – ",
|
||
hyphen: "-",
|
||
colon: ": ",
|
||
qty: " ($1)",
|
||
date: "Date",
|
||
date_colon: "Date: ",
|
||
date_on: "on ",
|
||
date_ago: "$1 ago",
|
||
date_at: " at ",
|
||
date_simple: "$2/$1/$3",
|
||
abilities: "Abilities",
|
||
armor: "Armor",
|
||
author: "Author",
|
||
battlegroup: "Battlegroup",
|
||
category: "Category",
|
||
classes: "Classes",
|
||
classs: "Class",
|
||
close: "Close",
|
||
completed: "Completed",
|
||
cost: "Cost",
|
||
count: "Count",
|
||
daily: "Daily",
|
||
weekly: "Weekly",
|
||
damage: "Damage",
|
||
diet: "Diet",
|
||
dps: "DPS",
|
||
earned: "Earned",
|
||
enchant: "Enchant",
|
||
exp: "Exp.",
|
||
faction: "Faction",
|
||
gains: "Gains",
|
||
gems: "Gems",
|
||
gearscore: "Gear",
|
||
glyphtype: "Glyph type",
|
||
group: "Group",
|
||
guild: "Guild",
|
||
guildleader: "Guild Leader",
|
||
guildrank: "Guild Rank",
|
||
health: "Health",
|
||
heroiclevel: "Heroic level",
|
||
icon: "Icon",
|
||
instancetype: "Instance type",
|
||
lastpost: "Last post",
|
||
level: "Level",
|
||
location: "Location",
|
||
losses: "Losses",
|
||
members: "Members",
|
||
money: "Money",
|
||
name: "Name",
|
||
race: "Race",
|
||
races: "Races",
|
||
rankno: "Rank $1",
|
||
rating: "Rating",
|
||
react: "React",
|
||
realm: "Realm",
|
||
reagents: "Reagents",
|
||
region: "Region",
|
||
rep: "Rep.",
|
||
req: "Req. ",
|
||
reputation: "Reputation",
|
||
rewards: "Rewards",
|
||
petfamily: "Pet family",
|
||
pieces: "Pieces",
|
||
points: "Points",
|
||
posted: "Posted",
|
||
preview: "Preview",
|
||
privateprofile: "Private",
|
||
profiler: "Profiler",
|
||
progress: "Progress",
|
||
publicprofile: "Public",
|
||
replies: "Replies",
|
||
report: "Report",
|
||
report_tooltip: "This post needs moderator attention.",
|
||
replyreportwarning_tip: "Are you sure you want to report this reply as inappropriate to the moderators?",
|
||
school: "School",
|
||
score: "Score",
|
||
settings: "Settings",
|
||
side: "Side",
|
||
signout: "Sign Out",
|
||
sockets: "Sockets",
|
||
source: "Source",
|
||
skill: "Skill",
|
||
skin: "Skin",
|
||
slot: "Slot",
|
||
slots: "Slots",
|
||
smartloot: "Smart loot",
|
||
speed: "Speed",
|
||
stack: "Stack",
|
||
standing: "Standing",
|
||
stock: "Stock",
|
||
statistic: "Statistic",
|
||
subject: "Subject",
|
||
submit: "Submit",
|
||
talents: "Talents",
|
||
territory: "Territory",
|
||
tp: "TP",
|
||
type: "Type",
|
||
user: "User",
|
||
views: "Views",
|
||
userpage: "User Page",
|
||
wins: "Wins",
|
||
when: "When",
|
||
today: "today",
|
||
yesterday: "yesterday",
|
||
dayatnoon: "$1 at noon",
|
||
dayatmidnight: "$1 at midnight",
|
||
dayatam: "$1 at $2 AM",
|
||
dayatpm: "$1 at $2 PM",
|
||
male: "Male",
|
||
female: "Female",
|
||
source_zonedrop: "Zone Drop",
|
||
source_quests: "Quests",
|
||
source_vendors: "Vendors",
|
||
infobox_noneyet: "None yet – $1!",
|
||
infobox_submitone: "Submit one",
|
||
infobox_suggestone: "Suggest one",
|
||
infobox_showall: "Show all ($1)",
|
||
lvclass_hero: "Hero class",
|
||
lvcomment_add: "Add your comment",
|
||
lvcomment_sort: "Sort by: ",
|
||
lvcomment_sortdate: "Date",
|
||
lvcomment_sortrating: "Highest rated first",
|
||
lvcomment_patchfilter: "Filter by patch: ",
|
||
lvcomment_by: "By ",
|
||
lvcomment_patch: " (Patch $1)",
|
||
lvcomment_show: "Show comment",
|
||
lvcomment_hide: "Hide comment",
|
||
lvcomment_rating: "Rating: ",
|
||
lvcomment_lastedit: "Last edited by ",
|
||
lvcomment_nedits: "edited $1 times",
|
||
lvcomment_edit: "Edit",
|
||
lvcomment_delete: "Delete",
|
||
lvcomment_detach: "Detach",
|
||
lvcomment_reply: "Reply",
|
||
lvcomment_report: "Report",
|
||
lvcomment_reported: "Reported!",
|
||
lvcomment_deleted: " (Deleted)",
|
||
lvcomment_purged: " (Purged)",
|
||
lvdisabled: "Disabled",
|
||
lvdrop_outof: "out of $1",
|
||
lvitem_dd: " ($1$2)",
|
||
lvitem_normal: "N",
|
||
lvitem_heroic: "H",
|
||
lvitem_raid10: "10",
|
||
lvitem_raid25: "25",
|
||
lvitem_heroicitem: "Heroic",
|
||
lvitem_vendorin: "Vendor in ",
|
||
lvitem_reqlevel: "Req. ",
|
||
lvnpc_alliance: "A",
|
||
lvnpc_horde: "H",
|
||
lvquest_daily: "Daily $1",
|
||
lvquest_weekly: "Weekly $1",
|
||
lvquest_pickone: "Pick one: ",
|
||
lvquest_alsoget: "Also get: ",
|
||
lvquest_xp: "$1 XP",
|
||
lvzone_xman: "$1-player",
|
||
lvzone_xvx: "$1v$2",
|
||
lvpet_exotic: "Exotic",
|
||
lvpage_of: " of ",
|
||
lvpage_first: " First",
|
||
lvpage_previous: " Previous",
|
||
lvpage_next: "Next ",
|
||
lvpage_last: "Last ",
|
||
lvscreenshot_submit: "Submit a screenshot",
|
||
lvscreenshot_from: "From ",
|
||
lvscreenshot_hires: "View",
|
||
lvscreenshot_hires2: " higher resolution version ($1x$2)",
|
||
lvvideo_suggest: "Suggest a video",
|
||
lvvideo_from: "From ",
|
||
lvnodata: "There is no data to display.",
|
||
lvnodata2: "No matches found.",
|
||
lvnodata3: "Please select a category.",
|
||
lvnodata_co1: "No comments have been posted yet.",
|
||
lvnodata_co2: "Be the first to <a>add a comment</a> to this page!",
|
||
lvnodata_co3: "Please <a>sign in</a> to add your comment, or <a>sign up</a> if you don't already have an account.",
|
||
lvnodata_ss1: "No screenshots have been submitted yet.",
|
||
lvnodata_ss2: "Be the first to <a>submit a screenshot</a> for this page!",
|
||
lvnodata_ss3: "Please <a>sign in</a> to submit a screenshot, or <a>sign up</a> if you don't already have an account.",
|
||
lvnodata_vi1: "No videos have been submitted yet.",
|
||
lvnodata_vi2: "Be the first to <a>suggest a video</a> for this page!",
|
||
lvnodata_vi3: "Please <a>sign in</a> to suggest a video, or <a>sign up</a> if you don't already have an account.",
|
||
lvnote_tryfiltering: "Try <a>filtering</a> your results",
|
||
lvnote_trynarrowing: "Try narrowing your search",
|
||
lvnote_upgradesfor: 'Finding upgrades for <a href="?item=$1" class="q$2"><b>$3</b></a>.',
|
||
lvnote_itemsfound: "$1 items found ($2 displayed)",
|
||
lvnote_itemsetsfound: "$1 item sets found ($2 displayed)",
|
||
lvnote_npcsfound: "$1 NPCs found ($2 displayed)",
|
||
lvnote_objectsfound: "$1 objects found ($2 displayed)",
|
||
lvnote_questsfound: "$1 quests found ($2 displayed)",
|
||
lvnote_spellsfound: "$1 spells found ($2 displayed)",
|
||
lvnote_skillsfound: "$1 skills found ($2 displayed)",
|
||
lvnote_abilitiesfound: "$1 abilities found ($2 displayed)",
|
||
lvnote_talentsfound: "$1 talents found ($2 displayed)",
|
||
lvnote_professionfound: "$1 professions found ($2 displayed)",
|
||
lvnote_mountsfound: "$1 mounts found ($2 displayed)",
|
||
lvnote_zonesfound: "$1 zones found ($2 displayed)",
|
||
lvnote_companionsfound: "$1 companions found ($2 displayed)",
|
||
lvnote_factionsfound: "$1 factions found ($2 displayed)",
|
||
lvnote_petsfound: "$1 pets found ($2 displayed)",
|
||
lvnote_achievementsfound: "$1 achievements found ($2 displayed)",
|
||
lvnote_statisticsfound: "$1 statistics found ($2 displayed)",
|
||
lvnote_charactersfound: "$1 total characters",
|
||
lvnote_charactersfound2: "$1 total characters, $2 matching",
|
||
lvnote_guildsfound: "$1 total guilds",
|
||
lvnote_guildsfound2: "$1 total guilds, $2 matching",
|
||
lvnote_arenateamsfound: "$1 total arena teams",
|
||
lvnote_arenateamsfound2: "$1 total arena teams, $2 matching",
|
||
lvnote_createafilter: '<small><a href="$1">Create a filter</a></small>',
|
||
lvnote_filterresults: '<a href="$1">Filter these results</a>',
|
||
lvnote_questgivers: '<small>View <a href="?zone=$1">quest givers</a> in <b>$2</b> <b>|</b> Filter <a href="?items&filter=cr=126;crs=$3;crv=0">quest rewards</a></small>',
|
||
lvnote_allpets: '<small>All pets can learn all of the <a href="?spells=-3.270">passive skills</a></small>',
|
||
lvnote_zonequests: '<small>Browse <a href="?quests=$1.$2">quests</a> in the <b>$3</b> category <b>|</b> Filter <a href="?items&filter=cr=126;crs=$4;crv=0">quest rewards</a></small>',
|
||
lvnote_crafteditems: '<small>Filter <a href="?items&filter=cr=86;crs=$1;crv=0">crafted items</a></small>',
|
||
lvnote_viewmoreslot: '<small>View <a href="?items$1&filter=$2">more results</a> for this slot</small>',
|
||
lvnote_viewmorelevel: 'View <a href="?items$1&filter=$2">more results</a> for this item level',
|
||
lvnote_itemdisenchanting: "This item has been disenchanted $1 times.",
|
||
lvnote_itemdropsinnormalonly: "This item only drops in Normal mode.",
|
||
lvnote_itemdropsinheroiconly: "This item only drops in Heroic mode.",
|
||
lvnote_itemdropsinnormalheroic: "This item drops in both Normal and Heroic modes.",
|
||
lvnote_itemdropsinnormal10only: "This item only drops in Normal 10 mode.",
|
||
lvnote_itemdropsinnormal25only: "This item only drops in Normal 25 mode.",
|
||
lvnote_itemdropsinheroic10only: "This item only drops in Heroic 10 mode.",
|
||
lvnote_itemdropsinheroic25only: "This item only drops in Heroic 25 mode.",
|
||
lvnote_itemmilling: "This herb has been milled $1 times.",
|
||
lvnote_itemopening: "This item has been opened $1 times.",
|
||
lvnote_itemprospecting: "This mineral ore has been prospected $1 times.",
|
||
lvnote_npcdrops: "This NPC has been looted $1 times.",
|
||
lvnote_npcdropsnormal: "This NPC has been looted $1 times in Normal mode.",
|
||
lvnote_npcdropsheroic: "This NPC has been looted $1 times in Heroic mode.",
|
||
lvnote_npcdropsnormalX: "This NPC has been looted $1 times in Normal $2 mode.",
|
||
lvnote_npcdropsheroicX: "This NPC has been looted $1 times in Heroic $2 mode.",
|
||
lvnote_npcherbgathering: "This NPC has been skinned with Herbalism $1 times.",
|
||
lvnote_npcmining: "This NPC has been skinned with Mining $1 times.",
|
||
lvnote_npcpickpocketing: "This NPC has been pickpocketed $1 times.",
|
||
lvnote_npcskinning: "This NPC has been skinned $1 times.",
|
||
lvnote_objectherbgathering: "This herb has been gathered $1 times.",
|
||
lvnote_objectmining: "This mineral vein has been mined $1 times.",
|
||
lvnote_objectopening: "This object has been opened $1 times.",
|
||
lvnote_objectopeningnormal: "This object has been opened $1 times in Normal mode.",
|
||
lvnote_objectopeningheroic: "This object has been opened $1 times in Heroic mode.",
|
||
lvnote_objectopeningnormalX: "This object has been opened $1 times in Normal $2 mode.",
|
||
lvnote_objectopeningheroicX: "This object has been opened $1 times in Heroic $2 mode.",
|
||
lvnote_zonefishing: "Waters in this zone have been fished $1 times.",
|
||
lvnote_achieveevent: 'View <a href="?event=$1">event page</a> for <b>$2</b>',
|
||
lvnote_usercomments: "This user has posted a total of $1 comments.",
|
||
lvnote_userscreenshots: "This user has submitted a total of $1 screenshots.",
|
||
lvnote_uservideos: "This user has submitted a total of $1 videos.",
|
||
lvnote_usertopics: "This user has posted a total of $1 topics.",
|
||
lvnote_userreplies: "This user has posted a total of $1 replies.",
|
||
button_compare: "Compare",
|
||
button_delete: "Delete",
|
||
button_deselect: "Deselect",
|
||
button_edit: "Edit",
|
||
button_equip: "Equip",
|
||
button_exclude: "Exclude",
|
||
button_include: "Include",
|
||
button_lmwhtfy: "LMWHTFY",
|
||
button_makepriv: "Make private",
|
||
button_makepub: "Make public",
|
||
button_new: "New",
|
||
button_quickexclude: "Manage Excludes",
|
||
button_remove: "Remove",
|
||
button_resync: "Resync",
|
||
button_selectall: "Select all",
|
||
button_viewin3d: "View in 3D",
|
||
dialog_cantdisplay: "Note: Some of the items you selected were ignored. Select them individually to display them in 3D.",
|
||
dialog_compare: "Item Comparison",
|
||
dialog_image: "Image",
|
||
dialog_imagedetails: "Image Details",
|
||
dialog_imagename: "Name: ",
|
||
dialog_imageselector: "Image Selection",
|
||
dialog_losechanges: "You are viewing an Armory character. Any changes you make will be lost unless you save this character as a custom profile.",
|
||
dialog_nosaveandview: "View without saving",
|
||
dialog_saveandview: "Save and view now",
|
||
dialog_saveforlater: "Save for later",
|
||
dialog_selecteditem: "<b>$1</b> item has been selected.",
|
||
dialog_selecteditems: "<b>$1</b> items have been selected.",
|
||
dialog_seeallusingicon: "See all $1, $2, or $3 using this icon.",
|
||
dialog_ok: "OK",
|
||
dialog_cancel: "Cancel",
|
||
dialog_original: "Original",
|
||
message_ajaxnotsupported: "Please upgrade to a modern browser (such as Firefox) that supports 'Ajax' requests.",
|
||
message_cantdeletecomment: "This comment has been automatically purged due to a negative rating. It cannot be deleted.",
|
||
message_cantdetachcomment: "This comment has already been detached.",
|
||
message_codenotentered: "You did not enter the code.",
|
||
message_commentdetached: "This comment is now detached.",
|
||
message_commenttooshort: "Your comment must be at least 10 characters long.\n\nPlease elaborate a little.",
|
||
message_descriptiontooshort: "Your description must be at least 10 characters long.\n\nPlease elaborate a little.",
|
||
message_emailnotvalid: "That email address is not valid.",
|
||
message_entercurrpass: "Please enter your current password.",
|
||
message_enteremailorpass: "You must enter your new email address or password!",
|
||
message_enteremail: "Please enter your email address.",
|
||
message_enternewemail: "Please enter your new email address.",
|
||
message_enternewpass: "Please enter your new password.",
|
||
message_enterpassword: "Please enter your password.",
|
||
message_enterusername: "Please enter your username.",
|
||
message_forumposttooshort: "Your post is empty!",
|
||
message_invalidfilter: "Invalid filter.",
|
||
message_invalidname: "Image name is invalid. Must be alphanumeric, 20 characters max, and start with a letter.",
|
||
message_newemaildifferent: "Your new email address must be different than your previous one.",
|
||
message_newpassdifferent: "Your new password must be different than your previous one.",
|
||
message_noscreenshot: "Please select the screenshot to upload.",
|
||
message_novideo: "Please enter valid video information.",
|
||
message_nothingtoviewin3d: "No items were selected that can be viewed in 3D.",
|
||
message_passwordmin: "Your password must be at least 6 characters long.",
|
||
message_passwordsdonotmatch: "Passwords do not match.",
|
||
message_savebeforeexit: "You will lose any unsaved changes you have made.",
|
||
message_startedpost: "You have started to write a message.",
|
||
message_sharetheurlbelow: "Share the URL below: ",
|
||
message_usernamemin: "Your username must be at least 4 characters long.",
|
||
message_usernamenotvalid: "Your username can only contain letters and numbers.",
|
||
confirm_addtosaved: "Add to your saved comparison?",
|
||
confirm_commenttoolong: "Your comment is longer than $1 characters and will be truncated after: \n\n$2\n\nDo you want to proceed anyway?",
|
||
confirm_deletecomment: "Are you sure that you want to delete this comment?",
|
||
confirm_descriptiontoolong: "Your description is longer than $1 characters and will be truncated after: \n\n$2\n\nDo you want to proceed anyway?",
|
||
confirm_detachcomment: "Are you sure that you want to make this comment a standalone one?",
|
||
confirm_forumposttoolong: "Your post is longer than $1 characters and will be truncated after: \n\n$2\n\nDo you want to proceed anyway?",
|
||
confirm_report2: "Are you sure that you want to report this post as $1?",
|
||
confirm_report3: "Are you sure that you want to report this user's avatar as vulgar/inappropriate?",
|
||
confirm_report4: "Are you sure that you want to report this image as vulgar/inappropriate?",
|
||
confirm_report: "Are you sure that you want to report this comment as $1?",
|
||
confirm_signaturetoolong: "Your signature is longer than $1 characters and will be truncated after: \n\n$2\n\nDo you want to proceed anyway?",
|
||
confirm_signaturetoomanylines: "Your signature contains more than $1 lines and will be truncated.\n\nDo you want to proceed anyway?",
|
||
prompt_colfilter1: "You may set a filter for the $1 column: \n\n",
|
||
prompt_colfilter2: 'e.g. "sword"',
|
||
prompt_colfilter3: 'e.g. ">100", "32-34" or "!<=10"',
|
||
prompt_customrating: "Please enter a rating value between -$1 and $2: ",
|
||
prompt_details: "Please provide details below: ",
|
||
prompt_gotopage: "Please enter the page number you wish to go to ($1-$2): ",
|
||
prompt_ingamelink: "Copy/paste the following to your in-game chat window: ",
|
||
prompt_linkurl: "Please enter the URL of your link: ",
|
||
prompt_ratinglevel: "Please enter the level used in the calculation ($1-$2): ",
|
||
genericerror: "An error has occurred; refresh the page and try again. If the error persists email feedback@wowhead.com",
|
||
tooltip_achievementcomplete: "Achievement earned by $1 on $2/$3/$4",
|
||
tooltip_achievementnotfound: "Achievement not found : (",
|
||
tooltip_achievementpoints: "Achievement points",
|
||
tooltip_allianceonly: "Alliance only",
|
||
tooltip_arenapoints: "Arena Points",
|
||
tooltip_armorbonus: "Has $1 bonus armor.",
|
||
tooltip_avgmoneycontained: "Average money contained",
|
||
tooltip_avgmoneydropped: "Average money dropped",
|
||
tooltip_banned_rating: "You have been banned from rating comments.",
|
||
tooltip_buyoutprice: "Average buyout price (AH)",
|
||
tooltip_changelevel2: "Drag to change level",
|
||
tooltip_changelevel: "Click to change level",
|
||
tooltip_colfilter1: "Filter: $1",
|
||
tooltip_colfilter2: "Inverted filter: $1",
|
||
tooltip_combatrating: "$1 @ L$2",
|
||
tooltip_consumedonuse: "Consumed when used",
|
||
tooltip_customrating: "Custom rating",
|
||
tooltip_dailyquest: "You may complete up to<br />25 daily quests per day.",
|
||
tooltip_downrate: "Poor/redundant",
|
||
tooltip_extendedachievementsearch: "Check this option to search in the<br />description as well.",
|
||
tooltip_extendednpcsearch: "Check this option to search in the<br /><tag> as well.",
|
||
tooltip_extendedquestsearch: "Check this option to search in the<br />objectives and description as well.",
|
||
tooltip_extendedspellsearch: "Check this option to search in the<br />description and buff as well.",
|
||
tooltip_flight: "Flight",
|
||
tooltip_gotopage: "Click to go to a specific page",
|
||
tooltip_ground: "Ground",
|
||
tooltip_heroclass: "Players who have a character of at least level<br />55 on the account they play are able to create<br />a new level-55 hero class character.",
|
||
tooltip_heroicmodeavailable: "Heroic mode available",
|
||
tooltip_honorpoints: "Honor Points",
|
||
tooltip_hordeonly: "Horde only",
|
||
tooltip_autores: "When you release your spirit after death,<br />you will resurrect automatically without having<br />to go back to your corpse.",
|
||
tooltip_itemnotfound: "Item not found : (",
|
||
tooltip_loading: "Loading...",
|
||
tooltip_lmwhtfy: '<b class="q">LMWHTFY</b><br />Get a LMWHTFY.com link to this search.',
|
||
tooltip_lvheader1: "Click to sort",
|
||
tooltip_lvheader2: "Right-click to filter",
|
||
tooltip_lvheader3: "Shift-click to filter",
|
||
tooltip_noresponse: "No response from server : (",
|
||
tooltip_normal: "Normal",
|
||
tooltip_notconsumedonuse: "Not consumed when used",
|
||
tooltip_npcnotfound: "NPC not found : (",
|
||
tooltip_objectnotfound: "Object not found : (",
|
||
tooltip_partyloot: "When this item drops, each<br />member of the group can loot one.",
|
||
tooltip_pending: "Pending",
|
||
tooltip_questnotfound: "Quest not found : (",
|
||
tooltip_refundable: "May be returned for a refund at a vendor<br />if within two hours after the purchase.",
|
||
tooltip_repgain: "Reputation gain",
|
||
tooltip_reqenchanting: "Required Enchanting skill",
|
||
tooltip_reqinscription: "Required Inscription skill",
|
||
tooltip_reqjewelcrafting: "Required Jewelcrafting skill",
|
||
tooltip_reqlevel: "Required level",
|
||
tooltip_reqlockpicking: "Required Lockpicking skill",
|
||
tooltip_smartloot: "Only available to players who have<br />the profession and don't already<br />have the recipe.",
|
||
tooltip_realduration: "The item's duration is real time, not play time.<br />It will keep ticking while logged off.",
|
||
tooltip_cannotrollneed: "You cannot roll Need on this item.",
|
||
tooltip_spellnotfound: "Spell not found : (",
|
||
tooltip_statweighting: '<b class="q1">Stat Weighting</b><br />\nFind the best items for your class/spec.',
|
||
tooltip_sticky: "Sticky",
|
||
tooltip_totaldatauploads: "Total size of all their data uploads",
|
||
tooltip_totalratings: "Sum of all the comment ratings received",
|
||
tooltip_trainingpoints: "Training points",
|
||
tooltip_uprate: "Insightful/funny",
|
||
tooltip_zonelink: "Clicking on this link will<br />take you to the zone page.",
|
||
tab_abilities: "Abilities",
|
||
tab_achievements: "Achievements",
|
||
tab_addyourcomment: "Add your comment",
|
||
tab_armorproficiencies: "Armor Proficiency",
|
||
tab_article: "Article",
|
||
tab_articles: "Articles",
|
||
tab_bosses: "Bosses",
|
||
tab_canbeplacedin: "Can be placed in",
|
||
tab_cancontain: "Can contain",
|
||
tab_characters: "Characters",
|
||
tab_classes: "Classes",
|
||
tab_comments: "Comments",
|
||
tab_companions: "Companions",
|
||
tab_containedin: "Contained in",
|
||
tab_contains: "Contains",
|
||
tab_crafteditems: "Crafted items",
|
||
tab_createdby: "Created by",
|
||
tab_criteriaof: "Criteria of",
|
||
tab_currencyfor: "Currency for",
|
||
tab_disenchantedfrom: "Disenchanted from",
|
||
tab_disenchanting: "Disenchanting",
|
||
tab_droppedby: "Dropped by",
|
||
tab_creates: "Creates",
|
||
tab_drops: "Drops",
|
||
tab_ends: "Ends",
|
||
tab_factions: "Factions",
|
||
tab_fishedin: "Fished in",
|
||
tab_fishing: "Fishing",
|
||
tab_gallery: "Gallery",
|
||
tab_gatheredfrom: "Gathered from",
|
||
tab_gatheredfromnpc: "Gathered from NPC",
|
||
tab_herbalism: "Herbalism",
|
||
tab_heroicdrops: "Heroic drops",
|
||
tab_heroicXdrops: "Heroic $1 drops",
|
||
tab_heroic: "Heroic",
|
||
tab_heroicX: "Heroic $1",
|
||
tab_holidays: "World Events",
|
||
tab_info: "Info",
|
||
tab_items: "Items",
|
||
tab_itemsets: "Item sets",
|
||
tab_languages: "Languages",
|
||
tab_latestcomments: "Latest Comments",
|
||
tab_latestreplies: "Latest Replies",
|
||
tab_latestscreenshots: "Latest Screenshots",
|
||
tab_latestvideos: "Latest Videos",
|
||
tab_latesttopics: "Latest Topics",
|
||
tab_members: "Members",
|
||
tab_milledfrom: "Milled from",
|
||
tab_milling: "Milling",
|
||
tab_minedfrom: "Mined from",
|
||
tab_minedfromnpc: "Mined from NPC",
|
||
tab_mining: "Mining",
|
||
tab_modifiedby: "Modified by",
|
||
tab_modifies: "Modifies",
|
||
tab_mounts: "Mounts",
|
||
tab_normaldrops: "Normal drops",
|
||
tab_normalXdrops: "Normal $1 drops",
|
||
tab_normal: "Normal",
|
||
tab_normalX: "Normal $1",
|
||
tab_npcs: "NPCs",
|
||
tab_npcabilities: "NPC abilities",
|
||
tab_objectiveof: "Objective of",
|
||
tab_objects: "Objects",
|
||
tab_pets: "Hunter Pets",
|
||
tab_pickpocketedfrom: "Pickpocketed from",
|
||
tab_pickpocketing: "Pickpocketing",
|
||
tab_professions: "Professions",
|
||
tab_profiles: "Profiles",
|
||
tab_prospectedfrom: "Prospected from",
|
||
tab_prospecting: "Prospecting",
|
||
tab_providedfor: "Provided for",
|
||
tab_questrewards: "Quest rewards",
|
||
tab_quests: "Quests",
|
||
tab_races: "Races",
|
||
tab_racials: "Racial traits",
|
||
tab_reagentfor: "Reagent for",
|
||
tab_recipes: "Recipes",
|
||
tab_recipeitems: "Recipe items",
|
||
tab_replies: "Replies",
|
||
tab_requiredby: "Required by",
|
||
tab_rewardfrom: "Reward from",
|
||
tab_samemodelas: "Same model as",
|
||
tab_screenshots: "Screenshots",
|
||
tab_seealso: "See also",
|
||
tab_sells: "Sells",
|
||
tab_sharedcooldown: "Shared cooldown",
|
||
tab_skills: "Skills",
|
||
tab_skinnedfrom: "Skinned from",
|
||
tab_skinning: "Skinning",
|
||
tab_soldby: "Sold by",
|
||
tab_spells: "Spells",
|
||
tab_starts: "Starts",
|
||
tab_startsquest: "Starts quest",
|
||
tab_submitascreenshot: "Submit a screenshot",
|
||
tab_suggestavideo: "Suggest a video",
|
||
tab_summonedby: "Summoned by",
|
||
tab_statistics: "Statistics",
|
||
tab_talents: "Talents",
|
||
tab_tameable: "Tameable",
|
||
tab_taughtby: "Taught by",
|
||
tab_teaches: "Teaches",
|
||
tab_titles: "Titles",
|
||
tab_toolfor: "Tool for",
|
||
tab_topics: "Topics",
|
||
tab_trainers: "Trainers",
|
||
tab_triggeredby: "Triggered by",
|
||
tab_uncategorizedspells: "Uncategorized spells",
|
||
tab_unlocks: "Unlocks",
|
||
tab_usedby: "Used by",
|
||
tab_videos: "Videos",
|
||
tab_weaponskills: "Weapon Skills",
|
||
tab_world: "World",
|
||
tab_zones: "Zones",
|
||
menu_browse: "Browse",
|
||
mapper_tipzoom: "Tip: Click map to zoom",
|
||
mapper_tippin: "Tip: Click map to add/remove pins",
|
||
mapper_hidepins: "Hide pins",
|
||
mapper_showpins: "Show pins",
|
||
mapper_floor: "Change floor...",
|
||
showonmap: "Show on map...",
|
||
som_questgivers: "Quest givers",
|
||
markup_b: "Bold",
|
||
markup_i: "Italic",
|
||
markup_u: "Underline",
|
||
markup_s: "Strikethrough",
|
||
markup_small: "Small text",
|
||
markup_url: "Link",
|
||
markup_quote: "Quote box",
|
||
markup_code: "Code box",
|
||
markup_ul: "Unordered list (bullets)",
|
||
markup_ol: "Ordered list (numbers)",
|
||
markup_li: "List item",
|
||
markup_img: "Image",
|
||
markup_said: "said: ",
|
||
markup_toc: "Table of Contents",
|
||
markup_links: "Links",
|
||
markup_prompt: "Please enter the ID of the $1.",
|
||
markup_helpdoc: 'You can also add database links and have the name and info entered automatically.<br />For more information, please see our <a href="?help=wowhead-markup">markup help document</a>.',
|
||
markup_help1: "You type: ",
|
||
markup_help2: "You see: ",
|
||
ct_dialog_captcha: "Please enter the code above: ",
|
||
ct_dialog_contactwowhead: "Contact Wowhead",
|
||
ct_dialog_description: "Description",
|
||
ct_dialog_desc_caption: "Please be as specific as possible.",
|
||
ct_dialog_email: "Email address: ",
|
||
ct_dialog_email_caption: "Only if you want to be contacted.",
|
||
ct_dialog_optional: "Optional",
|
||
ct_dialog_reason: "Reason: ",
|
||
ct_dialog_relatedurl: "Related URL: ",
|
||
ct_dialog_currenturl: "Current URL: ",
|
||
ct_dialog_report: "Report",
|
||
ct_dialog_reportchar: "Report Character",
|
||
ct_dialog_reportcomment: "Report Comment by $1",
|
||
ct_dialog_reportpost: "Report Post by $1",
|
||
ct_dialog_reportscreen: "Report Screenshot from $1",
|
||
ct_dialog_reportvideo: "Report Video from $1",
|
||
ct_dialog_reporttopic: "Report Topic by $1",
|
||
ct_dialog_thanks: "Your message has been received. Thanks for contacting us!",
|
||
ct_dialog_thanks_user: "Your message has been received, $1. Thanks for contacting us!",
|
||
ct_dialog_noemailwarning: "<b>Important: </b> If you don't enter an email address, we won't be able to follow up on your feedback. We never sell or give away your email address.",
|
||
ct_dialog_error_captcha: "The CAPTCHA you entered is invalid. Please try again.",
|
||
ct_dialog_error_desc: "Please provide a thorough description, but not too long.",
|
||
ct_dialog_error_email: "Please enter a valid email address.",
|
||
ct_dialog_error_emaillen: "Please enter an email address with less than 100 characters.",
|
||
ct_dialog_error_reason: "Please choose a reason for contacting us.",
|
||
ct_dialog_error_relatedurl: "Please provide a related URL with less than 250 characters.",
|
||
ct_dialog_error_invalidurl: "Please enter a valid URL.",
|
||
ct_resp_error1: "The CAPTCHA you entered is invalid. Please try again.",
|
||
ct_resp_error2: "Please provide a thorough description, but not too long.",
|
||
ct_resp_error3: "Please choose a reason for contacting us.",
|
||
ct_resp_error7: "You've already reported this.",
|
||
compose_mode: "Mode: ",
|
||
compose_edit: "Edit",
|
||
compose_preview: "Preview",
|
||
compose_livepreview: "Live Preview",
|
||
compose_save: "Save",
|
||
compose_cancel: "Cancel",
|
||
compose_limit: "Up to $1 characters.",
|
||
compose_limit2: "Up to $1 characters and/or $2 lines.",
|
||
compose_remaining: "$1 characters remaining.",
|
||
user_nodescription: "This user hasn't composed a public description yet.",
|
||
user_nodescription2: "You haven't composed one yet.",
|
||
user_composeone: "Compose one now!",
|
||
user_editdescription: "Edit",
|
||
myaccount_passmatch: "Passwords match",
|
||
myaccount_passdontmatch: "Passwords do not match",
|
||
myaccount_purged: "Purged",
|
||
myaccount_purgefailed: "Purge failed : (",
|
||
myaccount_purgesuccess: "Announcement data has been successfully purged!",
|
||
types: {
|
||
1: ["NPC", "NPC", "NPCs", "NPCs"],
|
||
2: ["Object", "object", "Objects", "objects"],
|
||
3: ["Item", "item", "Items", "items"],
|
||
4: ["Item Set", "item set", "Item Sets", "item sets"],
|
||
5: ["Quest", "quest", "Quests", "quests"],
|
||
6: ["Spell", "spell", "Spells", "spells"],
|
||
7: ["Zone", "zone", "Zones", "zones"],
|
||
8: ["Faction", "faction", "Factions", "factions"],
|
||
9: ["Pet", "pet", "Pets", "pets"],
|
||
10: ["Achievement", "achievement", "Achievements", "achievements"],
|
||
11: ["Title", "title", "Titles", "titles"],
|
||
12: ["World Event", "world event", "World Events", "world events"],
|
||
13: ["Class", "class", "Classes", "classes"],
|
||
14: ["Race", "race", "Races", "races"],
|
||
15: ["Skill", "skill", "Skills", "skills"],
|
||
16: ["Statistic", "statistic", "Statistics", "statistics"]
|
||
},
|
||
timeunitssg: ["year", "month", "week", "day", "hour", "minute", "second"],
|
||
timeunitspl: ["years", "months", "weeks", "days", "hours", "minutes", "seconds"],
|
||
timeunitsab: ["yr", "mo", "wk", "day", "hr", "min", "sec"],
|
||
fishow: "Create a filter",
|
||
fihide: "Hide filter options",
|
||
fiany: "Any",
|
||
finone: "None",
|
||
firemove: "remove",
|
||
ficlear: "clear",
|
||
fishowdetails: "show details",
|
||
fihidedetails: "hide details",
|
||
message_fillsomecriteria: "Please fill in some criteria.",
|
||
tooltip_jconlygems: "If checked, jewelcrafter-only gems<br />\nwill also be used to determine the best<br />\npossible gems for an item's weighted score.",
|
||
fidropdowns: {
|
||
yn: [[1, "Yes"], [2, "No"]],
|
||
num: [[1, ">"], [2, ">="], [3, "="], [4, "<="], [5, "<"]],
|
||
side: [[1, "Yes"], [2, "Alliance"], [3, "Horde"], [4, "Both"], [5, "No"]],
|
||
faction: [[1037, "Alliance Vanguard"], [1106, "Argent Crusade"], [529, "Argent Dawn"], [1012, "Ashtongue Deathsworn"], [87, "Bloodsail Buccaneers"], [21, "Booty Bay"], [910, "Brood of Nozdormu"], [609, "Cenarion Circle"], [942, "Cenarion Expedition"], [909, "Darkmoon Faire"], [530, "Darkspear Trolls"], [69, "Darnassus"], [577, "Everlook"], [930, "Exodar"], [1068, "Explorers' League"], [1104, "Frenzyheart Tribe"], [729, "Frostwolf Clan"], [369, "Gadgetzan"], [92, "Gelkis Clan Centaur"], [54, "Gnomeregan Exiles"], [946, "Honor Hold"], [1052, "Horde Expedition"], [749, "Hydraxian Waterlords"], [47, "Ironforge"], [989, "Keepers of Time"], [1090, "Kirin Tor"], [1098, "Knights of the Ebon Blade"], [978, "Kurenai"], [1011, "Lower City"], [93, "Magram Clan Centaur"], [1015, "Netherwing"], [1038, "Ogri'la"], [76, "Orgrimmar"], [470, "Ratchet"], [349, "Ravenholdt"], [1031, "Sha'tari Skyguard"], [1077, "Shattered Sun Offensive"], [809, "Shen'dralar"], [911, "Silvermoon City"], [890, "Silverwing Sentinels"], [970, "Sporeggar"], [730, "Stormpike Guard"], [72, "Stormwind"], [70, "Syndicate"], [932, "The Aldor"], [1156, "The Ashen Verdict"], [933, "The Consortium"], [510, "The Defilers"], [1126, "The Frostborn"], [1067, "The Hand of Vengeance"], [1073, "The Kalu'ak"], [509, "The League of Arathor"], [941, "The Mag'har"], [1105, "The Oracles"], [990, "The Scale of the Sands"], [934, "The Scryers"], [935, "The Sha'tar"], [1094, "The Silver Covenant"], [1119, "The Sons of Hodir"], [1124, "The Sunreavers"], [1064, "The Taunka"], [967, "The Violet Eye"], [1091, "The Wyrmrest Accord"], [59, "Thorium Brotherhood"], [947, "Thrallmar"], [81, "Thunder Bluff"], [576, "Timbermaw Hold"], [922, "Tranquillien"], [68, "Undercity"], [1050, "Valiance Expedition"], [1085, "Warsong Offensive"], [889, "Warsong Outriders"], [589, "Wintersaber Trainers"], [270, "Zandalar Tribe"]],
|
||
// alt faction: [[469, "Alliance"], [1037, "Alliance Vanguard"], [1106, "Argent Crusade"], [529, "Argent Dawn"], [1012, "Ashtongue Deathsworn"], [87, "Bloodsail Buccaneers"], [21, "Booty Bay"], [910, "Brood of Nozdormu"], [609, "Cenarion Circle"], [942, "Cenarion Expedition"], [909, "Darkmoon Faire"], [530, "Darkspear Trolls"], [69, "Darnassus"], [577, "Everlook"], [930, "Exodar"], [1068, "Explorers' League"], [1104, "Frenzyheart Tribe"], [729, "Frostwolf Clan"], [369, "Gadgetzan"], [92, "Gelkis Clan Centaur"], [54, "Gnomeregan Exiles"], [946, "Honor Hold"], [67, "Horde"], [1052, "Horde Expedition"], [749, "Hydraxian Waterlords"], [47, "Ironforge"], [989, "Keepers of Time"], [1090, "Kirin Tor"], [1098, "Knights of the Ebon Blade"], [978, "Kurenai"], [1011, "Lower City"], [93, "Magram Clan Centaur"], [1015, "Netherwing"], [1038, "Ogri'la"], [76, "Orgrimmar"], [470, "Ratchet"], [349, "Ravenholdt"], [1031, "Sha'tari Skyguard"], [1077, "Shattered Sun Offensive"], [809, "Shen'dralar"], [911, "Silvermoon City"], [890, "Silverwing Sentinels"], [970, "Sporeggar"], [169, "Steamwheedle Cartel"], [730, "Stormpike Guard"], [72, "Stormwind"], [70, "Syndicate"], [932, "The Aldor"], [1156, "The Ashen Verdict"], [933, "The Consortium"], [510, "The Defilers"], [1126, "The Frostborn"], [1067, "The Hand of Vengeance"], [1073, "The Kalu'ak"], [509, "The League of Arathor"], [941, "The Mag'har"], [1105, "The Oracles"], [990, "The Scale of the Sands"], [934, "The Scryers"], [935, "The Sha'tar"], [1094, "The Silver Covenant"], [1119, "The Sons of Hodir"], [1124, "The Sunreavers"], [1064, "The Taunka"], [967, "The Violet Eye"], [1091, "The Wyrmrest Accord"], [59, "Thorium Brotherhood"], [947, "Thrallmar"], [81, "Thunder Bluff"], [576, "Timbermaw Hold"], [922, "Tranquillien"], [68, "Undercity"], [1050, "Valiance Expedition"], [1085, "Warsong Offensive"], [889, "Warsong Outriders"], [589, "Wintersaber Trainers"], [270, "Zandalar Tribe"]],
|
||
zone: [[4494, "Ahn'kahet: The Old Kingdom"], [36, "Alterac Mountains"], [2597, "Alterac Valley"], [3358, "Arathi Basin"], [45, "Arathi Highlands"], [331, "Ashenvale"], [3790, "Auchenai Crypts"], [4277, "Azjol-Nerub"], [16, "Azshara"], [3524, "Azuremyst Isle"], [3, "Badlands"], [3959, "Black Temple"], [719, "Blackfathom Deeps"], [1584, "Blackrock Depths"], [25, "Blackrock Mountain"], [1583, "Blackrock Spire"], [2677, "Blackwing Lair"], [3522, "Blade's Edge Mountains"], [4, "Blasted Lands"], [3525, "Bloodmyst Isle"], [3537, "Borean Tundra"], [46, "Burning Steppes"], [2918, "Champions' Hall"], [2817, "Crystalsong Forest"], [4395, "Dalaran"], [4378, "Dalaran Sewers"], [148, "Darkshore"], [1657, "Darnassus"], [41, "Deadwind Pass"], [2257, "Deeprun Tram"], [405, "Desolace"], [2557, "Dire Maul"], [65, "Dragonblight"], [4196, "Drak'Tharon Keep"], [1, "Dun Morogh"], [14, "Durotar"], [10, "Duskwood"], [15, "Dustwallow Marsh"], [139, "Eastern Plaguelands"], [12, "Elwynn Forest"], [3430, "Eversong Woods"], [3820, "Eye of the Storm"], [361, "Felwood"], [357, "Feralas"], [3433, "Ghostlands"], [133, "Gnomeregan"], [394, "Grizzly Hills"], [3618, "Gruul's Lair"], [4416, "Gundrak"], [2917, "Hall of Legends"], [4272, "Halls of Lightning"], [4820, "Halls of Reflection"], [4264, "Halls of Stone"], [3483, "Hellfire Peninsula"], [3562, "Hellfire Ramparts"], [267, "Hillsbrad Foothills"], [495, "Howling Fjord"], [4742, "Hrothgar's Landing"], [3606, "Hyjal Summit"], [210, "Icecrown"], [4812, "Icecrown Citadel"], [1537, "Ironforge"], [4710, "Isle of Conquest"], [4080, "Isle of Quel'Danas"], [2562, "Karazhan"], [38, "Loch Modan"], [4095, "Magisters' Terrace"], [3836, "Magtheridon's Lair"], [3792, "Mana-Tombs"], [2100, "Maraudon"], [2717, "Molten Core"], [493, "Moonglade"], [215, "Mulgore"], [3518, "Nagrand"], [3456, "Naxxramas"], [3523, "Netherstorm"], [2367, "Old Hillsbrad Foothills"], [2159, "Onyxia's Lair"], [1637, "Orgrimmar"], [4813, "Pit of Saron"], [2437, "Ragefire Chasm"], [722, "Razorfen Downs"], [491, "Razorfen Kraul"], [44, "Redridge Mountains"], [3429, "Ruins of Ahn'Qiraj"], [3968, "Ruins of Lordaeron"], [796, "Scarlet Monastery"], [2057, "Scholomance"], [51, "Searing Gorge"], [3607, "Serpentshrine Cavern"], [3791, "Sethekk Halls"], [3789, "Shadow Labyrinth"], [209, "Shadowfang Keep"], [3520, "Shadowmoon Valley"], [3703, "Shattrath City"], [3711, "Sholazar Basin"], [1377, "Silithus"], [3487, "Silvermoon City"], [130, "Silverpine Forest"], [406, "Stonetalon Mountains"], [1519, "Stormwind City"], [4384, "Strand of the Ancients"], [33, "Stranglethorn Vale"], [2017, "Stratholme"], [1477, "Sunken Temple"], [4075, "Sunwell Plateau"], [8, "Swamp of Sorrows"], [440, "Tanaris"], [141, "Teldrassil"], [3428, "Temple of Ahn'Qiraj"], [3519, "Terokkar Forest"], [3848, "The Arcatraz"], [17, "The Barrens"], [2366, "The Black Morass"], [3713, "The Blood Furnace"], [3847, "The Botanica"], [3702, "The Circle of Blood"], [4100, "The Culling of Stratholme"], [1581, "The Deadmines"], [3557, "The Exodar"], [3842, "The Eye"], [4500, "The Eye of Eternity"], [4809, "The Forge of Souls"], [47, "The Hinterlands"], [3849, "The Mechanar"], [4120, "The Nexus"], [4493, "The Obsidian Sanctum"], [4228, "The Oculus"], [3698, "The Ring of Trials"], [4406, "The Ring of Valor"], [4298, "The Scarlet Enclave"], [3714, "The Shattered Halls"], [3717, "The Slave Pens"], [3715, "The Steamvault"], [717, "The Stockade"], [67, "The Storm Peaks"], [3716, "The Underbog"], [457, "The Veiled Sea"], [4415, "The Violet Hold"], [400, "Thousand Needles"], [1638, "Thunder Bluff"], [85, "Tirisfal Glades"], [4723, "Trial of the Champion"], [4722, "Trial of the Crusader"], [1337, "Uldaman"], [4273, "Ulduar"], [490, "Un'Goro Crater"], [1497, "Undercity"], [206, "Utgarde Keep"], [1196, "Utgarde Pinnacle"], [4603, "Vault of Archavon"], [718, "Wailing Caverns"], [3277, "Warsong Gulch"], [28, "Western Plaguelands"], [40, "Westfall"], [11, "Wetlands"], [4197, "Wintergrasp"], [618, "Winterspring"], [3521, "Zangarmarsh"], [3805, "Zul'Aman"], [66, "Zul'Drak"], [978, "Zul'Farrak"], [19, "Zul'Gurub"]],
|
||
// alt zone: [[4494, "Ahn'kahet: The Old Kingdom"], [36, "Alterac Mountains"], [2597, "Alterac Valley"], [3358, "Arathi Basin"], [45, "Arathi Highlands"], [331, "Ashenvale"], [3790, "Auchenai Crypts"], [4277, "Azjol-Nerub"], [16, "Azshara"], [3524, "Azuremyst Isle"], [3, "Badlands"], [3959, "Black Temple"], [719, "Blackfathom Deeps"], [1584, "Blackrock Depths"], [25, "Blackrock Mountain"], [1583, "Blackrock Spire"], [2677, "Blackwing Lair"], [3702, "Blade's Edge Arena"], [3522, "Blade's Edge Mountains"], [4, "Blasted Lands"], [3525, "Bloodmyst Isle"], [3537, "Borean Tundra"], [46, "Burning Steppes"], [1941, "Caverns of Time"], [3905, "Coilfang Reservoir"], [4024, "Coldarra"], [2817, "Crystalsong Forest"], [4395, "Dalaran"], [4378, "Dalaran Arena"], [279, "Dalaran Crater"], [148, "Darkshore"], [393, "Darkspear Strand"], [1657, "Darnassus"], [41, "Deadwind Pass"], [2257, "Deeprun Tram"], [405, "Desolace"], [2557, "Dire Maul"], [65, "Dragonblight"], [4196, "Drak'Tharon Keep"], [1, "Dun Morogh"], [14, "Durotar"], [10, "Duskwood"], [15, "Dustwallow Marsh"], [139, "Eastern Plaguelands"], [12, "Elwynn Forest"], [3430, "Eversong Woods"], [3820, "Eye of the Storm"], [361, "Felwood"], [357, "Feralas"], [3433, "Ghostlands"], [721, "Gnomeregan"], [394, "Grizzly Hills"], [3923, "Gruul's Lair"], [4416, "Gundrak"], [4272, "Halls of Lightning"], [4820, "Halls of Reflection"], [4264, "Halls of Stone"], [3483, "Hellfire Peninsula"], [3562, "Hellfire Ramparts"], [267, "Hillsbrad Foothills"], [495, "Howling Fjord"], [4742, "Hrothgar's Landing"], [3606, "Hyjal Summit"], [210, "Icecrown"], [4812, "Icecrown Citadel"], [1537, "Ironforge"], [4710, "Isle of Conquest"], [4080, "Isle of Quel'Danas"], [3457, "Karazhan"], [38, "Loch Modan"], [4131, "Magisters' Terrace"], [3836, "Magtheridon's Lair"], [3792, "Mana-Tombs"], [2100, "Maraudon"], [2717, "Molten Core"], [493, "Moonglade"], [215, "Mulgore"], [3518, "Nagrand"], [3698, "Nagrand Arena"], [3456, "Naxxramas"], [3523, "Netherstorm"], [2367, "Old Hillsbrad Foothills"], [2159, "Onyxia's Lair"], [1637, "Orgrimmar"], [4813, "Pit of Saron"], [4298, "Plaguelands: The Scarlet Enclave"], [2437, "Ragefire Chasm"], [722, "Razorfen Downs"], [491, "Razorfen Kraul"], [44, "Redridge Mountains"], [3429, "Ruins of Ahn'Qiraj"], [3968, "Ruins of Lordaeron"], [796, "Scarlet Monastery"], [2057, "Scholomance"], [51, "Searing Gorge"], [3607, "Serpentshrine Cavern"], [3791, "Sethekk Halls"], [3789, "Shadow Labyrinth"], [209, "Shadowfang Keep"], [3520, "Shadowmoon Valley"], [3703, "Shattrath City"], [3711, "Sholazar Basin"], [1377, "Silithus"], [3487, "Silvermoon City"], [130, "Silverpine Forest"], [3679, "Skettis"], [406, "Stonetalon Mountains"], [1519, "Stormwind City"], [4384, "Strand of the Ancients"], [33, "Stranglethorn Vale"], [2017, "Stratholme"], [1477, "Sunken Temple"], [4075, "Sunwell Plateau"], [8, "Swamp of Sorrows"], [440, "Tanaris"], [141, "Teldrassil"], [3428, "Temple of Ahn'Qiraj"], [3519, "Terokkar Forest"], [3848, "The Arcatraz"], [17, "The Barrens"], [2366, "The Black Morass"], [3840, "The Black Temple"], [3713, "The Blood Furnace"], [3847, "The Botanica"], [4100, "The Culling of Stratholme"], [1581, "The Deadmines"], [3557, "The Exodar"], [3845, "The Eye"], [4500, "The Eye of Eternity"], [4809, "The Forge of Souls"], [47, "The Hinterlands"], [3849, "The Mechanar"], [4265, "The Nexus"], [4493, "The Obsidian Sanctum"], [4228, "The Oculus"], [4406, "The Ring of Valor"], [3714, "The Shattered Halls"], [3717, "The Slave Pens"], [3715, "The Steamvault"], [717, "The Stockade"], [67, "The Storm Peaks"], [3716, "The Underbog"], [457, "The Veiled Sea"], [4415, "The Violet Hold"], [400, "Thousand Needles"], [1638, "Thunder Bluff"], [1216, "Timbermaw Hold"], [85, "Tirisfal Glades"], [4723, "Trial of the Champion"], [4722, "Trial of the Crusader"], [1337, "Uldaman"], [4273, "Ulduar"], [490, "Un'Goro Crater"], [1497, "Undercity"], [206, "Utgarde Keep"], [1196, "Utgarde Pinnacle"], [4603, "Vault of Archavon"], [718, "Wailing Caverns"], [3277, "Warsong Gulch"], [28, "Western Plaguelands"], [40, "Westfall"], [11, "Wetlands"], [4197, "Wintergrasp"], [618, "Winterspring"], [3521, "Zangarmarsh"], [3805, "Zul'Aman"], [66, "Zul'Drak"], [1176, "Zul'Farrak"], [1977, "Zul'Gurub"]],
|
||
resistance: [[6, "Arcane"], [2, "Fire"], [3, "Nature"], [4, "Frost"], [5, "Shadow"], [1, "Holy"], [0, "Physical"]],
|
||
gem: [[5, "Yes"], [1, "Meta"], [2, "Red"], [3, "Yellow"], [4, "Blue"], [6, "No"]],
|
||
profession: [[11, "Yes"], [1, "Alchemy"], [2, "Blacksmithing"], [3, "Cooking"], [4, "Enchanting"], [5, "Engineering"], [6, "First Aid"], [13, "Fishing"], [14, "Herbalism"], [15, "Inscription"], [7, "Jewelcrafting"], [8, "Leatherworking"], [9, "Mining"], [10, "Tailoring"], [12, "No"]],
|
||
expansion: [[3, "Wrath of the Lich King"], [2, "The Burning Crusade"], [1, "None"]],
|
||
totemcategory: [[3, "Air Totem"], [14, "Arclight Spanner"], [162, "Blacksmith Hammer"], [168, "Bladed Pickaxe"], [141, "Drums"], [2, "Earth Totem"], [4, "Fire Totem"], [169, "Flint and Tinder"], [161, "Gnomish Army Knife"], [15, "Gyromatic Micro-Adjustor"], [167, "Hammer Pick"], [81, "Hollow Quill"], [21, "Master Totem"], [165, "Mining Pick"], [12, "Philosopher's Stone"], [62, "Runed Adamantite Rod"], [10, "Runed Arcanite Rod"], [101, "Runed Azurite Rod"], [189, "Runed Cobalt Rod"], [6, "Runed Copper Rod"], [63, "Runed Eternium Rod"], [41, "Runed Fel Iron Rod"], [8, "Runed Golden Rod"], [7, "Runed Silver Rod"], [190, "Runed Titanium Rod"], [9, "Runed Truesilver Rod"], [166, "Skinning Knife"], [121, "Virtuoso Inking Set"], [5, "Water Totem"]],
|
||
heroiczone: [[4494, "Ahn'kahet: The Old Kingdom"], [3790, "Auchenai Crypts"], [4277, "Azjol-Nerub"], [4196, "Drak'Tharon Keep"], [4416, "Gundrak"], [4272, "Halls of Lightning"], [4820, "Halls of Reflection"], [4264, "Halls of Stone"], [3562, "Hellfire Ramparts"], [4812, "Icecrown Citadel"], [4131, "Magisters' Terrace"], [3792, "Mana-Tombs"], [3456, "Naxxramas"], [2367, "Old Hillsbrad Foothills"], [4813, "Pit of Saron"], [3791, "Sethekk Halls"], [3789, "Shadow Labyrinth"], [3848, "The Arcatraz"], [2366, "The Black Morass"], [3713, "The Blood Furnace"], [3847, "The Botanica"], [4100, "The Culling of Stratholme"], [4500, "The Eye of Eternity"], [4809, "The Forge of Souls"], [3849, "The Mechanar"], [4265, "The Nexus"], [4493, "The Obsidian Sanctum"], [4228, "The Oculus"], [3714, "The Shattered Halls"], [3717, "The Slave Pens"], [3715, "The Steamvault"], [3716, "The Underbog"], [4415, "The Violet Hold"], [4723, "Trial of the Champion"], [4722, "Trial of the Crusader"], [4273, "Ulduar"], [206, "Utgarde Keep"], [1196, "Utgarde Pinnacle"], [4603, "Vault of Archavon"]],
|
||
// alt heroiczone: [[4494, "Ahn'kahet: The Old Kingdom"], [3790, "Auchenai Crypts"], [4277, "Azjol-Nerub"], [4196, "Drak'Tharon Keep"], [4416, "Gundrak"], [4272, "Halls of Lightning"], [4820, "Halls of Reflection"], [4264, "Halls of Stone"], [3562, "Hellfire Ramparts"], [4812, "Icecrown Citadel"], [4131, "Magisters' Terrace"], [3792, "Mana-Tombs"], [3456, "Naxxramas"], [2367, "Old Hillsbrad Foothills"], [4813, "Pit of Saron"], [3791, "Sethekk Halls"], [3789, "Shadow Labyrinth"], [3848, "The Arcatraz"], [2366, "The Black Morass"], [3713, "The Blood Furnace"], [3847, "The Botanica"], [4100, "The Culling of Stratholme"], [4500, "The Eye of Eternity"], [4809, "The Forge of Souls"], [3849, "The Mechanar"], [4265, "The Nexus"], [4493, "The Obsidian Sanctum"], [4228, "The Oculus"], [3714, "The Shattered Halls"], [3717, "The Slave Pens"], [3715, "The Steamvault"], [3716, "The Underbog"], [4415, "The Violet Hold"], [4723, "Trial of the Champion"], [4722, "Trial of the Crusader"], [4273, "Ulduar"], [206, "Utgarde Keep"], [1196, "Utgarde Pinnacle"], [4603, "Vault of Archavon"]],
|
||
heroicdungeon: [[4494, "Ahn'kahet: The Old Kingdom"], [3790, "Auchenai Crypts"], [4277, "Azjol-Nerub"], [4196, "Drak'Tharon Keep"], [4416, "Gundrak"], [4272, "Halls of Lightning"], [4820, "Halls of Reflection"], [4264, "Halls of Stone"], [3562, "Hellfire Ramparts"], [4131, "Magisters' Terrace"], [3792, "Mana-Tombs"], [2367, "Old Hillsbrad Foothills"], [4813, "Pit of Saron"], [3791, "Sethekk Halls"], [3789, "Shadow Labyrinth"], [3848, "The Arcatraz"], [2366, "The Black Morass"], [3713, "The Blood Furnace"], [3847, "The Botanica"], [4100, "The Culling of Stratholme"], [4809, "The Forge of Souls"], [3849, "The Mechanar"], [4265, "The Nexus"], [4228, "The Oculus"], [3714, "The Shattered Halls"], [3717, "The Slave Pens"], [3715, "The Steamvault"], [3716, "The Underbog"], [4415, "The Violet Hold"], [4723, "Trial of the Champion"], [206, "Utgarde Keep"], [1196, "Utgarde Pinnacle"]],
|
||
// alt heroicdungeon: [[4494, "Ahn'kahet: The Old Kingdom"], [3790, "Auchenai Crypts"], [4277, "Azjol-Nerub"], [4196, "Drak'Tharon Keep"], [4416, "Gundrak"], [4272, "Halls of Lightning"], [4820, "Halls of Reflection"], [4264, "Halls of Stone"], [3562, "Hellfire Ramparts"], [4131, "Magisters' Terrace"], [3792, "Mana-Tombs"], [2367, "Old Hillsbrad Foothills"], [4813, "Pit of Saron"], [3791, "Sethekk Halls"], [3789, "Shadow Labyrinth"], [3848, "The Arcatraz"], [2366, "The Black Morass"], [3713, "The Blood Furnace"], [3847, "The Botanica"], [4100, "The Culling of Stratholme"], [4809, "The Forge of Souls"], [3849, "The Mechanar"], [4265, "The Nexus"], [4228, "The Oculus"], [3714, "The Shattered Halls"], [3717, "The Slave Pens"], [3715, "The Steamvault"], [3716, "The Underbog"], [4415, "The Violet Hold"], [4723, "Trial of the Champion"], [206, "Utgarde Keep"], [1196, "Utgarde Pinnacle"]],
|
||
heroicraid: [[4812, "Icecrown Citadel"], [4722, "Trial of the Crusader"]],
|
||
multimoderaid: [[4812, "Icecrown Citadel"], [3456, "Naxxramas"], [2159, "Onyxia's Lair"], [4500, "The Eye of Eternity"], [4493, "The Obsidian Sanctum"], [4722, "Trial of the Crusader"], [4273, "Ulduar"], [4603, "Vault of Archavon"]],
|
||
event: [[372, "Brewfest"], [283, "Call to Arms: Alterac Valley"], [285, "Call to Arms: Arathi Basin"], [353, "Call to Arms: Eye of the Storm"], [420, "Call to Arms: Isle of Conquest"], [400, "Call to Arms: Strand of the Ancients"], [284, "Call to Arms: Warsong Gulch"], [201, "Children's Week"], [374, "Darkmoon Faire"], [409, "Day of the Dead"], [141, "Feast of Winter Veil"], [324, "Hallow's End"], [321, "Harvest Festival"], [424, "Kalu'ak Fishing Derby"], [335, "Love is in the Air"], [327, "Lunar Festival"], [341, "Midsummer Fire Festival"], [181, "Noblegarden"], [404, "Pilgrim's Bounty"], [398, "Pirates' Day"], [301, "Stranglethorn Fishing Extravaganza"]],
|
||
pvp: [[1, "Yes"], [3, "Arena"], [4, "Battleground"], [5, "World"], [2, "No"]],
|
||
currency: [[20560, "Alterac Valley Mark of Honor"], [32572, "Apexis Crystal"], [32569, "Apexis Shard"], [20559, "Arathi Basin Mark of Honor"], [29736, "Arcane Rune"], [44128, "Arctic Fur"], [29434, "Badge of Justice"], [34853, "Belt of the Forgotten Conqueror"], [34854, "Belt of the Forgotten Protector"], [34855, "Belt of the Forgotten Vanquisher"], [34856, "Boots of the Forgotten Conqueror"], [34857, "Boots of the Forgotten Protector"], [34858, "Boots of the Forgotten Vanquisher"], [34848, "Bracers of the Forgotten Conqueror"], [34851, "Bracers of the Forgotten Protector"], [34852, "Bracers of the Forgotten Vanquisher"], [40625, "Breastplate of the Lost Conqueror"], [40626, "Breastplate of the Lost Protector"], [40627, "Breastplate of the Lost Vanquisher"], [45632, "Breastplate of the Wayward Conqueror"], [45633, "Breastplate of the Wayward Protector"], [45634, "Breastplate of the Wayward Vanquisher"], [34169, "Breeches of Natural Aggression"], [37829, "Brewfest Prize Token"], [23247, "Burning Blossom"], [34186, "Chain Links of the Tumultuous Storm"], [44990, "Champion's Seal"], [29754, "Chestguard of the Fallen Champion"], [29753, "Chestguard of the Fallen Defender"], [29755, "Chestguard of the Fallen Hero"], [31089, "Chestguard of the Forgotten Conqueror"], [31091, "Chestguard of the Forgotten Protector"], [31090, "Chestguard of the Forgotten Vanquisher"], [40610, "Chestguard of the Lost Conqueror"], [40611, "Chestguard of the Lost Protector"], [40612, "Chestguard of the Lost Vanquisher"], [30236, "Chestguard of the Vanquished Champion"], [30237, "Chestguard of the Vanquished Defender"], [30238, "Chestguard of the Vanquished Hero"], [45635, "Chestguard of the Wayward Conqueror"], [45636, "Chestguard of the Wayward Protector"], [45637, "Chestguard of the Wayward Vanquisher"], [24368, "Coilfang Armaments"], [52027, "Conqueror's Mark of Sanctification"], [52030, "Conqueror's Mark of Sanctification (Heroic)"], [34245, "Cover of Ursol the Wise"], [34332, "Cowl of Gul'dan"], [34339, "Cowl of Light's Purity"], [34345, "Crown of Anasterian"], [40631, "Crown of the Lost Conqueror"], [40632, "Crown of the Lost Protector"], [40633, "Crown of the Lost Vanquisher"], [45638, "Crown of the Wayward Conqueror"], [45639, "Crown of the Wayward Protector"], [45640, "Crown of the Wayward Vanquisher"], [43016, "Dalaran Cooking Award"], [41596, "Dalaran Jewelcrafter's Token"], [34052, "Dream Shard"], [34244, "Duplicitous Guise"], [45624, "Emblem of Conquest"], [49426, "Emblem of Frost"], [40752, "Emblem of Heroism"], [47241, "Emblem of Triumph"], [40753, "Emblem of Valor"], [34208, "Equilibrium Epaulets"], [29024, "Eye of the Storm Mark of Honor"], [34180, "Felfury Legplates"], [34229, "Garments of Serene Shores"], [34350, "Gauntlets of the Ancient Shadowmoon"], [40628, "Gauntlets of the Lost Conqueror"], [40629, "Gauntlets of the Lost Protector"], [40630, "Gauntlets of the Lost Vanquisher"], [45641, "Gauntlets of the Wayward Conqueror"], [45642, "Gauntlets of the Wayward Protector"], [45643, "Gauntlets of the Wayward Vanquisher"], [29757, "Gloves of the Fallen Champion"], [29758, "Gloves of the Fallen Defender"], [29756, "Gloves of the Fallen Hero"], [31092, "Gloves of the Forgotten Conqueror"], [31094, "Gloves of the Forgotten Protector"], [31093, "Gloves of the Forgotten Vanquisher"], [40613, "Gloves of the Lost Conqueror"], [40614, "Gloves of the Lost Protector"], [40615, "Gloves of the Lost Vanquisher"], [30239, "Gloves of the Vanquished Champion"], [30240, "Gloves of the Vanquished Defender"], [30241, "Gloves of the Vanquished Hero"], [45644, "Gloves of the Wayward Conqueror"], [45645, "Gloves of the Wayward Protector"], [45646, "Gloves of the Wayward Vanquisher"], [24245, "Glowcap"], [26045, "Halaa Battle Token"], [26044, "Halaa Research Token"], [34342, "Handguards of the Dawn"], [34211, "Harness of Carnal Instinct"], [38425, "Heavy Borean Leather"], [34243, "Helm of Burning Righteousness"], [29760, "Helm of the Fallen Champion"], [29761, "Helm of the Fallen Defender"], [29759, "Helm of the Fallen Hero"], [31097, "Helm of the Forgotten Conqueror"], [31095, "Helm of the Forgotten Protector"], [31096, "Helm of the Forgotten Vanquisher"], [40616, "Helm of the Lost Conqueror"], [40617, "Helm of the Lost Protector"], [40618, "Helm of the Lost Vanquisher"], [30242, "Helm of the Vanquished Champion"], [30243, "Helm of the Vanquished Defender"], [30244, "Helm of the Vanquished Hero"], [45647, "Helm of the Wayward Conqueror"], [45648, "Helm of the Wayward Protector"], [45649, "Helm of the Wayward Vanquisher"], [34216, "Heroic Judicator's Chestguard"], [29735, "Holy Dust"], [29766, "Leggings of the Fallen Champion"], [29767, "Leggings of the Fallen Defender"], [29765, "Leggings of the Fallen Hero"], [31098, "Leggings of the Forgotten Conqueror"], [31100, "Leggings of the Forgotten Protector"], [31099, "Leggings of the Forgotten Vanquisher"], [34188, "Leggings of the Immortal Night"], [40619, "Leggings of the Lost Conqueror"], [40620, "Leggings of the Lost Protector"], [40621, "Leggings of the Lost Vanquisher"], [30245, "Leggings of the Vanquished Champion"], [30246, "Leggings of the Vanquished Defender"], [30247, "Leggings of the Vanquished Hero"], [45650, "Leggings of the Wayward Conqueror"], [45651, "Leggings of the Wayward Protector"], [45652, "Leggings of the Wayward Vanquisher"], [34167, "Legplates of the Holy Juggernaut"], [40634, "Legplates of the Lost Conqueror"], [40635, "Legplates of the Lost Protector"], [40636, "Legplates of the Lost Vanquisher"], [45653, "Legplates of the Wayward Conqueror"], [45654, "Legplates of the Wayward Protector"], [45655, "Legplates of the Wayward Vanquisher"], [40637, "Mantle of the Lost Conqueror"], [40638, "Mantle of the Lost Protector"], [40639, "Mantle of the Lost Vanquisher"], [45656, "Mantle of the Wayward Conqueror"], [45657, "Mantle of the Wayward Protector"], [45658, "Mantle of the Wayward Vanquisher"], [24579, "Mark of Honor Hold"], [24581, "Mark of Thrallmar"], [32897, "Mark of the Illidari"], [22484, "Necrotic Rune"], [34170, "Pantaloons of Calming Strife"], [34192, "Pauldrons of Perseverance"], [29763, "Pauldrons of the Fallen Champion"], [29764, "Pauldrons of the Fallen Defender"], [29762, "Pauldrons of the Fallen Hero"], [31101, "Pauldrons of the Forgotten Conqueror"], [31103, "Pauldrons of the Forgotten Protector"], [31102, "Pauldrons of the Forgotten Vanquisher"], [30248, "Pauldrons of the Vanquished Champion"], [30249, "Pauldrons of the Vanquished Defender"], [30250, "Pauldrons of the Vanquished Hero"], [52026, "Protector's Mark of Sanctification"], [52029, "Protector's Mark of Sanctification (Heroic)"], [34233, "Robes of Faltered Light"], [34234, "Shadowed Gauntlets of Paroxysm"], [34202, "Shawl of Wonderment"], [34195, "Shoulderpads of Vehemence"], [4291, "Silken Thread"], [34209, "Spaulders of Reclamation"], [40622, "Spaulders of the Lost Conqueror"], [40623, "Spaulders of the Lost Protector"], [40624, "Spaulders of the Lost Vanquisher"], [34193, "Spaulders of the Thalassian Savior"], [45659, "Spaulders of the Wayward Conqueror"], [45660, "Spaulders of the Wayward Protector"], [45661, "Spaulders of the Wayward Vanquisher"], [28558, "Spirit Shard"], [43228, "Stone Keeper's Shard"], [34212, "Sunglow Vest"], [34664, "Sunmote"], [34351, "Tranquil Majesty Wraps"], [47242, "Trophy of the Crusade"], [52025, "Vanquisher's Mark of Sanctification"], [52028, "Vanquisher's Mark of Sanctification (Heroic)"], [37836, "Venture Coin"], [34215, "Warharness of Reckless Fury"], [20558, "Warsong Gulch Mark of Honor"], [34597, "Winterfin Clam"], [43589, "Wintergrasp Mark of Honor"]],
|
||
queststart: [[3, "Item"], [1, "NPC"], [2, "Object"]],
|
||
questend: [[1, "NPC"], [2, "Object"]],
|
||
spellsource: [[1, "Any"], [3, "Crafted"], [9, "Discovery"], [4, "Drop"], [6, "Quest"], [10, "Talent"], [8, "Trainer"], [7, "Vendor"], [2, "None"]],
|
||
itemsource: [[1, "Any"], [3, "Crafted"], [4, "Drop"], [5, "PvP"], [6, "Quest"], [8, "Redemption"], [7, "Vendor"], [2, "None"]],
|
||
glyphtype: [[1, "Major"], [2, "Minor"]],
|
||
classs: [[12, "Any"], [6, "Death Knight"], [11, "Druid"], [3, "Hunter"], [8, "Mage"], [2, "Paladin"], [5, "Priest"], [4, "Rogue"], [7, "Shaman"], [9, "Warlock"], [1, "Warrior"], [13, "None"]],
|
||
race: [[12, "Any"], [10, "Blood Elf"], [11, "Draenei"], [3, "Dwarf"], [7, "Gnome"], [1, "Human"], [4, "Night Elf"], [2, "Orc"], [6, "Tauren"], [8, "Troll"], [5, "Undead"], [13, "None"]],
|
||
disenchanting: [[34057, "Abyss Crystal"], [22445, "Arcane Dust"], [11176, "Dream Dust"], [34052, "Dream Shard"], [11082, "Greater Astral Essence"], [34055, "Greater Cosmic Essence"], [16203, "Greater Eternal Essence"], [10939, "Greater Magic Essence"], [11135, "Greater Mystic Essence"], [11175, "Greater Nether Essence"], [22446, "Greater Planar Essence"], [16204, "Illusion Dust"], [34054, "Infinite Dust"], [14344, "Large Brilliant Shard"], [11084, "Large Glimmering Shard"], [11139, "Large Glowing Shard"], [22449, "Large Prismatic Shard"], [11178, "Large Radiant Shard"], [10998, "Lesser Astral Essence"], [34056, "Lesser Cosmic Essence"], [16202, "Lesser Eternal Essence"], [10938, "Lesser Magic Essence"], [11134, "Lesser Mystic Essence"], [11174, "Lesser Nether Essence"], [22447, "Lesser Planar Essence"], [20725, "Nexus Crystal"], [14343, "Small Brilliant Shard"], [34053, "Small Dream Shard"], [10978, "Small Glimmering Shard"], [11138, "Small Glowing Shard"], [22448, "Small Prismatic Shard"], [11177, "Small Radiant Shard"], [11083, "Soul Dust"], [10940, "Strange Dust"], [11137, "Vision Dust"], [22450, "Void Crystal"]],
|
||
proficiencytype: [[2, "Armor"], [3, "Armor Proficiencies"], [4, "Armor Specializations"], [5, "Languages"], [1, "Weapons"]],
|
||
},
|
||
fiitems: {
|
||
addedinexpansion: "Added in expansion",
|
||
bindonequip: "Binds when equipped",
|
||
bindonpickup: "Binds when picked up",
|
||
bindonuse: "Binds when used",
|
||
bindtoaccount: "Binds to account",
|
||
heroicitem: "Heroic item",
|
||
changedinwotlk: "Changed in Wrath of the Lich King",
|
||
conjureditem: "Conjured item",
|
||
craftedprof: "Crafted by a profession",
|
||
damagetype: "Damage type",
|
||
disenchantable: "Disenchantable",
|
||
disenchantsinto: "Disenchants into...",
|
||
dropsin: "Drops in...",
|
||
dropsinheroic: "Drops in Heroic mode... (Dungeon)",
|
||
dropsinnormal: "Drops in Normal mode... (Dungeon)",
|
||
dropsinnormal10: "Drops in Normal 10 mode... (Raid)",
|
||
dropsinnormal25: "Drops in Normal 25 mode... (Raid)",
|
||
dropsinheroic10: "Drops in Heroic 10 mode... (Raid)",
|
||
dropsinheroic25: "Drops in Heroic 25 mode... (Raid)",
|
||
effecttext: "Effect text",
|
||
fitsgemslot: "Fits a gem slot",
|
||
flavortext: "Flavor text",
|
||
glyphtype: "Glyph type",
|
||
hascomments: "Has comments",
|
||
hasflavortext: "Has a flavor text",
|
||
hasscreenshots: "Has screenshots",
|
||
hasvideos: "Has videos",
|
||
hassockets: "Has sockets",
|
||
icon: "Icon",
|
||
locked: "Locked",
|
||
notavailable: "Not available to players",
|
||
objectivequest: "Objective of a quest",
|
||
openable: "Openable",
|
||
otdisenchanting: "Obtained through disenchanting",
|
||
otfishing: "Obtained through fishing",
|
||
otherbgathering: "Obtained through herb gathering",
|
||
otitemopening: "Obtained through item opening",
|
||
otlooting: "Obtained through looting",
|
||
otmilling: "Obtained through milling",
|
||
otmining: "Obtained through mining",
|
||
otobjectopening: "Obtained through object opening",
|
||
otpickpocketing: "Obtained through pick pocketing",
|
||
otprospecting: "Obtained through prospecting",
|
||
otpvp: "Obtained through PvP",
|
||
otskinning: "Obtained through skinning",
|
||
partofset: "Part of an item set",
|
||
partyloot: "Party loot",
|
||
prospectable: "Prospectable",
|
||
millable: "Millable",
|
||
purchasablewithcurrency: "Purchasable with a currency",
|
||
purchasablewith: "Purchasable with a currency...",
|
||
purchasablewithhonor: "Purchasable with honor points",
|
||
purchasablewitharena: "Purchasable with arena points",
|
||
questitem: "Quest item",
|
||
randomenchants: "Random enchantments (of the...)",
|
||
repaircost: "Repair cost (coppers)",
|
||
randomlyenchanted: "Randomly enchanted",
|
||
readable: "Readable",
|
||
reagentforability: "Reagent for ability/profession",
|
||
refundable: "Refundable",
|
||
requiresprof: "Requires a profession",
|
||
requiresprofspec: "Requires a profession specialization",
|
||
requiresrepwith: "Requires reputation with...",
|
||
rewardedbyfactionquest: "Rewarded by a quest",
|
||
rewardedbyquestin: "Rewarded by a quest in...",
|
||
sepcommunity: "Community",
|
||
sepsource: "Source",
|
||
smartloot: "Smart loot",
|
||
soldbynpc: "Sold by NPC #...",
|
||
soldbyvendor: "Sold by a vendor",
|
||
startsquest: "Starts a quest",
|
||
teachesspell: "Teaches a spell",
|
||
tool: "Tool",
|
||
id: "ID",
|
||
usableinarenas: "Usable in arenas",
|
||
usablewhenshapeshifted: "Usable when shapeshifted",
|
||
unique: "Unique",
|
||
uniqueequipped: "Unique-Equipped",
|
||
classspecific: "Class-specific",
|
||
racespecific: "Race-specific",
|
||
relatedevent: "Related world event",
|
||
requiresevent: "Requires a world event"
|
||
},
|
||
fiitemsets: {
|
||
sepgeneral: "General",
|
||
id: "ID",
|
||
pieces: "Number of pieces",
|
||
bonustext: "Bonus effect text",
|
||
heroic: "Heroic",
|
||
relatedevent: "Related world event",
|
||
sepcommunity: "Community",
|
||
hascomments: "Has comments",
|
||
hasscreenshots: "Has screenshots",
|
||
hasvideos: "Has videos"
|
||
},
|
||
finpcs: {
|
||
sepgeneral: "General",
|
||
addedinexpansion: "Added in expansion",
|
||
canrepair: "Can repair",
|
||
faction: "Faction",
|
||
relatedevent: "Related world event",
|
||
foundin: "Found in...",
|
||
health: "Health",
|
||
mana: "Mana",
|
||
instanceboss: "Instance boss",
|
||
startsquest: "Starts a quest",
|
||
endsquest: "Ends a quest",
|
||
usemodel: "Uses model #...",
|
||
useskin: "Uses skin...",
|
||
id: "ID",
|
||
seploot: "Loot",
|
||
averagemoneydropped: "Average money dropped",
|
||
gatherable: "Gatherable (herbalism)",
|
||
salvageable: "Salvageable (engineering)",
|
||
lootable: "Lootable",
|
||
minable: "Minable (mining)",
|
||
pickpocketable: "Pick pocketable",
|
||
skinnable: "Skinnable",
|
||
sepgossipoptions: "Gossip options",
|
||
auctioneer: "Auctioneer",
|
||
banker: "Banker",
|
||
battlemaster: "Battlemaster",
|
||
flightmaster: "Flight master",
|
||
guildmaster: "Guild master",
|
||
innkeeper: "Innkeeper",
|
||
talentunlearner: "Talent unlearner",
|
||
tabardvendor: "Tabard vendor",
|
||
stablemaster: "Stable master",
|
||
trainer: "Trainer",
|
||
vendor: "Vendor",
|
||
increasesrepwith: "Increases Reputation with...",
|
||
decreasesrepwith: "Decreases Reputation with...",
|
||
sepcommunity: "Community",
|
||
hascomments: "Has comments",
|
||
hasscreenshots: "Has screenshots",
|
||
hasvideos: "Has videos",
|
||
haslocation: "Has location"
|
||
},
|
||
fiobjects: {
|
||
sepgeneral: "General",
|
||
addedinexpansion: "Added in expansion",
|
||
foundin: "Found in...",
|
||
requiredskilllevel: "Required skill level (herbs/veins/footlockers)",
|
||
relatedevent: "Related world event",
|
||
startsquest: "Starts a quest",
|
||
endsquest: "Ends a quest",
|
||
id: "ID",
|
||
seploot: "Loot",
|
||
averagemoneycontained: "Average money contained",
|
||
openable: "Openable",
|
||
sepcommunity: "Community",
|
||
hascomments: "Has comments",
|
||
hasscreenshots: "Has screenshots",
|
||
hasvideos: "Has videos"
|
||
},
|
||
fiquests: {
|
||
sepgeneral: "General",
|
||
addedinexpansion: "Added in expansion",
|
||
relatedevent: "Related world event",
|
||
daily: "Daily",
|
||
weekly: "Weekly",
|
||
repeatable: "Repeatable",
|
||
objectiveearnrepwith: "Objective: Earn reputation with...",
|
||
sharable: "Sharable",
|
||
startsfrom: "Starts from...",
|
||
endsat: "Ends at...",
|
||
suggestedplayers: "Suggested players",
|
||
timer: "Timer (seconds)",
|
||
id: "ID",
|
||
classspecific: "Class-specific",
|
||
racespecific: "Race-specific",
|
||
sepgainsrewards: "Gains/rewards",
|
||
experiencegained: "Experience gained",
|
||
arenagained: "Arena points gained",
|
||
honorgained: "Honor gained",
|
||
itemchoices: "Item choices",
|
||
itemrewards: "Item rewards",
|
||
moneyrewarded: "Money rewarded",
|
||
spellrewarded: "Spell rewarded",
|
||
titlerewarded: "Title rewarded",
|
||
currencyrewarded: "Currency rewarded...",
|
||
increasesrepwith: "Increases reputation with...",
|
||
decreasesrepwith: "Decreases reputation with...",
|
||
sepseries: "Series",
|
||
firstquestseries: "First quest of a series",
|
||
lastquestseries: "Last quest of a series",
|
||
partseries: "Part of a series",
|
||
sepcommunity: "Community",
|
||
hascomments: "Has comments",
|
||
hasscreenshots: "Has screenshots",
|
||
hasvideos: "Has videos",
|
||
lacksstartend: "Lacks start or end"
|
||
},
|
||
fispells: {
|
||
sepgeneral: "General",
|
||
prcntbasemanarequired: "% of base mana required",
|
||
firstrank: "First rank",
|
||
lastrank: "Last rank",
|
||
rankno: "Rank #...",
|
||
proficiencytype: "Proficiency type",
|
||
manaenergyragecost: "Mana/energy/rage cost",
|
||
requiresnearbyobject: "Requires a nearby object",
|
||
hasreagents: "Has reagents",
|
||
requiresprofspec: "Requires a profession specialization",
|
||
source: "Source",
|
||
trainingcost: "Training cost",
|
||
id: "ID",
|
||
icon: "Icon",
|
||
sepcommunity: "Community",
|
||
hascomments: "Has comments",
|
||
hasscreenshots: "Has screenshots",
|
||
hasvideos: "Has videos"
|
||
},
|
||
fiachievements: {
|
||
sepgeneral: "General",
|
||
givesreward: "Gives a reward",
|
||
rewardtext: "Reward text",
|
||
location: "Location...",
|
||
relatedevent: "Related world event",
|
||
id: "ID",
|
||
icon: "Icon",
|
||
sepseries: "Series",
|
||
firstseries: "First of a series",
|
||
lastseries: "Last of a series",
|
||
partseries: "Part of a series",
|
||
sepcommunity: "Community",
|
||
hascomments: "Has comments",
|
||
hasscreenshots: "Has screenshots",
|
||
hasvideos: "Has videos"
|
||
},
|
||
fiprofiles: {
|
||
sepgeneral: "General",
|
||
gearscore: "Gear score",
|
||
achievementpoints: "Achievement points",
|
||
wearingitem: "Wearing item #...",
|
||
wearingpermenchant: "Wearing enchantment #...",
|
||
completedachievement: "Completed achievement #...",
|
||
sepprofession: "Professions",
|
||
alchemy: "Alchemy skill",
|
||
blacksmithing: "Blacksmithing skill",
|
||
enchanting: "Enchanting skill",
|
||
engineering: "Engineering skill",
|
||
herbalism: "Herbalism skill",
|
||
inscription: "Inscription skill",
|
||
jewelcrafting: "Jewelcrafting skill",
|
||
leatherworking: "Leatherworking skill",
|
||
mining: "Mining skill",
|
||
skinning: "Skinning skill",
|
||
tailoring: "Tailoring skill",
|
||
septalent: "Talents",
|
||
talenttree1: "Points spent in first talent tree",
|
||
talenttree2: "Points spent in second talent tree",
|
||
talenttree3: "Points spent in third talent tree",
|
||
sepguild: "Guilds",
|
||
hasguild: "Has a guild",
|
||
guildname: "Guild name",
|
||
guildrank: "Guild member rank",
|
||
separenateam: "Arena teams",
|
||
teamname2v2: "2v2 arena team name",
|
||
teamrtng2v2: "2v2 arena team rating",
|
||
teamcontrib2v2: "2v2 arena team contribution",
|
||
teamname3v3: "3v3 arena team name",
|
||
teamrtng3v3: "3v3 arena team rating",
|
||
teamcontrib3v3: "3v3 arena team contribution",
|
||
teamname5v5: "5v5 arena team name",
|
||
teamrtng5v5: "5v5 arena team rating",
|
||
teamcontrib5v5: "5v5 arena team contribution"
|
||
},
|
||
presets: {
|
||
pve: "PvE",
|
||
pvp: "PvP",
|
||
afflic: "Affliction",
|
||
arcane: "Arcane",
|
||
arms: "Arms (DPS)",
|
||
assas: "Assassination",
|
||
balance: "Balance (DPS)",
|
||
beast: "Beast Mastery",
|
||
blooddps: "Blood (DPS)",
|
||
bloodtank: "Blood (Tank)",
|
||
combat: "Combat",
|
||
demo: "Demonology",
|
||
destro: "Destruction",
|
||
disc: "Discipline (Healing)",
|
||
elem: "Elemental Combat (DPS)",
|
||
enhance: "Enhancement (DPS)",
|
||
feraldps: "Feral Combat (DPS)",
|
||
feraltank: "Feral Combat (Tank)",
|
||
fire: "Fire",
|
||
frost: "Frost",
|
||
frostdps: "Frost (DPS)",
|
||
frosttank: "Frost (Tank)",
|
||
fury: "Fury (DPS)",
|
||
generic: "Generic",
|
||
holy: "Holy (Healing)",
|
||
marks: "Marksmanship",
|
||
prot: "Protection (Tank)",
|
||
resto: "Restoration (Healing)",
|
||
retrib: "Retribution (DPS)",
|
||
shadow: "Shadow Magic (DPS)",
|
||
subtle: "Subtlety",
|
||
surv: "Survival",
|
||
unholydps: "Unholy (DPS)"
|
||
},
|
||
traits: {
|
||
agi: ["Agility", "Agi", "Agi"],
|
||
arcres: ["Arcane Resistance", "Arcane Resist", "ArcR"],
|
||
arcsplpwr: ["Arcane spell power", "Arcane Power", "ArcP"],
|
||
armor: ["Armor", "Armor", "Armor"],
|
||
armorbonus: ["Additional armor", "Bonus Armor", "AddAr"],
|
||
armorpenrtng: ["Armor penetration rating", "Armor Pen", "Pen"],
|
||
atkpwr: ["Attack power", "AP", "AP"],
|
||
avgbuyout: ["Average buyout price", "Buyout", "AH"],
|
||
avgmoney: ["Average money contained", "Money", "Money"],
|
||
block: ["Block value", "Block Value", "BkVal"],
|
||
blockrtng: ["Block rating", "Block", "Block"],
|
||
buyprice: ["Buy price (coppers)", "Buy", "Buy"],
|
||
cooldown: ["Cooldown (seconds)", "Cooldown", "CD"],
|
||
critstrkrtng: ["Critical strike rating", "Crit", "Crit"],
|
||
defrtng: ["Defense rating", "Defense", "Def"],
|
||
dmg: ["Weapon damage", "Damage", "Dmg"],
|
||
dmgmax1: ["Maximum damage", "Max Damage", "Max"],
|
||
dmgmin1: ["Minimum damage", "Min Damage", "Min"],
|
||
dodgertng: ["Dodge rating", "Dodge", "Dodge"],
|
||
dps: ["Damage per second", "DPS", "DPS"],
|
||
dura: ["Durability", "Durability", "Dura"],
|
||
exprtng: ["Expertise rating", "Expertise", "Exp"],
|
||
feratkpwr: ["Feral attack power", "Feral AP", "FAP"],
|
||
firres: ["Fire Resistance", "Fire Resist", "FirR"],
|
||
firsplpwr: ["Fire spell power", "Fire Power", "FireP"],
|
||
frores: ["Frost Resistance", "Frost Resist", "FroR"],
|
||
frosplpwr: ["Frost spell power", "Frost Power", "FroP"],
|
||
hastertng: ["Haste rating", "Haste", "Haste"],
|
||
health: ["Health", "Health", "Hlth"],
|
||
healthrgn: ["Health regeneration", "HP5", "HP5"],
|
||
hitrtng: ["Hit rating", "Hit", "Hit"],
|
||
holres: ["Holy Resistance", "Holy Resist", "HolR"],
|
||
holsplpwr: ["Holy spell power", "Holy Power", "HolP"],
|
||
"int": ["Intellect", "Int", "Int"],
|
||
level: ["Level", "Level", "Lvl"],
|
||
mana: ["Mana", "Mana", "Mana"],
|
||
manargn: ["Mana regeneration", "MP5", "MP5"],
|
||
mleatkpwr: ["Melee attack power", "Melee AP", "AP"],
|
||
mlecritstrkrtng: ["Melee critical strike rating", "Melee Crit", "Crit"],
|
||
mledmgmax: ["Melee maximum damage", "Melee Max Damage", "Max"],
|
||
mledmgmin: ["Melee minimum damage", "Melee Min Damage", "Min"],
|
||
mledps: ["Melee DPS", "Melee DPS", "DPS"],
|
||
mlehastertng: ["Melee haste rating", "Melee Haste", "Haste"],
|
||
mlehitrtng: ["Melee hit rating", "Melee Hit", "Hit"],
|
||
mlespeed: ["Melee speed", "Melee Speed", "Speed"],
|
||
natres: ["Nature Resistance", "Nature Resist", "NatR"],
|
||
natsplpwr: ["Nature spell power", "Nature Power", "NatP"],
|
||
nsockets: ["Number of sockets", "Sockets", "Sockt"],
|
||
parryrtng: ["Parry rating", "Parry", "Parry"],
|
||
reqarenartng: ["Required personal and team arena rating", "Req Rating", "Rating"],
|
||
reqlevel: ["Required level", "Req Level", "Level"],
|
||
reqskillrank: ["Required skill level", "Req Skill", "Skill"],
|
||
resirtng: ["Resilience rating", "Resilience", "Resil"],
|
||
rgdatkpwr: ["Ranged attack power", "Ranged AP", "RAP"],
|
||
rgdcritstrkrtng: ["Ranged critical strike rating", "Ranged Crit", "Crit"],
|
||
rgddmgmax: ["Ranged maximum damage", "Ranged Max Damage", "Max"],
|
||
rgddmgmin: ["Ranged minimum damage", "Ranged Min Damage", "Min"],
|
||
rgddps: ["Ranged DPS", "Ranged DPS", "DPS"],
|
||
rgdhastertng: ["Ranged haste rating", "Ranged Haste", "Haste"],
|
||
rgdhitrtng: ["Ranged hit rating", "Ranged Hit", "Hit"],
|
||
rgdspeed: ["Ranged speed", "Ranged Speed", "Speed"],
|
||
sellprice: ["Sale price (coppers)", "Sell", "Sell"],
|
||
sepbasestats: "Base stats",
|
||
sepdefensivestats: "Defensive stats",
|
||
sepgeneral: "General",
|
||
sepindividualstats: "Individual stats",
|
||
sepmisc: "Miscellaneous",
|
||
sepoffensivestats: "Offensive stats",
|
||
sepresistances: "Resistances",
|
||
sepweaponstats: "Weapon stats",
|
||
shares: ["Shadow Resistance", "Shadow Resist", "ShaR"],
|
||
shasplpwr: ["Shadow spell power", "Shadow Power", "ShaP"],
|
||
speed: ["Speed", "Speed", "Speed"],
|
||
spi: ["Spirit", "Spi", "Spi"],
|
||
splcritstrkrtng: ["Spell critical strike rating", "Spell Crit", "Crit"],
|
||
spldmg: ["Damage done by spells", "Spell Damage", "Dmg"],
|
||
splheal: ["Healing done by spells", "Healing", "Heal"],
|
||
splpwr: ["Spell power", "Spell Power", "SP"],
|
||
splhastertng: ["Spell haste rating", "Spell Haste", "Haste"],
|
||
splhitrtng: ["Spell hit rating", "Spell Hit", "Hit"],
|
||
splpen: ["Spell penetration", "Spell Pen", "Pen"],
|
||
sta: ["Stamina", "Sta", "Sta"],
|
||
str: ["Strength", "Str", "Str"]
|
||
},
|
||
pr_dialog_level: "Level:",
|
||
pr_menu_clearenh: "Clear Enhancements",
|
||
pr_menu_addsubitem: "Add Random Property...",
|
||
pr_menu_repsubitem: "Replace Random Property...",
|
||
pr_menu_addenchant: "Add Enchant...",
|
||
pr_menu_repenchant: "Replace Enchant...",
|
||
pr_menu_addgem: "Add Gem...",
|
||
pr_menu_repgem: "Replace Gem...",
|
||
pr_menu_extrasock: "Extra Socket",
|
||
pr_note_source: "Source: ",
|
||
pr_note_all: "All",
|
||
pr_note_items: "Items",
|
||
pr_note_profs:"Professions",
|
||
pr_note_bc: "BC",
|
||
pr_note_wotlk: "WotLK",
|
||
pr_note_color: "Color: ",
|
||
pr_note_match: "Match",
|
||
pr_noneitem: "None",
|
||
pr_nonegem: "None",
|
||
pr_noneenchant: "None",
|
||
su_notice: 'First time? – Don\'t be shy! Just check out our <a href="?help=item-comparison" target="_blank">Help page</a>!',
|
||
su_itemtip: "Tip: Shift or right-click items for more options.",
|
||
su_additems: "To begin, add some items.",
|
||
su_autosaving: "Autosaving",
|
||
su_viewsaved: "View saved comparison",
|
||
su_savecompare: "Save",
|
||
su_linkcompare: "Link to this comparison",
|
||
su_clear: "Clear",
|
||
su_help: "Help",
|
||
su_addscale: "Weight scale",
|
||
su_additem: "Item",
|
||
su_addset: "Item set",
|
||
su_toggle: "Click to toggle display",
|
||
su_preset: "Preset: ",
|
||
su_name: "Name: ",
|
||
su_level: "Level: ",
|
||
su_addweight: "Add another weight",
|
||
su_applyweight: "Add",
|
||
su_resetweight: "Reset",
|
||
su_export: "Export",
|
||
su_viewin3d: "View in 3D",
|
||
su_split: "Split",
|
||
su_customscale: "Custom scale #$1",
|
||
su_comparing: "Comparing ",
|
||
su_comparewith: " with ",
|
||
su_note_name: "Name: ",
|
||
su_searching3: 'Searching for items named "$1"...',
|
||
su_searching4: 'Searching for item sets named "$1"...',
|
||
su_specifyitem3: "Please enter an item name to search for.",
|
||
su_specifyitem4: "Please enter an item set name to search for.",
|
||
su_added3: 'Added item <a href="/item=$1" class="q$2" target="_blank">[$3]</a> to comparison.',
|
||
su_added4: 'Added item set <a href="/itemset=$1" class="q$2" target="_blank">[$3]</a> to comparison.',
|
||
su_noresults: 'No results found for "$1"!',
|
||
tooltip_setfocus: '<b>Set focus</b><br /><span class="q1">Compare all other columns to this one.</span>',
|
||
tooltip_removefocus: "Remove focus",
|
||
tooltip_gains: "Bonuses you gain above the minimum<br />shared stats between all columns.",
|
||
message_deleteitem: "Delete $1?",
|
||
message_deletegroup: "Delete this group?"
|
||
};
|