Skip to content

Commit

Permalink
triggers build: raidboss: basic p11s mechanics (#5484) 728fa3a
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jun 2, 2023
1 parent e951c05 commit 5e0829e
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 0 deletions.
89 changes: 89 additions & 0 deletions 06-ew/raid/p11s.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,99 @@ Options.Triggers.push({
netRegex: { id: '822B', source: 'Themis', capture: false },
response: Responses.bleedAoe(),
},
{
id: 'P11S Jury Overruling Light',
type: 'StartsUsing',
netRegex: { id: '81E6', source: 'Themis', capture: false },
alertText: (_data, _matches, output) => output.text(),
outputStrings: {
text: {
en: 'Protean => Healer Stacks',
},
},
},
{
id: 'P11S Jury Overruling Dark',
type: 'StartsUsing',
netRegex: { id: '81E7', source: 'Themis', capture: false },
alertText: (_data, _matches, output) => output.text(),
outputStrings: {
text: {
en: 'Protean => Partners',
},
},
},
{
id: 'P11S Upheld Overruling Light',
type: 'StartsUsing',
netRegex: { id: '87D3', source: 'Themis', capture: false },
alertText: (_data, _matches, output) => output.text(),
outputStrings: {
text: {
en: 'Party In => Out + Healer Stacks',
},
},
},
{
id: 'P11S Upheld Overruling Dark',
type: 'StartsUsing',
netRegex: { id: '87D4', source: 'Themis', capture: false },
alertText: (_data, _matches, output) => output.text(),
outputStrings: {
text: {
en: 'Party Out => In + Partners',
},
},
},
{
id: 'P11S Divisive Overruling Light',
type: 'StartsUsing',
netRegex: { id: '81EC', source: 'Themis', capture: false },
alertText: (_data, _matches, output) => output.text(),
outputStrings: {
text: {
en: 'Sides => Healer Stacks + Out',
},
},
},
{
id: 'P11S Divisive Overruling Dark',
type: 'StartsUsing',
netRegex: { id: '81ED', source: 'Themis', capture: false },
alertText: (_data, _matches, output) => output.text(),
outputStrings: {
text: {
en: 'Sides => In + Partners',
},
},
},
{
id: 'P11S Dismissal Overruling Light',
type: 'StartsUsing',
netRegex: { id: '8784', source: 'Themis', capture: false },
alertText: (_data, _matches, output) => output.text(),
outputStrings: {
text: {
en: 'Knockback => Healer Stacks + Out',
},
},
},
{
id: 'P11S Dismissal Overruling Dark',
type: 'StartsUsing',
netRegex: { id: '8785', source: 'Themis', capture: false },
alertText: (_data, _matches, output) => output.text(),
outputStrings: {
text: {
en: 'Knockback => In + Partners',
},
},
},
],
timelineReplace: [
{
'locale': 'de',
'missingTranslations': true,
'replaceSync': {
'Themis': 'Themis',
},
Expand Down
2 changes: 2 additions & 0 deletions 06-ew/raid/p11s.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ hideall "--Reset--"
hideall "--sync--"

0.0 "--Reset--" sync / 21:........:4000000F:/ window 100000 jump 0

0.0 "--sync--" sync / 104:[^:]*:1($|:)/ window 0,1

0 comments on commit 5e0829e

Please sign in to comment.