From 0b8bc70a9d0d2bf488584bc493f203f2234d3206 Mon Sep 17 00:00:00 2001 From: RDW Date: Wed, 6 Mar 2024 10:25:02 +0100 Subject: [PATCH] DB: Added Clayscale Hornstrider (mount) This also seems to be obtainable from containers, but the addon doesn't currently support multiple sources for a single item. Will have to look into that eventually, but having the dig site boss be tracked is likely better than no tracking at all. --- DB/Mounts/Dragonflight.lua | 12 ++++++++++++ Locales.lua | 1 + 2 files changed, 13 insertions(+) diff --git a/DB/Mounts/Dragonflight.lua b/DB/Mounts/Dragonflight.lua index ecea329f..be21acef 100644 --- a/DB/Mounts/Dragonflight.lua +++ b/DB/Mounts/Dragonflight.lua @@ -300,6 +300,18 @@ local dragonflightMounts = { sourceText = L["This item can also be purchased from a vendor."], coords = { { m = CONSTANTS.UIMAPIDS.THE_EMERALD_DREAM } }, }, + -- 10.2.5 + ["Clayscale Hornstrider"] = { + cat = CONSTANTS.ITEM_CATEGORIES.DRAGONFLIGHT, + type = CONSTANTS.ITEM_TYPES.MOUNT, + method = CONSTANTS.DETECTION_METHODS.NPC, + name = L["Clayscale Hornstrider"], + spellId = 432610, + itemId = 212645, + npcs = { 208029 }, + chance = 200, + coords = { { m = CONSTANTS.UIMAPIDS.THE_EMERALD_DREAM } }, + }, } Rarity.ItemDB.MergeItems(Rarity.ItemDB.mounts, dragonflightMounts) diff --git a/Locales.lua b/Locales.lua index b02af5fb..f17368e5 100644 --- a/Locales.lua +++ b/Locales.lua @@ -2,6 +2,7 @@ local L L = LibStub("AceLocale-3.0"):NewLocale("Rarity", "enUS", true) -- L["AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"] = true +L["Clayscale Hornstrider"] = true L["Falling Star Catcher"] = true L["Falling Star Flinger"] = true L["Festive Trans-Dimensional Bird Whistle"] = true