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 support for tracking Island Expedition collectibles from salvage crates #603

Merged
merged 2 commits into from
Aug 8, 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
4 changes: 0 additions & 4 deletions Core/EventHandlers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -531,10 +531,6 @@ local islandExpeditionCollectibles = {
"Enchanted Soup Stone",
"Magic Monkey Banana",
"Bad Mojo Banana",
---- Not yet implemented?
-- "Regenerating Banana Bunch", -- NYI as of 18/01/19
-- "Yaungol Oil Stove", -- NYI as of 18/01/19
-- "Jinyu Light Globe", -- NYI as of 18/01/19

-- Mounts
---- 8.0
Expand Down
39 changes: 30 additions & 9 deletions DB/Mounts/BattleForAzeroth.lua
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,8 @@ local bfaMounts = {
["Twilight Avenger"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = { 173950, 173989 },
name = L["Twilight Avenger"],
spellId = 279466,
itemId = 163584,
Expand All @@ -602,7 +603,8 @@ local bfaMounts = {
["Craghorn Chasm-Leaper"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = { 173992, 173950, 173949, 173993 },
name = L["Craghorn Chasm-Leaper"],
spellId = 279467,
itemId = 163583,
Expand All @@ -613,7 +615,8 @@ local bfaMounts = {
["Qinsho's Eternal Hound"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = { 173949, 173993 },
name = L["Qinsho's Eternal Hound"],
spellId = 279469,
itemId = 163582,
Expand All @@ -624,7 +627,8 @@ local bfaMounts = {
["Squawks"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = { 173991, 173950 },
name = L["Squawks"],
spellId = 254811,
itemId = 163586,
Expand All @@ -635,7 +639,8 @@ local bfaMounts = {
["Surf Jelly"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = { 173996, 173997, 173990, 173992 },
name = L["Surf Jelly"],
spellId = 278979,
itemId = 163585,
Expand Down Expand Up @@ -732,7 +737,8 @@ local bfaMounts = {
["Risen Mare"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = { 173988, 173996 },
name = L["Risen Mare"],
spellId = 288722,
itemId = 166466,
Expand All @@ -743,7 +749,8 @@ local bfaMounts = {
["Island Thunderscale"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = { 173989 },
name = L["Island Thunderscale"],
spellId = 288721,
itemId = 166467,
Expand All @@ -754,7 +761,8 @@ local bfaMounts = {
["Bloodgorged Hunter"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = { 173997, 173990, 173988, 173992, 173989, 173993, 173950 },
name = L["Bloodgorged Hunter"],
spellId = 288720,
itemId = 166468,
Expand All @@ -765,7 +773,20 @@ local bfaMounts = {
["Stonehide Elderhorn"] = {
cat = CONSTANTS.ITEM_CATEGORIES.BFA,
type = CONSTANTS.ITEM_TYPES.MOUNT,
method = CONSTANTS.DETECTION_METHODS.SPECIAL,
method = CONSTANTS.DETECTION_METHODS.USE,
items = {
173996,
173997,
173994,
173992,
173990,
173988,
173949,
173991,
173989,
173950,
173993,
},
name = L["Stonehide Elderhorn"],
spellId = 288712,
itemId = 166470,
Expand Down
Loading
Loading