diff --git a/ui/rogue/presets.ts b/ui/rogue/presets.ts index 0a73e4e09a..b8423a1f4f 100644 --- a/ui/rogue/presets.ts +++ b/ui/rogue/presets.ts @@ -67,6 +67,18 @@ export const AssassinationTalents182 = { }), }; +export const AssassinationTalentsBF = { + name: 'Assassination Blade Flurry', + data: SavedTalents.create({ + talentsString: '005303104352100520103231-005205005003001-501', + glyphs: Glyphs.create({ + major1: RogueMajorGlyph.GlyphOfMutilate, + major2: RogueMajorGlyph.GlyphOfTricksOfTheTrade, + major3: RogueMajorGlyph.GlyphOfBladeFlurry, + }) + }), +}; + export const SubtletyTalents = { name: 'Subtlety', data: SavedTalents.create({ diff --git a/ui/rogue/sim.ts b/ui/rogue/sim.ts index 88eeb3e7b5..85c69316e7 100644 --- a/ui/rogue/sim.ts +++ b/ui/rogue/sim.ts @@ -293,6 +293,7 @@ export class RogueSimUI extends IndividualSimUI { talents: [ Presets.AssassinationTalents137, Presets.AssassinationTalents182, + Presets.AssassinationTalentsBF, Presets.CombatHackTalents, Presets.CombatCQCTalents, Presets.SubtletyTalents,