Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

warrior: add spell debuffs for bryntroll #3953

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ui/warrior/sim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { GemColor } from '../core/proto/common.js';
import { Profession } from '../core/proto/common.js';


import * as IconInputs from '../core/components/icon_inputs.js';
import * as OtherInputs from '../core/components/other_inputs.js';
import * as Mechanics from '../core/constants/mechanics.js';

Expand Down Expand Up @@ -126,6 +127,7 @@ export class WarriorSimUI extends IndividualSimUI<Spec.SpecWarrior> {
sunderArmor: true,
curseOfWeakness: TristateEffect.TristateEffectRegular,
faerieFire: TristateEffect.TristateEffectImproved,
ebonPlaguebringer: true,
}),
},

Expand All @@ -139,6 +141,9 @@ export class WarriorSimUI extends IndividualSimUI<Spec.SpecWarrior> {
rotationInputs: WarriorInputs.WarriorRotationConfig,
// Buff and Debuff inputs to include/exclude, overriding the EP-based defaults.
includeBuffDebuffInputs: [
// just for Bryntroll
IconInputs.SpellDamageDebuff,
IconInputs.SpellHitDebuff,
],
excludeBuffDebuffInputs: [
],
Expand Down
Loading