Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tracking for Arfus (Hallow's End 2023 pet) #667

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions DB/Pets/HolidayEvents.lua
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,23 @@ local holidayEventPets = {
coords = { { m = CONSTANTS.UIMAPIDS.DARKMOON_ISLAND, x = 75.6, y = 86.8 } },
holidayTexture = CONSTANTS.HOLIDAY_TEXTURES.DARKMOON_FAIRE,
},
["Arfus"] = {
cat = CONSTANTS.ITEM_CATEGORIES.HOLIDAY,
type = CONSTANTS.ITEM_TYPES.PET,
method = CONSTANTS.DETECTION_METHODS.USE,
name = L["Arfus"],
spellId = 406225,
itemId = 211271,
items = { 209024 },
chance = 100, -- Blind guess
groupSize = 5,
equalOdds = true,
creatureId = 203463,
lockDungeonId = 285,
holidayTexture = CONSTANTS.HOLIDAY_TEXTURES.HALLOWS_END,
coords = { { m = 435, i = true } },
sourceText = L["Can be contained in Loot-Filled Pumpkin, rewarded for defeating the World Event Dungeon during Hallow's End."],
},
}

Rarity.ItemDB.MergeItems(Rarity.ItemDB.pets, holidayEventPets)
1 change: 1 addition & 0 deletions Locales.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ local L
L = LibStub("AceLocale-3.0"):NewLocale("Rarity", "enUS", true)

-- L["AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"] = true
L["Arfus"] = true
L["Toggle Debug Window"] = true
L["Darkmoon Rabbit"] = true
L["Disgusting Vat"] = true
Expand Down
Loading