forked from quisquous/cactbot-user
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Options.Triggers.push({ | ||
zoneId: ZoneId.AbyssosTheSeventhCircleSavage, | ||
filename: 'user p7s', | ||
timeline: (data) => { | ||
if (data.job !== 'DRK') | ||
return; | ||
return mitMapToTimeline({ | ||
26.3: ['rampart', 'missionary'], | ||
91.7: ['shadow wall'], | ||
132.9: 'missionary', | ||
157.1: ['rampart'], | ||
258.3: ['shadow wall'], | ||
324.2: ['rampart'], | ||
376.1: ['reprisal'], | ||
429.7: ['missionary'], | ||
460.8: ['reprisal'], | ||
643.1: ['missionary'], | ||
656.4: ['reprisal'], | ||
}); | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Options.Triggers.push({ | ||
zoneId: ZoneId.AbyssosTheEighthCircleSavage, | ||
filename: 'user p8s', | ||
timeline: (data) => { | ||
if (data.job !== 'DRK') | ||
return; | ||
return mitMapToTimeline({ | ||
5016: ['reprisal', 'missionary'], | ||
5027.2: ['rampart', 'oblation', 'living dead'], | ||
5091.7: 'reprisal', | ||
5094.8: 'reprisal', | ||
5106.9: ['rampart', 'shadow wall', 'oblation'], | ||
5118.6: 'missionary', | ||
5177.1: 'reprisal', | ||
5180.1: ['oblation', 'tbn'], | ||
5226.3: ['missionary', 'rampart', 'oblation'], | ||
5308.0: 'reprisal', | ||
5320.2: ['rampart', 'shadow wall', 'oblation'], | ||
5331.7: 'missionary', | ||
5424.5: 'reprisal', | ||
5453.8: 'missionary', | ||
// really 5483, but can't use until 5484.5 | ||
5484.5: 'reprisal', | ||
}); | ||
}, | ||
}); |