|
| 1 | +import ZoneId from '../../../../../resources/zone_id'; |
| 2 | +import { OopsyData } from '../../../../../types/data'; |
| 3 | +import { OopsyTriggerSet } from '../../../../../types/oopsy'; |
| 4 | + |
| 5 | +export type Data = OopsyData; |
| 6 | + |
| 7 | +const triggerSet: OopsyTriggerSet<Data> = { |
| 8 | + zoneId: ZoneId.AacHeavyweightM1Savage, |
| 9 | + damageWarn: { |
| 10 | + 'R9S Half Moon 1': 'B377', |
| 11 | + 'R9S Half Moon 2': 'B378', |
| 12 | + 'R9S Half Moon 3': 'B379', |
| 13 | + 'R9S Half Moon 4': 'B37A', |
| 14 | + 'R9S Half Moon 5': 'B37B', |
| 15 | + 'R9S Half Moon 6': 'B37C', |
| 16 | + 'R9S Half Moon 7': 'B37D', |
| 17 | + 'R9S Half Moon 8': 'B37E', |
| 18 | + 'R9S Vamp Stomp': 'B374', |
| 19 | + 'R9S Blast Beat AoE': 'B375', |
| 20 | + 'R9S Coffinfiller 1': 'B368', |
| 21 | + 'R9S Coffinfiller 2': 'B369', |
| 22 | + 'R9S Coffinfiller 3': 'B36A', |
| 23 | + 'R9S Aetherletting Cone 1': 'B38F', |
| 24 | + 'R9S Aetherletting Cone 2': 'B390', |
| 25 | + 'R9S Aetherletting Cone 3': 'B391', |
| 26 | + 'R9S Aetherletting Cross AoE': 'B393', |
| 27 | + 'R9S Pulping Pulse': 'B373', |
| 28 | + 'R9S Sanguine Scratch 1': 'B3A4', |
| 29 | + 'R9S Sanguine Scratch 2': 'B3A5', |
| 30 | + 'R9S Sanguine Scratch 3': 'B3A6', |
| 31 | + 'R9S Sanguine Scratch 4': 'B3A7', |
| 32 | + 'R9S Breakdown Drop 1': 'B3A8', |
| 33 | + 'R9S Breakdown Drop 2': 'B3AA', |
| 34 | + 'R9S Breakwing Beat 1': 'B3A9', |
| 35 | + 'R9S Breakwing Beat 2': 'B3AB', |
| 36 | + }, |
| 37 | + damageFail: { |
| 38 | + 'R9S Dead Wake': 'B367', // Coffinmaker advance |
| 39 | + }, |
| 40 | + gainsEffectWarn: { |
| 41 | + 'R9S Flesh Wound': 'B7E', // chakrams, saws |
| 42 | + 'R9S Electrocution': 'C02', // Deadly Doornail |
| 43 | + }, |
| 44 | + shareWarn: { |
| 45 | + 'R9S Blast Beat Player': 'B376', |
| 46 | + 'R9S Plummet': 'B38B', // Fatal Flail tower |
| 47 | + }, |
| 48 | + shareFail: { |
| 49 | + 'R9S Hardcore Small': 'B37F', // Tankbuster |
| 50 | + 'R9S Hardcore Big': 'B380', // Tankbuster |
| 51 | + 'R9S Aetherletting Marker': 'B392', |
| 52 | + 'R9S Bloody Bondage': 'B396', // Hell in a Cell tower |
| 53 | + }, |
| 54 | +}; |
| 55 | + |
| 56 | +export default triggerSet; |
0 commit comments