Skip to content

Commit

Permalink
further improvement to P2 Quadruple Slap
Browse files Browse the repository at this point in the history
  • Loading branch information
wexxlee committed Dec 4, 2024
1 parent 3c0de55 commit e8dbaad
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions ui/raidboss/data/07-dt/ultimate/futures_rewritten.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,11 +292,17 @@ const triggerSet: TriggerSet<Data> = {
{
// Cleansable debuff may be applied with first cast (9CFF)
// although there are ways to avoid appplication (e.g. Warden's Paean)
id: 'FRU P2 Quadruple Slap Debuff Collect',
id: 'FRU P2 Quadruple Slap Debuff Gain',
type: 'GainsEffect',
netRegex: { effectId: '1042', source: 'Usurper of Frost' },
netRegex: { effectId: '1042', source: 'Usurper of Frost', capture: false },
run: (data) => data.p2QuadrupleDebuffApplied = true,
},
{
id: 'FRU P2 Quadruple Slap Debuff Loss',
type: 'LosesEffect',
netRegex: { effectId: '1042', source: 'Usurper of Frost', capture: false },
run: (data) => data.p2QuadrupleDebuffApplied = false,
},
{
id: 'FRU P2 Quadruple Slap Second',
type: 'StartsUsing',
Expand Down

0 comments on commit e8dbaad

Please sign in to comment.