@@ -112,17 +112,14 @@ function RCLootCouncil:ExportTokenData(nextID)
112
112
frame .exportFrame .edit :SetText (exports )
113
113
end
114
114
115
- -- REVIEW: Doesn't work. Neither does the new C_TooltipInfo system.
116
115
--- Fetches the slot of a token from its tooltip by
117
116
--- searching the `leftText` of each line for keywords.
118
117
--- @param id ItemID The itemID of the item to scan.
119
118
--- @return string #The slot name, or "" if not found.
120
119
function RCLootCouncil :GetTokenSlotFromTooltip (id )
121
120
local lines = self :GetTooltipLines (id )
122
121
for _ , text in ipairs (lines ) do
123
- print (" Text:" , text )
124
122
if text and text :sub (0 , 4 ) == " Use:" then
125
- self .Log :d (" Found text" , text )
126
123
for invSlot , keywords in pairs (keyWords ) do
127
124
for _ , keyword in pairs (keywords ) do
128
125
if text :lower ():find (keyword ) then
@@ -809,6 +806,26 @@ _G.RCTokenTable = {
809
806
[207479 ] = " ShoulderSlot" , -- Mystic Smoldering Dreamheart,
810
807
[207480 ] = " ShoulderSlot" , -- Venerated Smoldering Dreamheart,
811
808
[207481 ] = " ShoulderSlot" , -- Zenith Smoldering Dreamheart,
809
+ [217316 ] = " ChestSlot" , -- Dreadful Fleeting Hourglass,
810
+ [217317 ] = " ChestSlot" , -- Mystic Fleeting Hourglass,
811
+ [217318 ] = " ChestSlot" , -- Venerated Fleeting Hourglass,
812
+ [217319 ] = " ChestSlot" , -- Zenith Fleeting Hourglass,
813
+ [217320 ] = " HandsSlot" , -- Dreadful Quickened Bronzestone,
814
+ [217321 ] = " HandsSlot" , -- Mystic Quickened Bronzestone,
815
+ [217322 ] = " HandsSlot" , -- Venerated Quickened Bronzestone,
816
+ [217323 ] = " HandsSlot" , -- Zenith Quickened Bronzestone,
817
+ [217324 ] = " HeadSlot" , -- Dreadful Decelerating Chronograph,
818
+ [217325 ] = " HeadSlot" , -- Mystic Decelerating Chronograph,
819
+ [217326 ] = " HeadSlot" , -- Venerated Decelerating Chronograph,
820
+ [217327 ] = " HeadSlot" , -- Zenith Decelerating Chronograph,
821
+ [217328 ] = " LegsSlot" , -- Dreadful Ephemeral Hypersphere,
822
+ [217329 ] = " LegsSlot" , -- Mystic Ephemeral Hypersphere,
823
+ [217330 ] = " LegsSlot" , -- Venerated Ephemeral Hypersphere,
824
+ [217331 ] = " LegsSlot" , -- Zenith Ephemeral Hypersphere,
825
+ [217332 ] = " ShoulderSlot" , -- Dreadful Synchronous Timestrand,
826
+ [217333 ] = " ShoulderSlot" , -- Mystic Synchronous Timestrand,
827
+ [217334 ] = " ShoulderSlot" , -- Venerated Synchronous Timestrand,
828
+ [217335 ] = " ShoulderSlot" , -- Zenith Synchronous Timestrand,
812
829
}
813
830
814
831
-- The base item level for the token on normal difficulty
0 commit comments