Skip to content

Commit

Permalink
Merge pull request #576 from WowRarity/566-df-timerift-mounts
Browse files Browse the repository at this point in the history
Add mount from 10.1.5 Time Rift event containers
  • Loading branch information
rdw-software authored Aug 2, 2023
2 parents 944c1c1 + a3c57ac commit 479c1af
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
61 changes: 61 additions & 0 deletions DB/Mounts/Dragonflight.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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)
6 changes: 6 additions & 0 deletions Locales.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 479c1af

Please sign in to comment.