You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
546 B

local addonName, addonTable = ...
local L = LibStub("AceLocale-3.0"):GetLocale("Rarity")
local CONSTANTS = addonTable.constants
local classicToys = {
["Piccolo of the Flaming Fire"] = {
cat = CONSTANTS.ITEM_CATEGORIES.CLASSIC,
type = CONSTANTS.ITEM_TYPES.ITEM,
isToy = true,
method = CONSTANTS.DETECTION_METHODS.NPC,
name = L["Piccolo of the Flaming Fire"],
itemId = 13379,
npcs = { 10558 },
chance = 4,
coords = { { m = 317, i = true } },
},
}
Rarity.ItemDB.MergeItems(Rarity.ItemDB.toys, classicToys)