Skip to content

Commit

Permalink
add strength of wrynn 30% + raid sim buff (#4217)
Browse files Browse the repository at this point in the history
  • Loading branch information
kayla-glick committed Feb 16, 2024
1 parent 4bb6c17 commit d0b4840
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 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.25)
character.PseudoStats.DamageDealtMultiplier *= 1.25
character.PseudoStats.HealingTakenMultiplier *= 1.25
character.MultiplyStat(stats.Health, 1.30)
character.PseudoStats.DamageDealtMultiplier *= 1.30
character.PseudoStats.HealingTakenMultiplier *= 1.30
}

if raidBuffs.ArcaneEmpowerment || raidBuffs.FerociousInspiration || raidBuffs.SanctifiedRetribution {
Expand Down
11 changes: 6 additions & 5 deletions ui/raid/settings_tab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export class SettingsTab extends SimTab {
protected buildTabContent() {
this.buildEncounterSettings();
this.buildConsumesSettings();
this.buildOtherSettings();

this.buildTankSettings();
this.buildAssignmentSettings();
this.buildOtherSettings();

this.buildBlessingsPicker();
this.buildSavedDataPickers();
Expand Down Expand Up @@ -90,10 +90,11 @@ export class SettingsTab extends SimTab {
}

private buildOtherSettings() {
// const raid = this.simUI.sim.raid;
// const contentBlock = new ContentBlock(this.column1, 'other-settings', {
// header: {title: 'Other'}
// });
const contentBlock = new ContentBlock(this.column2, 'other-settings', {
header: {title: 'Other'}
});

this.makeBooleanRaidIconBuffInput(contentBlock.bodyElement, ActionId.fromSpellId(73828), 'strengthOfWrynn');

// new BooleanPicker(contentBlock.bodyElement, this.simUI.sim.raid, {
// label: 'Stagger Stormstrikes',
Expand Down

0 comments on commit d0b4840

Please sign in to comment.