Skip to content
Open
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
27 changes: 27 additions & 0 deletions ui/raidboss/data/07-dt/raid/r10s.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@ const triggerSet: TriggerSet<Data> = {
condition: (data) => {
return data.snakingDebuff !== 'fire';
},
durationSeconds: (data) => data.phase === 'arenaSplit' ? 8 : 3,
infoText: (data, matches, output) => {
// During snaking it is always move since the baits are too close
if (data.phase === 'snaking')
Expand Down Expand Up @@ -535,6 +536,32 @@ const triggerSet: TriggerSet<Data> = {
},
},
},
{
id: 'R10S Reverse Alley-oop/Alley-oop Double-dip 2nd Hit',
// TODO: Handle Arena Split with boss/postion checking?
type: 'Ability',
netRegex: { id: ['B5E0', 'B5DD'], source: 'Deep Blue', capture: true },
condition: (data) => {
return data.snakingDebuff !== 'fire' && data.phase !== 'arenaSplit';
},
infoText: (data, matches, output) => {
// During saking it is always move since the baits are too close.
if (data.phase === 'snaking')
return output.move!();
return matches.id === 'B5E0' ? output.stay!() : output.move!();
},
outputStrings: {
move: Outputs.moveAway,
stay: {
en: 'Stay',
de: 'Bleib stehen',
fr: 'Restez',
cn: '停',
ko: '대기',
tc: '停',
},
},
},
{
id: 'R10S Xtreme Spectacular',
type: 'StartsUsing',
Expand Down