Skip to content

Commit

Permalink
Update ICC buff to 25% (#4207)
Browse files Browse the repository at this point in the history
* update ICC buff to 25%

* update actionId
  • Loading branch information
kayla-glick authored Jan 29, 2024
1 parent cb8392c commit cab1918
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions sim/core/buffs.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ func applyBuffEffects(agent Agent, raidBuffs *proto.RaidBuffs, partyBuffs *proto
}

if raidBuffs.StrengthOfWrynn {
character.MultiplyStat(stats.Health, 1.2)
character.PseudoStats.DamageDealtMultiplier *= 1.2
character.PseudoStats.HealingTakenMultiplier *= 1.2
character.MultiplyStat(stats.Health, 1.25)
character.PseudoStats.DamageDealtMultiplier *= 1.25
character.PseudoStats.HealingTakenMultiplier *= 1.25
}

if raidBuffs.ArcaneEmpowerment || raidBuffs.FerociousInspiration || raidBuffs.SanctifiedRetribution {
Expand Down
2 changes: 1 addition & 1 deletion ui/core/components/icon_inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export const DefensiveCooldownBuff = InputHelpers.makeMultiIconInput([
], 'Defensive CDs');

// Misc Buffs
export const StrengthOfWrynn = makeBooleanRaidBuffInput(ActionId.fromSpellId(73826), 'strengthOfWrynn');
export const StrengthOfWrynn = makeBooleanRaidBuffInput(ActionId.fromSpellId(73827), 'strengthOfWrynn');
export const RetributionAura = makeBooleanRaidBuffInput(ActionId.fromSpellId(54043), 'retributionAura');
export const BraidedEterniumChain = makeBooleanPartyBuffInput(ActionId.fromSpellId(31025), 'braidedEterniumChain');
export const ChainOfTheTwilightOwl = makeBooleanPartyBuffInput(ActionId.fromSpellId(31035), 'chainOfTheTwilightOwl');
Expand Down

0 comments on commit cab1918

Please sign in to comment.