Skip to content

Commit

Permalink
Timeworn Decay to 3%
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Nov 21, 2024
1 parent 006ecc4 commit 5acd7ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sim/common/sod/item_effects/phase_6.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,14 +345,14 @@ func ObsidianEdgedAura(itemID int32, agent core.Agent) {
}

// https://www.wowhead.com/classic/spell=1214155/timeworn-decay
// Increases the damage dealt by all of your damage over time spells by 2% per piece of Timeworn armor equipped.
// Increases the damage dealt by all of your damage over time spells by 3% per piece of Timeworn armor equipped.
func TimewornDecayAura(agent core.Agent) {
character := agent.GetCharacter()
if character.PseudoStats.TimewornBonus == 0 {
return
}

multiplier := 0.02 * float64(character.PseudoStats.TimewornBonus)
multiplier := 0.03 * float64(character.PseudoStats.TimewornBonus)

character.OnSpellRegistered(func(spell *core.Spell) {
if spell.SpellCode != 0 && len(spell.Dots()) > 0 {
Expand Down

0 comments on commit 5acd7ff

Please sign in to comment.