Skip to content

Commit

Permalink
update totem of thunderous strike
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Dec 27, 2024
1 parent a7098a2 commit ea41560
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions sim/shaman/items.go
Original file line number Diff line number Diff line change
Expand Up @@ -577,19 +577,20 @@ func init() {
shaman.RegisterAura(core.Aura{
Label: "Improved Stormstrike/Windfury Weapon",
OnInit: func(aura *core.Aura, sim *core.Simulation) {
affectedSpells := core.FilterSlice(
core.Flatten(
[][]*core.Spell{
{shaman.StormstrikeMH},
{shaman.StormstrikeOH},
{shaman.WindfuryWeaponMH},
{shaman.WindfuryWeaponOH},
},
),
func(spell *core.Spell) bool { return spell != nil },
)
for _, spell := range []*core.Spell{shaman.StormstrikeMH, shaman.StormstrikeOH} {
if spell == nil {
continue
}

// In-game testing seems to be only a base points mod for Stormstrike
spell.BaseDamageMultiplierAdditive += 0.03
}

for _, spell := range []*core.Spell{shaman.WindfuryWeaponMH, shaman.WindfuryWeaponOH} {
if spell == nil {
continue
}

for _, spell := range affectedSpells {
spell.DamageMultiplierAdditive += 0.03
}
},
Expand Down

0 comments on commit ea41560

Please sign in to comment.