Oneth's Intuition Procs (Balance Druid Legendary)
nickdekruijk opened this issue ยท 1 comments
Which version of AdiButtonAuras are you using (enter the exact version number here)?
2.0.11
How did you install the addon (curse client/manually)?
Twitch Client
If using the curse client, what type of release did you install (alpha/beta/release)?
Release
If your report is about a missing or wrong spell provide the following information:
- Your class: Druid
- Your spec: Balance
When casting Starsurge (78674) you have a chance to get Oneth's Overconfidence (209407) buff which gives a free Starfall (191034)
Casting Starfall (191034) has a chance to give the Oneth's Intuition (209406) buff which gives a free Starsurge (78674)
So it would be nice to have AdiButtonAuras glow the Starsurge (78674) button when I have the Oneth's Overconfidence (209407) buff and to have Starfall (191034) glow when I have the Oneth's Intuition (209406) buff.
I'm trying to figure out if I can do this myself with a custom User rule but no luck so far.
After giving it some more tries I figured out how to do it with a custom rule:
return {
SelfBuffAliases {
78674, -- Starsurge
209406 -- Oneth's Intuition
},
--SelfBuffAliases {
--191034, -- Starfall
--209407 -- Oneth's Intuition
--},
PassiveModifier {
191034,
191034,
209407,
"player",
"flash"
}
}
I commented out the 2nd SelfBuffAliases since I rather had it flash instead of the green 'good' border so I added the PassiveModifier for that purpose. I also wanted to keep the red 'bad' border on Starfall for the Stellar Empowerment debuff that comes out of the box.