[FEATURE] Add timewalking trinket Wrathstone
Kanaxai opened this issue ยท 6 comments
Before You Begin
- I confirm that I have downloaded the latest version of the addon.
- I am not playing on a private server.
- I checked for an existing, open ticket for this request and was not able to find one.
- I edited the title of this feature request (above) so that it describes the issue I am reporting.
Feature Request
Wrathstone (item id=156000) is a particularly powerful on-use WotLK timewalking trinket, please add it so it can be recommended by Hekili.
Additional Information
No response
Contact Information
No response
Can you get the name and spellID of the in-game buff when you activate the trinket? You can use an addon like IdTip or a weakaura.
Code so far for Items.lua
in case anyone else sees this.
wrathstone = {
cast = 0,
cooldown = 120,
gcd = "off",
item = 156000,
toggle = "cooldowns",
proc = "primary",
self_buff = "wrathstone",
handler = function()
applyBuff( "wrathstone")
end,
auras = {
wrathstone = {
id = 64800,
duration = 20,
max_stack = 1
},
},
},
Should we create expansion-specific directories and add these items into Items.lua
files within those directories? I imagine that Timewalking will continue to happen for the foreseeable future and it's odd to add these expansion-specific trinkets/items to the existing file in TheWarWithin
.
Should we create expansion-specific directories and add these items into
Items.lua
files within those directories? I imagine that Timewalking will continue to happen for the foreseeable future and it's odd to add these expansion-specific trinkets/items to the existing file inTheWarWithin
.
Probably, good idea. I was also wondering about the UI especially for turning on/off trinkets, wonder if we did start tagging trinkets if you could do a sub-dropdown. So select "All", "current expansion", "PvP", "Timewalking", etc. Easier to find what you're looking for.
Can you get the name and spellID of the in-game buff when you activate the trinket? You can use an addon like IdTip or a weakaura.
Code so far for
Items.lua
in case anyone else sees this.wrathstone = { cast = 0, cooldown = 120, gcd = "off", item = 156000, toggle = "cooldowns", proc = "primary", self_buff = "BUFFNAME", handler = function() applyBuff( "BUFFNAME") end, auras = { BUFFNAME = { id = BUFFID, duration = 20, max_stack = 1 }, }, },
Can you get the name and spellID of the in-game buff when you activate the trinket? You can use an addon like IdTip or a weakaura.
Code so far forItems.lua
in case anyone else sees this.wrathstone = { cast = 0, cooldown = 120, gcd = "off", item = 156000, toggle = "cooldowns", proc = "primary", self_buff = "BUFFNAME", handler = function() applyBuff( "BUFFNAME") end, auras = { BUFFNAME = { id = BUFFID, duration = 20, max_stack = 1 }, }, },
Thanks!