Skip to content

Commit 0b4b5fe

Browse files
committed
fix tank shaman t2.5 4p health/damage
1 parent a58386f commit 0b4b5fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sim/shaman/item_sets_pve_phase_6.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,16 +118,16 @@ func (shaman *Shaman) applyTAQTank2PBonus() {
118118
}))
119119
}
120120

121-
// Your Spirit of the Alpha also increases your health by 5%, threat by 20%, and damage by 5% when cast on self.
121+
// Your Spirit of the Alpha also increases your health by 5%, threat by 25%, and damage by 5% when cast on self.
122122
func (shaman *Shaman) applyTAQTank4PBonus() {
123123
label := "S03 - Item - TAQ - Shaman - Tank 4P Bonus"
124124
if shaman.HasAura(label) {
125125
return
126126
}
127127

128-
damageMultiplier := 1.5
128+
damageMultiplier := 1.05
129129
threatMultiplier := 1.25
130-
healthMultiplier := 1.5
130+
healthMultiplier := 1.05
131131
statDep := shaman.NewDynamicMultiplyStat(stats.Health, healthMultiplier)
132132

133133
core.MakePermanent(

0 commit comments

Comments
 (0)