Skip to content

Commit

Permalink
expose Stormrage Cunning 2p, Genesis Cunning 4p
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Nov 21, 2024
1 parent 5acd7ff commit ed5093a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions sim/druid/item_sets_pve.go
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,8 @@ var ItemSetCunningOfStormrage = core.NewItemSet(core.ItemSet{
2: func(agent core.Agent) {
druid := agent.(DruidAgent).GetDruid()
druid.RegisterAura(core.Aura{
Label: "S03 - Item - T2- Druid - Feral 2P Bonus",
ActionID: core.ActionID{SpellID: 467207},
Label: "S03 - Item - T2- Druid - Feral 2P Bonus",
OnInit: func(aura *core.Aura, sim *core.Simulation) {
for _, dot := range druid.Rake.Dots() {
if dot != nil {
Expand Down Expand Up @@ -635,7 +636,8 @@ var ItemSetGenesisCunning = core.NewItemSet(core.ItemSet{
})

core.MakePermanent(druid.RegisterAura(core.Aura{
Label: "S03 - Item - TAQ - Druid - Feral 4P Bonus",
ActionID: core.ActionID{SpellID: 1213174},
Label: "S03 - Item - TAQ - Druid - Feral 4P Bonus",
OnSpellHitDealt: func(aura *core.Aura, sim *core.Simulation, spell *core.Spell, result *core.SpellResult) {
if !result.Outcome.Matches(core.OutcomeCrit) || !(spell == druid.Shred.Spell || spell == druid.MangleCat.Spell || spell == druid.FerociousBite.Spell) {
return
Expand Down

0 comments on commit ed5093a

Please sign in to comment.