31fc1ffe06
* db link You can now alt right click items to open them to there ascensionDB page in your browser. * updates -updated Hyjal Summit loot tables -added new right click context menu to items -added crafting source to crafting tooltips -crafting recipes now get a green highlight if current char knows that recipe or a blue one if you have an alt with the recipe -crafting tooltips now show what chars you have that know that recipe * Update burningcrusade.lua
34 lines
940 B
Lua
34 lines
940 B
Lua
--[[
|
|
Menu.lua
|
|
Defines the table listings for the dropdown lists.
|
|
]]
|
|
|
|
--Invoke all libraries
|
|
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
|
|
|
|
--This is a multi-layer table defining the main loot listing.
|
|
--Entries have the text to display, loot table or sub table to link to and if the link is to a loot table or sub table
|
|
AtlasLoot_Modules = {
|
|
{AL["Dungeons and Raids"], "Dungeons and Raids", 2};
|
|
{AL["Crafting"], "Crafting"};
|
|
{AL["Sets/Collections"], "Collections"};
|
|
{AL["PvP Rewards"], "PVP"};
|
|
{AL["Vanity"], "Vanity"};
|
|
{AL["Reputation Factions"], "Reputations"};
|
|
{AL["World Events"], "WorldEvents"};
|
|
};
|
|
|
|
AtlasLoot_SubMenus = {};
|
|
|
|
AtlasLoot_CraftingData = {};
|
|
|
|
AtlasLoot_ExpansionMenu = {
|
|
{ AL["Classic"], "CLASSIC" };
|
|
{ AL["Burning Crusade"], "TBC" };
|
|
{ AL["Wrath of the Lich King"], "WRATH" };
|
|
};
|
|
|
|
AtlasLoot_Data["EmptyTable"] = {
|
|
Name = AL["Select a Loot Table..."];
|
|
{Name = AL["Select a Loot Table..."]};
|
|
}; |