Skip to content

Commit

Permalink
Merge pull request #696 from WowRarity/falling-star-toys
Browse files Browse the repository at this point in the history
Added Falling Star Flinger and Falling Star Catcher (toys)
  • Loading branch information
rdw-software authored Dec 23, 2023
2 parents 09e00aa + 1742aa7 commit 596db05
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 596db05

Please sign in to comment.