
sod pseudo expertise
Alessandro-Barbieri opened this issue ยท 2 comments
some sod items have an expertise like effect
https://www.wowhead.com/classic/spell=1213288/increased-expertise-1#used-by-item
https://www.wowhead.com/classic/spell=1219540/s03-item-naxxramas-warrior-protection-2p-bonus
https://www.wowhead.com/classic/spell=1219356/s03-item-naxxramas-rogue-tank-2p-bonus
https://www.wowhead.com/classic/spell=1219382/s03-item-naxxramas-shaman-tank-2p-bonus
https://www.wowhead.com/classic/spell=1219205/s03-item-naxxramas-paladin-protection-2p-bonus
https://www.wowhead.com/classic/spell=1219474/s03-item-naxxramas-warlock-tank-2p-bonus
https://www.wowhead.com/classic/spell=1218482/s03-item-naxxramas-druid-guardian-2p-bonus
https://www.wowhead.com/classic/spell=1219954/soul-of-animalistic-expertise
https://www.wowhead.com/classic/spell=1213407/timeworn-expertise#used-by-item
https://www.wowhead.com/classic/spell=1213289/increased-expertise-2#used-by-item
Any idea on how to know if an item is timeworn
?
I was thinking about https://warcraft.wiki.gg/wiki/ItemLink but I can't test it without an item in my bags
You should be able to use the following code to grab the itemLink of any item:
local item = Item:CreateFromItemID(<itemId>)
item:ContinueOnItemLoad(function()
local itemLink = item:GetItemLink()
end)