Skip to content

Commit

Permalink
Updated ICC buff from 5% to 10%
Browse files Browse the repository at this point in the history
 Changes to be committed:
	modified:   sim/core/buffs.go
	modified:   ui/core/components/icon_inputs.ts
  • Loading branch information
NerdEgghead committed Dec 20, 2023
1 parent 832e56f commit 4cb4c30
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.05)
character.PseudoStats.DamageDealtMultiplier *= 1.05
character.PseudoStats.HealingTakenMultiplier *= 1.05
character.MultiplyStat(stats.Health, 1.1)
character.PseudoStats.DamageDealtMultiplier *= 1.1
character.PseudoStats.HealingTakenMultiplier *= 1.1
}

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(73762), 'strengthOfWrynn');
export const StrengthOfWrynn = makeBooleanRaidBuffInput(ActionId.fromSpellId(73824), '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 4cb4c30

Please sign in to comment.