-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #750 from WowRarity/734-untested-tww-updates
Add a first batch of TWW collectibles
- Loading branch information
Showing
10 changed files
with
185 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
local addonName, addonTable = ... | ||
|
||
local L = LibStub("AceLocale-3.0"):GetLocale("Rarity") | ||
local CONSTANTS = addonTable.constants | ||
|
||
local twwMounts = { | ||
-- 11.0 mounts | ||
["Reins of the Sureki Skyrazor"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.MOUNT, | ||
method = CONSTANTS.DETECTION_METHODS.NPC, | ||
name = L["Reins of the Sureki Skyrazor"], | ||
itemId = 224147, | ||
spellId = 451486, | ||
npcs = { 219778 }, | ||
groupSize = 5, | ||
equalOdds = true, | ||
chance = 100, -- No data available | ||
instanceDifficulties = { [CONSTANTS.INSTANCE_DIFFICULTIES.MYTHIC_DUNGEON] = true }, | ||
coords = { { i = true, m = CONSTANTS.UIMAPIDS.NERUBAR_PALACE } }, | ||
}, | ||
["Beledar's Spawn"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.MOUNT, | ||
method = CONSTANTS.DETECTION_METHODS.NPC, | ||
name = L["Beledar's Spawn"], | ||
itemId = 223315, | ||
spellId = 448941, | ||
npcs = { 207802 }, | ||
chance = 100, -- No data available | ||
coords = { { m = CONSTANTS.UIMAPIDS.HALLOWFALL } }, | ||
}, | ||
["Regurgitated Mole Reins"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.MOUNT, | ||
method = CONSTANTS.DETECTION_METHODS.NPC, | ||
name = L["Regurgitated Mole Reins"], | ||
itemId = 223501, | ||
spellId = 449258, | ||
npcs = { 220285 }, | ||
chance = 100, -- No data available | ||
coords = { { m = CONSTANTS.UIMAPIDS.THE_RINGING_DEEPS } }, | ||
}, | ||
["Wick's Lead"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.MOUNT, | ||
method = CONSTANTS.DETECTION_METHODS.NPC, | ||
name = L["Wick's Lead"], | ||
itemId = 225548, | ||
spellId = 449264, | ||
npcs = { 210797 }, | ||
groupSize = 5, | ||
equalOdds = true, | ||
chance = 100, -- No data available | ||
instanceDifficulties = { [CONSTANTS.INSTANCE_DIFFICULTIES.MYTHIC_DUNGEON] = true }, | ||
coords = { { m = CONSTANTS.UIMAPIDS.DARKFLAME_CLEFT, i = true } }, | ||
}, | ||
["Alunira"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.MOUNT, | ||
method = CONSTANTS.DETECTION_METHODS.COLLECTION, | ||
name = L["Alunira"], | ||
itemId = 223270, | ||
collectedItemId = { 224025 }, | ||
spellId = 447213, | ||
chance = 10, | ||
coords = { { m = CONSTANTS.UIMAPIDS.ISLE_OF_DORN } }, | ||
}, | ||
["Dauntless Imperial Lynx"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.MOUNT, | ||
method = CONSTANTS.DETECTION_METHODS.USE, | ||
name = L["Dauntless Imperial Lynx"], | ||
itemId = 223318, | ||
spellId = 448979, | ||
items = { 228741 }, | ||
chance = 100, -- No data available | ||
coords = { { i = true, m = CONSTANTS.UIMAPIDS.HALLOWFALL } }, | ||
}, | ||
} | ||
|
||
Rarity.ItemDB.MergeItems(Rarity.ItemDB.mounts, twwMounts) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
local addonName, addonTable = ... | ||
|
||
local L = LibStub("AceLocale-3.0"):GetLocale("Rarity") | ||
local CONSTANTS = addonTable.constants | ||
|
||
local twwPets = { | ||
-- 11.0 pets | ||
["Bop"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.PET, | ||
method = CONSTANTS.DETECTION_METHODS.NPC, | ||
name = L["Bop"], | ||
npcs = { 218523 }, | ||
itemId = 223155, | ||
spellId = 446024, | ||
chance = 5, -- No data available | ||
creatureId = 222318, | ||
groupSize = 5, | ||
equalOdds = true, | ||
instanceDifficulties = { [CONSTANTS.INSTANCE_DIFFICULTIES.MYTHIC_DUNGEON] = true }, | ||
coords = { { m = CONSTANTS.UIMAPIDS.CINDERBREW_MEADERY, i = true } }, | ||
}, | ||
} | ||
|
||
Rarity.ItemDB.MergeItems(Rarity.ItemDB.pets, twwPets) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
local addonName, addonTable = ... | ||
|
||
local L = LibStub("AceLocale-3.0"):GetLocale("Rarity") | ||
local CONSTANTS = addonTable.constants | ||
|
||
local twwToysAndItems = { | ||
-- 11.0 items and toys | ||
["Crackling Shard"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.ITEM, | ||
method = CONSTANTS.DETECTION_METHODS.ZONE, | ||
name = L["Crackling Shard"], | ||
itemId = 224025, | ||
spellId = 450842, -- Irrelevant | ||
zones = { tostring(CONSTANTS.UIMAPIDS.ISLE_OF_DORN) }, | ||
chance = 2000, | ||
sourceText = L["Dropped by any mob in Isle of Dorn (except minor mobs). 10 of these can be combined to pierce Alunira's shield, allowing combat and a guaranteed drop of Alunira."], | ||
coords = { { m = CONSTANTS.UIMAPIDS.ISLE_OF_DORN } }, | ||
repeatable = true, | ||
}, | ||
["Malfunctioning Mechsuit"] = { | ||
cat = CONSTANTS.ITEM_CATEGORIES.TWW, | ||
type = CONSTANTS.ITEM_TYPES.ITEM, | ||
method = CONSTANTS.DETECTION_METHODS.NPC, | ||
name = L["Malfunctioning Mechsuit"], | ||
npcs = { 219440 }, | ||
itemId = 226683, | ||
spellId = 442358, | ||
chance = 1, -- No data available | ||
groupSize = 5, | ||
equalOdds = true, | ||
instanceDifficulties = { [CONSTANTS.INSTANCE_DIFFICULTIES.MYTHIC_DUNGEON] = true }, | ||
coords = { { m = CONSTANTS.UIMAPIDS.THE_STONEVAULT, i = true } }, | ||
}, | ||
} | ||
|
||
Rarity.ItemDB.MergeItems(Rarity.ItemDB.toys, twwToysAndItems) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters