Skip to content

Commit 597d440

Browse files
author
github-actions
committed
triggers build: raidboss: Enuo EX Passage of Naught adjustment (#1059)
The boss will follow the tank during this mechanic and thus may not be in the middle of the arena; updates the output from "under" to "middle" to more clearly indicate the safe zone as arena-relative instead of boss-relative. 3cbb0b9
1 parent 0eba86f commit 597d440

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

07-dt/trial/enuo-ex.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ Options.Triggers.push({
774774
}
775775
// Four "small" lines
776776
if (line4 !== undefined)
777-
return output.under();
777+
return output.middle();
778778
// We're only concerned with the "big" line, as max melee perpindicular to that line will be safe
779779
const big = line1.type === 'big' ? line1 : (line2.type === 'big' ? line2 : line3);
780780
const bigDirNum = Directions.xyTo8DirNum(big.x, big.y, center.x, center.y);
@@ -792,7 +792,7 @@ Options.Triggers.push({
792792
...Directions.outputStrings8Dir,
793793
intercards: Outputs.intercards,
794794
cardinals: Outputs.cardinals,
795-
under: Outputs.getUnder,
795+
middle: Outputs.goIntoMiddle,
796796
go: {
797797
en: 'Go ${dir1}/${dir2} Max Melee',
798798
de: 'Geh ${dir1}/${dir2} Max Nahkampf',
@@ -816,6 +816,7 @@ Options.Triggers.push({
816816
},
817817
{
818818
id: 'EnuoEx Naught Hunts Tether',
819+
// 12x hits per target
819820
type: 'Tether',
820821
netRegex: { id: ['0194', '0195'], capture: true },
821822
condition: Conditions.targetIsYou(),
@@ -825,7 +826,7 @@ Options.Triggers.push({
825826
infoText: (_data, _matches, output) => output.chasingPuddle(),
826827
outputStrings: {
827828
chasingPuddle: {
828-
en: 'Chasing puddle on you',
829+
en: '12x Chasing puddle on you',
829830
de: 'Verfolgende Fläche auf DIR',
830831
fr: 'Flaque chassante sur VOUS',
831832
cn: '追踪地火点名',

0 commit comments

Comments
 (0)