From a3c57acf931f88c9aead731a645f10614cbeb315 Mon Sep 17 00:00:00 2001 From: RDW Date: Wed, 2 Aug 2023 20:49:54 +0200 Subject: [PATCH] DB: Added mounts from 10.1.5 Time Rift event containers They're also obtainable from the bosses directly, but multiple methods of detection aren't currently supported. Otherwise, resolves #566. --- DB/Mounts/Dragonflight.lua | 61 ++++++++++++++++++++++++++++++++++++++ Locales.lua | 6 ++++ 2 files changed, 67 insertions(+) diff --git a/DB/Mounts/Dragonflight.lua b/DB/Mounts/Dragonflight.lua index fba2c74b..7b796d96 100644 --- a/DB/Mounts/Dragonflight.lua +++ b/DB/Mounts/Dragonflight.lua @@ -134,6 +134,67 @@ local dragonflightMounts = { chance = 33, -- An average. Different sources have different chances. coords = { { m = CONSTANTS.UIMAPIDS.ZARALEK_CAVERN } }, }, + -- 10.1.5 mounts + ["Reins of the Scourgebound Vanquisher"] = { + cat = CONSTANTS.ITEM_CATEGORIES.DRAGONFLIGHT, + type = CONSTANTS.ITEM_TYPES.MOUNT, + method = CONSTANTS.DETECTION_METHODS.USE, + name = L["Reins of the Scourgebound Vanquisher"], + spellId = 414334, + itemId = 206680, + items = { 207583 }, + chance = 500, + sourceText = L["This item can also be purchased from a vendor."], + coords = { { m = CONSTANTS.UIMAPIDS.THALDRASZUS } }, + }, + ["Perfected Juggernaut"] = { + cat = CONSTANTS.ITEM_CATEGORIES.DRAGONFLIGHT, + type = CONSTANTS.ITEM_TYPES.MOUNT, + method = CONSTANTS.DETECTION_METHODS.USE, + name = L["Perfected Juggernaut"], + spellId = 414328, + itemId = 206679, + items = { 207583 }, + chance = 500, + sourceText = L["This item can also be purchased from a vendor."], + coords = { { m = CONSTANTS.UIMAPIDS.THALDRASZUS } }, + }, + ["Felstorm Dragon"] = { + cat = CONSTANTS.ITEM_CATEGORIES.DRAGONFLIGHT, + type = CONSTANTS.ITEM_TYPES.MOUNT, + method = CONSTANTS.DETECTION_METHODS.USE, + name = L["Felstorm Dragon"], + spellId = 414326, + itemId = 206676, + items = { 207583 }, + chance = 500, + sourceText = L["This item can also be purchased from a vendor."], + coords = { { m = CONSTANTS.UIMAPIDS.THALDRASZUS } }, + }, + ["Sulfur Hound's Leash"] = { + cat = CONSTANTS.ITEM_CATEGORIES.DRAGONFLIGHT, + type = CONSTANTS.ITEM_TYPES.MOUNT, + method = CONSTANTS.DETECTION_METHODS.USE, + name = L["Sulfur Hound's Leash"], + spellId = 414327, + itemId = 206678, + items = { 207583 }, + chance = 500, + sourceText = L["This item can also be purchased from a vendor."], + coords = { { m = CONSTANTS.UIMAPIDS.THALDRASZUS } }, + }, + ["Gold-Toed Albatross"] = { + cat = CONSTANTS.ITEM_CATEGORIES.DRAGONFLIGHT, + type = CONSTANTS.ITEM_TYPES.MOUNT, + method = CONSTANTS.DETECTION_METHODS.USE, + name = L["Gold-Toed Albatross"], + spellId = 414324, + itemId = 206675, + items = { 207583 }, + chance = 500, + sourceText = L["This item can also be purchased from a vendor."], + coords = { { m = CONSTANTS.UIMAPIDS.THALDRASZUS } }, + }, } Rarity.ItemDB.MergeItems(Rarity.ItemDB.mounts, dragonflightMounts) diff --git a/Locales.lua b/Locales.lua index 344c7666..0df1c15f 100644 --- a/Locales.lua +++ b/Locales.lua @@ -2,6 +2,12 @@ local L L = LibStub("AceLocale-3.0"):NewLocale("Rarity", "enUS", true) -- L["AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"] = true +L["This item can also be purchased from a vendor."] = true +L["Reins of the Scourgebound Vanquisher"] = true +L["Perfected Juggernaut"] = true +L["Felstorm Dragon"] = true +L["Sulfur Hound's Leash"] = true +L["Gold-Toed Albatross"] = true L["Can be used to summon %s, but only once per day"] = true L["Strange Goop"] = true L["This item appears to be a guaranteed drop for the player who summoned %s"] = true