Skip to content

Commit

Permalink
Merge pull request #4138 from NerdEgghead/master
Browse files Browse the repository at this point in the history
Updated ICC buff to 15%
  • Loading branch information
NerdEgghead authored Jan 9, 2024
2 parents bc5f992 + 80c3c43 commit 57a3f1e
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.1)
character.PseudoStats.DamageDealtMultiplier *= 1.1
character.PseudoStats.HealingTakenMultiplier *= 1.1
character.MultiplyStat(stats.Health, 1.15)
character.PseudoStats.DamageDealtMultiplier *= 1.15
character.PseudoStats.HealingTakenMultiplier *= 1.15
}

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 @@ -171,7 +171,7 @@ export const DefensiveCooldownBuff = InputHelpers.makeMultiIconInput([
], 'Defensive CDs');

// Misc Buffs
export const StrengthOfWrynn = makeBooleanRaidBuffInput(ActionId.fromSpellId(73824), 'strengthOfWrynn');
export const StrengthOfWrynn = makeBooleanRaidBuffInput(ActionId.fromSpellId(73825), '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 57a3f1e

Please sign in to comment.