We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should be 1.08 spell damage in Cata
func CurseOfElementsAura(target *Unit) *Aura { aura := target.GetOrRegisterAura(Aura{ Label: "Curse of Elements", ActionID: ActionID{SpellID: 47865}, Duration: time.Minute * 5, OnGain: func(aura *Aura, sim *Simulation) { aura.Unit.AddStatsDynamic(sim, stats.Stats{stats.ArcaneResistance: -165, stats.FireResistance: -165, stats.FrostResistance: -165, stats.ShadowResistance: -165, stats.NatureResistance: -165}) }, OnExpire: func(aura *Aura, sim *Simulation) { aura.Unit.AddStatsDynamic(sim, stats.Stats{stats.ArcaneResistance: 165, stats.FireResistance: 165, stats.FrostResistance: 165, stats.ShadowResistance: 165, stats.NatureResistance: 165}) }, }) spellDamageEffect(aura, 1.13) return aura }
The text was updated successfully, but these errors were encountered:
[Debuffs] Fixup curse of elements
37b8194
* Fixes: wowsims#158
Successfully merging a pull request may close this issue.
Should be 1.08 spell damage in Cata
The text was updated successfully, but these errors were encountered: