Skip to content

Commit

Permalink
expose feral naxx auras for APLs
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Jan 13, 2025
1 parent ff11c61 commit 6ed6466
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions sim/druid/item_sets_pve_phase_7.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ func (druid *Druid) applyNaxxramasFeral2PBonus() {
}

druid.RegisterAura(core.Aura{
Label: label,
ActionID: core.ActionID{SpellID: 1218476}, // Tracking in APL
Label: label,
OnInit: func(aura *core.Aura, sim *core.Simulation) {
for _, dot := range druid.Rake.Dots() {
if dot == nil {
Expand All @@ -135,7 +136,8 @@ func (druid *Druid) applyNaxxramasFeral4PBonus() {
}

druid.RegisterAura(core.Aura{
Label: label,
ActionID: core.ActionID{SpellID: 1218477}, // Tracking in APL
Label: label,
OnInit: func(aura *core.Aura, sim *core.Simulation) {
druid.TigersFury.CD.Multiplier -= 50
},
Expand Down Expand Up @@ -168,7 +170,8 @@ func (druid *Druid) applyNaxxramasFeral6PBonus() {
})

core.MakePermanent(druid.RegisterAura(core.Aura{
Label: label,
ActionID: core.ActionID{SpellID: 1218478}, // Tracking in APL
Label: label,
OnPeriodicDamageDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) {
if spell.SpellSchool.Matches(core.SpellSchoolPhysical) && result.Target.MobType == proto.MobType_MobTypeUndead {
buffAura.Activate(sim)
Expand Down

0 comments on commit 6ed6466

Please sign in to comment.