Skip to content

Commit

Permalink
Merge pull request #3124 from wowsims/fixes
Browse files Browse the repository at this point in the history
Hunter mana cost reductions stack additively
  • Loading branch information
jimmyt857 authored May 28, 2023
2 parents f966a98 + ad1c693 commit 7648d15
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions sim/hunter/aimed_shot.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ func (hunter *Hunter) registerAimedShotSpell(timer *core.Timer) {

ManaCost: core.ManaCostOptions{
BaseCost: 0.08,
Multiplier: 1 *
(1 - 0.03*float64(hunter.Talents.Efficiency)) *
(1 - 0.05*float64(hunter.Talents.MasterMarksman)),
Multiplier: 1 -
0.03*float64(hunter.Talents.Efficiency) -
0.05*float64(hunter.Talents.MasterMarksman),
},
Cast: core.CastConfig{
DefaultCast: core.Cast{
Expand Down
6 changes: 3 additions & 3 deletions sim/hunter/black_arrow.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ func (hunter *Hunter) registerBlackArrowSpell(timer *core.Timer) {

ManaCost: core.ManaCostOptions{
BaseCost: 0.06,
Multiplier: 1 *
(1 - 0.03*float64(hunter.Talents.Efficiency)) *
(1 - 0.2*float64(hunter.Talents.Resourcefulness)),
Multiplier: 1 -
0.03*float64(hunter.Talents.Efficiency) -
0.2*float64(hunter.Talents.Resourcefulness),
},
Cast: core.CastConfig{
DefaultCast: core.Cast{
Expand Down
6 changes: 3 additions & 3 deletions sim/hunter/chimera_shot.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ func (hunter *Hunter) registerChimeraShotSpell() {

ManaCost: core.ManaCostOptions{
BaseCost: 0.12,
Multiplier: 1 *
(1 - 0.03*float64(hunter.Talents.Efficiency)) *
(1 - 0.05*float64(hunter.Talents.MasterMarksman)),
Multiplier: 1 -
0.03*float64(hunter.Talents.Efficiency) -
0.05*float64(hunter.Talents.MasterMarksman),
},
Cast: core.CastConfig{
DefaultCast: core.Cast{
Expand Down
6 changes: 3 additions & 3 deletions sim/hunter/steady_shot.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ func (hunter *Hunter) registerSteadyShotSpell() {

ManaCost: core.ManaCostOptions{
BaseCost: 0.05,
Multiplier: 1 *
(1 - 0.03*float64(hunter.Talents.Efficiency)) *
(1 - 0.05*float64(hunter.Talents.MasterMarksman)),
Multiplier: 1 -
0.03*float64(hunter.Talents.Efficiency) -
0.05*float64(hunter.Talents.MasterMarksman),
},
Cast: core.CastConfig{
DefaultCast: core.Cast{
Expand Down

0 comments on commit 7648d15

Please sign in to comment.