29 lines
588 B
Lua
29 lines
588 B
Lua
--[[
|
|
dkp.lua
|
|
This file can be used in your guild to indicate dkp cost on items.
|
|
Just add an entry of the form:
|
|
ItemXXXXX = "DKP Value";
|
|
Where XXXXX is the itemID.
|
|
The DKP cost will appear in the tooltip automatically.
|
|
]]
|
|
|
|
AtlasLootDKPValues = {
|
|
-----------------
|
|
-- Molten Core --
|
|
-----------------
|
|
--Tier 1 Loot--
|
|
--Arcanist Boots
|
|
Item16800 = "";
|
|
--Felheart Gloves
|
|
Item16805 = "";
|
|
--Cenarion Boots
|
|
Item16829 = "";
|
|
--Earthfury Boots
|
|
Item16837 = "";
|
|
--Gauntlets of Might
|
|
Item16863 = "";
|
|
--Lawbringer Boots
|
|
Item16859 = "";
|
|
};
|
|
|
|
|