Skip to content

Commit

Permalink
DB: Added Falling Star Flinger and Catcher (toys)
Browse files Browse the repository at this point in the history
According to wowhead, these 2022 Winter Veil rewards are now obtainable from Stolen Presents... As is tradition?
  • Loading branch information
rdw-software committed Dec 23, 2023
1 parent 09e00aa commit 1742aa7
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions DB/Toys/HolidayEvents.lua
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,32 @@ local holidayEventToys = {
questId = { 6983, 7043 },
coords = { { m = CONSTANTS.UIMAPIDS.HILLSBRAD_FOOTHILLS, x = 43.6, y = 39.6 } },
},
["Falling Star Flinger"] = {
cat = CONSTANTS.ITEM_CATEGORIES.HOLIDAY,
type = CONSTANTS.ITEM_TYPES.ITEM,
isToy = true,
method = CONSTANTS.DETECTION_METHODS.USE,
name = L["Falling Star Flinger"],
itemId = 191925,
items = { 116762 },
chance = 100, -- Blind guess
holidayTexture = CONSTANTS.HOLIDAY_TEXTURES.WINTERS_VEIL,
questId = { 6983, 7043 },
coords = { { m = CONSTANTS.UIMAPIDS.HILLSBRAD_FOOTHILLS, x = 43.6, y = 39.6 } },
},
["Falling Star Catcher"] = {
cat = CONSTANTS.ITEM_CATEGORIES.HOLIDAY,
type = CONSTANTS.ITEM_TYPES.ITEM,
isToy = true,
method = CONSTANTS.DETECTION_METHODS.USE,
name = L["Falling Star Catcher"],
itemId = 191937,
items = { 116762 },
chance = 100, -- Blind guess
holidayTexture = CONSTANTS.HOLIDAY_TEXTURES.WINTERS_VEIL,
questId = { 6983, 7043 },
coords = { { m = CONSTANTS.UIMAPIDS.HILLSBRAD_FOOTHILLS, x = 43.6, y = 39.6 } },
},
}

Rarity.ItemDB.MergeItems(Rarity.ItemDB.toys, holidayEventToys)
2 changes: 2 additions & 0 deletions Locales.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ local L
L = LibStub("AceLocale-3.0"):NewLocale("Rarity", "enUS", true)

-- L["AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"] = true
L["Falling Star Catcher"] = true
L["Falling Star Flinger"] = true
L["Festive Trans-Dimensional Bird Whistle"] = true
L["Moltenbinder's Disciple"] = true
L["Molten Lava Ball"] = true
Expand Down

0 comments on commit 1742aa7

Please sign in to comment.