Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sim/common/mop/metagems.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func init() {

ApplyEffects: func(sim *core.Simulation, target *core.Unit, spell *core.Spell) {
baseDamage := sim.Roll(core.CalcScalingSpellEffectVarianceMinMax(proto.Class_ClassUnknown, 0.13300000131, 0.15000000596))
apDamage := 0.75 * core.Ternary(isHunter, spell.RangedAttackPower(), spell.MeleeAttackPower())
apDamage := 0.75 * core.Ternary(isHunter, spell.RangedAttackPower()*2, spell.MeleeAttackPower())

outcome := core.Ternary(isHunter, spell.OutcomeRangedHitAndCritNoBlock, spell.OutcomeMeleeSpecialNoBlockDodgeParry)
spell.CalcAndDealDamage(sim, target, baseDamage+apDamage, outcome)
Expand Down
Loading
Loading