diff --git a/00-misc/the_masked_carnivale.js b/00-misc/the_masked_carnivale.js index e732cdc5eb..6acc5a6b1a 100644 --- a/00-misc/the_masked_carnivale.js +++ b/00-misc/the_masked_carnivale.js @@ -1380,7 +1380,6 @@ Options.Triggers.push({ timelineReplace: [ { 'locale': 'de', - 'missingTranslations': true, 'replaceSync': { 'Apademak': 'Apademak', 'Arena Catoblepas': 'Arena-Catblepus', @@ -1402,8 +1401,10 @@ Options.Triggers.push({ 'Crom Dubh': 'Crom Dubh', 'Durinn': 'Durinn', 'Epilogi': 'Epilogi', + 'Gilded Cyclops': 'gülden(?:e|er|es|en) Zyklop', 'Gladiatorial Node': 'kämpferisch(?:e|er|es|en) System', 'Gogo, Master of Mimicry': 'Gogo (?:der|die|das) Mime', + 'Goldor': 'Goldor', 'Guimauve': 'Guimauve', 'Hydnora': 'Hydnora', 'Kreios': 'Kreios', @@ -1423,7 +1424,6 @@ Options.Triggers.push({ }, { 'locale': 'fr', - 'missingTranslations': true, 'replaceSync': { 'Apademak': 'Apademak', 'Arena Catoblepas': 'catoblépas de l\'arène', @@ -1445,8 +1445,10 @@ Options.Triggers.push({ 'Crom Dubh': 'Crom Dubh', 'Durinn': 'Durinn', 'Epilogi': 'Epilogi', + 'Gilded Cyclops': 'cyclope de Goldor', 'Gladiatorial Node': 'sphère gladiatrice', 'Gogo, Master of Mimicry': 'Gogo le mime', + 'Goldor': 'Goldor', 'Guimauve': 'Guimauve', 'Hydnora': 'Hydnora', 'Kreios': 'Kreios', @@ -1466,7 +1468,6 @@ Options.Triggers.push({ }, { 'locale': 'ja', - 'missingTranslations': true, 'replaceSync': { 'Apademak': 'アペデマク', 'Arena Catoblepas': 'アリーナ・カトブレパス', @@ -1488,8 +1489,10 @@ Options.Triggers.push({ 'Crom Dubh': 'クロムドゥーブ', 'Durinn': 'ドゥリン', 'Epilogi': 'エペロギ', + 'Gilded Cyclops': 'ゴールドル・サイクロプス', 'Gladiatorial Node': '闘技システム', 'Gogo, Master of Mimicry': 'ものまね士ゴゴ', + 'Goldor': 'ゴールドル', 'Guimauve': 'ギモーヴ', 'Hydnora': 'ヒドノラ', 'Kreios': 'クレイオス', diff --git a/06-ew/dungeon/mount_rokkon.js b/06-ew/dungeon/mount_rokkon.js index 0fe860286a..a53bda7bd7 100644 --- a/06-ew/dungeon/mount_rokkon.js +++ b/06-ew/dungeon/mount_rokkon.js @@ -1,10 +1,11 @@ // TODO: find network lines for Yozakura Seal of Riotous Bloom arrows (nothing in network logs) +// TODO: find network lines for Enenra Out of the Smoke (nothing in network logs) // TODO: Yozakura Seasons of the Fleeting // you would need to track 8384 (pinwheel) and 8383 (line) *abilities* (not incorrect casts) // and use their positions and rotations to know whether to say front/back/card/intercard // she repositions beforehand, so front/back of her is a known safe position. -// TODO: Moko safe spots for Iron Rain? -// TODO: are Moko Auspice water/fire tied to a path or random? +// TODO: Moko safe spots for Iron Rain +// TODO: Gorai path 06 Humble Hammer safe spots for which Ball of Levin hit by Humble Hammer const sealMap = { '837A': 'fire', '837B': 'wind', @@ -32,6 +33,8 @@ Options.Triggers.push({ initData: () => { return { yozakuraSeal: [], + yozakuraTatami: [], + enenraPipeCleanerCollect: [], }; }, triggers: [ @@ -151,6 +154,80 @@ Options.Triggers.push({ data.yozakuraSeal = data.yozakuraSeal.filter((x) => x !== seal); }, }, + { + id: 'Rokkon Yozakura Art of the Fluff', + type: 'StartsUsing', + netRegex: { id: '839E', source: 'Shiromaru' }, + alertText: (_data, matches, output) => { + const xPos = parseFloat(matches.x); + // center = 737 + // east = 765 + // west = 709 + if (xPos > 737) + return output.lookWest(); + return output.lookEast(); + }, + outputStrings: { + lookWest: { + en: 'Look West', + de: 'Schau nach Westen', + }, + lookEast: { + en: 'Look East', + de: 'Schau nach Osten', + }, + }, + }, + { + id: 'Rokkon Yozakura Tatami Collect', + type: 'MapEffect', + // 00020001 = shake + // 00080004 = go back to normal + // 80038CA2 = flip + netRegex: { flags: '00020001' }, + run: (data, matches) => data.yozakuraTatami.push(matches.location), + }, + { + id: 'Rokkon Yozakura Tatami-gaeshi', + type: 'StartsUsing', + netRegex: { id: '8395', source: 'Yozakura the Fleeting', capture: false }, + alertText: (data, _matches, output) => { + const map = { + '37': 'outsideNorth', + '38': 'insideNorth', + '39': 'insideSouth', + '3A': 'outsideSouth', + }; + for (const location of data.yozakuraTatami) + delete map[location]; + // Call inside before outside. + const callOrder = ['38', '39', '37', '3A']; + for (const key of callOrder) { + const outputKey = map[key]; + if (outputKey !== undefined) + return output[outputKey](); + } + }, + run: (data) => data.yozakuraTatami = [], + outputStrings: { + outsideNorth: { + en: 'Outside North', + de: 'Nördlich außen', + }, + insideNorth: { + en: 'Inside North', + de: 'Nördlich innen', + }, + insideSouth: { + en: 'Inside South', + de: 'Südlich innen', + }, + outsideSouth: { + en: 'Outside South', + de: 'Südlich außen', + }, + }, + }, // --------- Moko the Restless ---------- { id: 'Rokkon Moko Kenki Release', @@ -286,44 +363,238 @@ Options.Triggers.push({ }, }, }, + // --------- Gorai the Uncaged ---------- + { + id: 'Rokkon Gorai Unenlightemnment', + type: 'StartsUsing', + netRegex: { id: '8500', source: 'Gorai the Uncaged', capture: false }, + response: Responses.aoe(), + }, + { + id: 'Rokkon Gorai Fighting Spirits', + type: 'StartsUsing', + netRegex: { id: '84F8', source: 'Gorai the Uncaged', capture: false }, + response: Responses.aoe(), + }, + { + id: 'Rokkon Gorai Biwa Breaker', + type: 'StartsUsing', + netRegex: { id: '84FD', source: 'Gorai the Uncaged', capture: false }, + response: Responses.aoe(), + }, + { + id: 'Rokkon Gorai Torching Torment', + type: 'StartsUsing', + netRegex: { id: '84FE', source: 'Gorai the Uncaged' }, + response: Responses.tankBuster(), + }, + { + id: 'Rokkon Gorai Summon Collect', + type: 'StartsUsing', + // 84D5 = Flickering Flame + // 84D6 = Sulphuric Stone + // 84D7 = Flame and Sulphur + netRegex: { id: ['84D5', '84D6', '84D7'], source: 'Gorai the Uncaged' }, + run: (data, matches) => data.goraiSummon = matches, + }, + { + id: 'Rokkon Gorai Plectrum of Power', + type: 'StartsUsing', + netRegex: { id: '84D8', source: 'Gorai the Uncaged', capture: false }, + alertText: (data, _matches, output) => { + const id = data.goraiSummon?.id; + if (id === '84D5') + return output.lines(); + if (id === '84D6') + return output.rocks(); + if (id === '84D7') + return output.both(); + }, + run: (data) => delete data.goraiSummon, + outputStrings: { + lines: { + en: 'Avoid Expanding Lines', + de: 'Weiche den expandierenden Linien aus', + }, + rocks: { + en: 'Avoid Expanding Rocks', + de: 'Weiche den expandierenden Steinen aus', + }, + both: { + en: 'Avoid Expanding Rocks/Lines', + de: 'Weiche den expandierenden Steinen/Linien aus', + }, + }, + }, + { + id: 'Rokkon Gorai Morphic Melody', + type: 'StartsUsing', + netRegex: { id: '84D9', source: 'Gorai the Uncaged', capture: false }, + alertText: (data, _matches, output) => { + const id = data.goraiSummon?.id; + if (id === '84D5') + return output.lines(); + if (id === '84D6') + return output.rocks(); + if (id === '84D7') + return output.both(); + }, + run: (data) => delete data.goraiSummon, + outputStrings: { + lines: Outputs.goIntoMiddle, + rocks: { + en: 'Stand on Rock', + de: 'Steh auf einem Stein', + }, + both: { + en: 'Stand on Rock + Line', + de: 'Steh auf einem Stein + Linie', + }, + }, + }, + { + id: 'Rokkon Gorai Malformed Prayer', + type: 'StartsUsing', + netRegex: { id: '84E1', source: 'Gorai the Uncaged', capture: false }, + alertText: (_data, _matches, output) => output.text(), + outputStrings: { + text: { + en: 'Stand in All Towers', + de: 'Steh in allen Türmen', + }, + }, + }, + // --------- Enenra ---------- + { + id: 'Rokkon Enenra Flagrant Combustion', + type: 'StartsUsing', + netRegex: { id: '8042', source: 'Enenra', capture: false }, + // Can be used during Smoke and Mirrors clone phase + suppressSeconds: 5, + response: Responses.aoe(), + }, + { + id: 'Rokkon Enenra Smoke Rings', + type: 'StartsUsing', + netRegex: { id: '8053', source: 'Enenra', capture: false }, + response: Responses.getOut(), + }, + { + id: 'Rokkon Enenra Clearing Smoke', + type: 'StartsUsing', + netRegex: { id: '8052', source: 'Enenra', capture: false }, + response: Responses.knockback(), + }, + { + id: 'Rokkon Enenra Pipe Cleaner Collect', + type: 'Tether', + netRegex: { id: '0011' }, + run: (data, matches) => data.enenraPipeCleanerCollect.push(matches.source), + }, + { + id: 'Rokkon Enenra Pipe Cleaner', + type: 'StartsUsing', + netRegex: { id: '8054', source: 'Enenra', capture: false }, + condition: (data) => data.enenraPipeCleanerCollect.includes(data.me), + alertText: (_data, _matches, output) => output.text(), + run: (data) => data.enenraPipeCleanerCollect = [], + outputStrings: { + text: Outputs.earthshakerOnYou, + }, + }, + { + id: 'Rokkon Enenra Snuff', + type: 'StartsUsing', + netRegex: { id: '8056', source: 'Enenra' }, + response: Responses.tankCleave(), + }, + { + id: 'Rokkon Enenra Uplift', + type: 'Ability', + // If hit by snuff, move away from uplift. + netRegex: { id: '8056', source: 'Enenra' }, + condition: Conditions.targetIsYou(), + response: Responses.moveAway(), + }, ], timelineReplace: [ + { + 'locale': 'en', + 'replaceText': { + 'Clearing Smoke/Smoke Rings': 'Clearing Smoke/Rings', + 'Morphic Melody/Plectrum of Power': 'Morphic/Plectrum', + 'Plectrum of Power/Morphic Melody': 'Plectrum/Morphic', + }, + }, { 'locale': 'de', 'replaceSync': { 'Ancient Katana': 'antik(?:e|er|es|en) Katana', 'Ashigaru Kyuhei': 'Ashigaru Kyuhei', + 'Ball of Levin': 'Elektrosphäre', + 'Enenra': 'Enenra', + 'Gorai the Uncaged': 'Gorai (?:der|die|das) Entfesselt(?:e|er|es|en)', 'Ill-come Tengu': 'ungebeten(?:e|er|es|en) Tengu', 'Last Glimpse': 'Letzter Blick', 'Mirrored Yozakura': 'gedoppelt(?:e|er|es|en) Yozakura', 'Moko the Restless': 'Moko (?:der|die|das) Rastlos(?:e|er|es|en)', 'Oni\'s Claw': 'Oni-Klaue', + 'Shiromaru': 'Shiromaru', + 'Shishu White Baboon': 'weiß(?:e|er|es|en) Shishu-Pavian', + 'The Hall Of Becoming': 'Halle des Werdens', + 'The Hall Of Temptation': 'Halle der Versuchungen', 'The Hall Of The Unseen': 'Halle der Verhüllung', + 'The Pond Of Spring Rain': 'Teich des Frühlingsregens', 'Yozakura the Fleeting': 'Yozakura (?:der|die|das) Vergänglich(?:e|er|es|en)', }, 'replaceText': { + '\\(cast\\)': '(wirken)', 'Art of the Fireblossom': 'Kunst der Feuerblüte', + 'Art of the Fluff': 'Kunst der Flauschigkeit', 'Art of the Windblossom': 'Kunst der Windblüte', 'Azure Auspice': 'Azurblauer Kenki-Fokus', + 'Biwa Breaker': 'Biwa-Brecher', 'Boundless Azure': 'Grenzenloses Azurblau', 'Boundless Scarlet': 'Grenzenloses Scharlachrot', 'Bunshin': 'Doppeltes Ich', + 'Burst': 'Explosion', + 'Clearing Smoke': 'Rauchauflösung', 'Clearout': 'Ausräumung', + 'Donden-gaeshi': 'Donden-gaeshi', 'Double Kasumi-giri': 'Doppeltes Kasumi-giri', 'Drifting Petals': 'Blütenblätterregen', 'Explosion': 'Explosion', + 'Falling Rock': 'Steinschlag', + 'Fighting Spirits': 'Kräftigender Schluck', + 'Fire Spread': 'Brandstiftung', + 'Fireblossom Flare': 'Auflodern der Feuerblüte', + 'Flagrant Combustion': 'Abscheuliches Anfackeln', + 'Flame and Sulphur': 'Flamme und Schwefel', + 'Flickering Flame': 'Flackernde Flamme', 'Ghastly Grasp': 'Gruselgriff', 'Glory Neverlasting': 'Trichterwinde', + 'Humble Hammer': 'Entehrender Hammer', 'Iai-kasumi-giri': 'Iai-kasumi-giri', 'Icebloom': 'Eisblüte', + 'Impure Purgation': 'Flammenwind', + 'Into the Fire': 'Blutgrätsche', 'Iron Rain': 'Eisenregen', 'Kenki Release': 'Kenki-Entfesselung', + 'Kiseru Clamor': 'Blutschwaden-Klatsche', 'Kuge Rantsui': 'Kuge Rantsui', + 'Levinblossom Lance': 'Blitz der Gewitterblüte', 'Levinblossom Strike': 'Grollen der Gewitterblüte', + 'Malformed Prayer': 'Unheil des Perlenkranzes', 'Moonless Night': 'Mondlose Nacht', + 'Morphic Melody': 'Morphende Melodie', 'Mud Pie': 'Schlammklumpen', 'Mudrain': 'Schlammblüte', 'Oka Ranman': 'Oka Ranman', + 'Out of the Smoke': 'Rauchwolke', + 'Pipe Cleaner': 'Klärende Aktion', + 'Plectrum of Power': 'Plektron der Macht', + 'Pure Shock': 'Elektrische Entladung', + 'Rousing Reincarnation': 'Fluch der Verwandlung', 'Scarlet Auspice': 'Scharlachroter Kenki-Fokus', 'Seal Marker': 'Siegel Marker', 'Seal of Riotous Bloom': 'Siegel des Wildblühens', @@ -332,17 +603,37 @@ Options.Triggers.push({ 'Season Indicator': 'Shikunshi Indikator', 'Season of Element': 'Shikunshi des Elements', 'Seasons of the Fleeting': 'Shikunshi', + 'Self-destruct': 'Selbstzerstörung', 'Shadowflight': 'Schattenschlag', + '(? rain path @@ -114,8 +114,7 @@ hideall "--sync--" 1790.5 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:838F:/ 1793.5 "--sync--" sync / 1[56]:[^:]*:Yozakura the Fleeting:838F:/ window 30,30 forcejump 1663.8 - -# ALL ENCOUNTER ABILITIES +# YOZAKURA ABILITIES (ALL PATHS) # 1961 attack # 8368 Art of the Fireblossom circle cast and damage # 8369 Art of the Windblossom donut cast and damage @@ -130,6 +129,11 @@ hideall "--sync--" # 837B Seal of the Windblossom wind marker # 837C Seal of the Levinblossom thunder marker # 837D Seal of the Rainblossom rain marker +# 83A9 Glory Neverlasting cast and damage tankbuster +# 83AA Kuge Rantsui cast and damage aoe +# 8612 --sync-- repositioning + +# YOZAKURA ABILITIES (LEFT PATH) # 837E Bunshin self-targeted cast and ability to summon clone # 837F Shadowflight self-targeted cast and ability # 8380 Shadowflight clone backstab damage @@ -152,9 +156,6 @@ hideall "--sync--" # 838C Icebloom cast and damage for three chasing circles # 838D Mud Pie self-targeted cast and ability # 838E Mud Pie cast and damage for mud line aoes -# 83A9 Glory Neverlasting cast and damage tankbuster -# 83AA Kuge Rantsui cast and damage aoe -# 8612 --sync-- repositioning # 86F0 Windblossom Whirl ongoing donut damage for repeated donuts @@ -360,7 +361,7 @@ hideall "--sync--" 3343.9 "--sync--" sync / 1[56]:[^:]*:Moko the Restless:85AF:/ window 30,30 forcejump 3131.4 -# ALL ENCOUNTER ABILITIES +# MOKO ABILITIES # 8587 Iai-kasumi-giri cast and damage for back-safe attack # 8588 Iai-kasumi-giri cast and damage for front-safe attack # 8589 Iai-kasumi-giri cast and damage for left-safe attack @@ -406,3 +407,410 @@ hideall "--sync--" # 86D2 Spearpoint Push ongoing damage from Spearman's Orders # 871C --sync-- unknown ability during Spearman's Orders # 878A --sync-- auto damage + + +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# +# Yozakura the Fleeting (middle path) # +#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~# + +# -p 83A9:4011.6 +# -ii 8396 8399 839A 839D 839F + +4000.0 "--sync--" sync / 00:0839::The Hall Of Temptation will be sealed off/ window 10000,0 +4011.6 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ + +# -> door +4016.7 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8394:/ window 20,20 jump 4116.7 +4019.7 "Tatami Trap?" #sync / 1[56]:[^:]*:Yozakura the Fleeting:8394:/ + +# -> rope +4015.7 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8369:/ window 20,20 jump 4315.7 +4020.7 "Art of the Windblossom?" #sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ + + +# door +4116.7 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8394:/ +4119.7 "Tatami Trap" sync / 1[56]:[^:]*:Yozakura the Fleeting:8394:/ +4129.8 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ +4135.9 "Tatami-gaeshi" sync / 1[56]:[^:]*:Yozakura the Fleeting:8395:/ +4146.2 "Art of the Windblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ + +4155.3 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ +4160.4 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +4164.5 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ +#4164.7 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +#4166.7 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +4173.9 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ +4176.9 "Seal of the Blossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ + +4184.0 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +4188.2 "Tatami Trap" sync / 1[56]:[^:]*:Yozakura the Fleeting:8394:/ +4195.4 "Levinblossom Lance 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:839[78]:/ duration 5 +4207.7 "Levinblossom Lance 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:839[78]:/ duration 5 +4217.7 "Tatami-gaeshi" sync / 1[56]:[^:]*:Yozakura the Fleeting:8395:/ + +4224.9 "Art of the Fireblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ +4234.0 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ +4239.1 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +4243.2 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ +#4243.2 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +#4245.2 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +#4247.2 "Seal Marker 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +#4249.2 "Seal Marker 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +4256.8 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ +4259.9 "Seal of the Blossom 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ +4264.9 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ +4267.9 "Seal of the Blossom 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ +4280.9 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ +4289.1 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ + +4293.2 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +4297.3 "Tatami Trap" sync / 1[56]:[^:]*:Yozakura the Fleeting:8394:/ window 30,30 forcejump 4188.2 + + +# rope +4315.7 "--sync--" sync / 14:[^:]*:Yozakura the Fleeting:8369:/ +4320.7 "Art of the Windblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8369:/ +4329.8 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ + +4334.9 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +4339.1 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ +#4039.3 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +#4041.3 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +4348.6 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ +4351.8 "Seal of the Blossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ + +4358.8 "--north--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +4363.1 "Silent Whistle" sync / 1[56]:[^:]*:Yozakura the Fleeting:839B:/ +4373.2 "Donden-gaeshi" sync / 1[56]:[^:]*:Yozakura the Fleeting:839C:/ +4384.5 "Art of the Fluff" sync / 1[56]:[^:]*:Shiromaru:839E:/ +4386.5 "Fireblossom Flare" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A0:/ +4391.6 "Fireblossom Flare" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A0:/ +4393.5 "Donden-gaeshi" sync / 1[56]:[^:]*:Yozakura the Fleeting:839C:/ +4404.8 "Art of the Fluff" sync / 1[56]:[^:]*:Shiromaru:839E:/ +4406.8 "Fireblossom Flare" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A0:/ +4411.9 "Fireblossom Flare" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A0:/ +4417.8 "Art of the Fireblossom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8368:/ + +4427.0 "Oka Ranman" sync / 1[56]:[^:]*:Yozakura the Fleeting:836E:/ +4432.1 "--middle--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +4436.4 "Seal of the Fleeting" sync / 1[56]:[^:]*:Yozakura the Fleeting:8379:/ +#4436.6 "Seal Marker 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +#4438.6 "Seal Marker 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +#4440.6 "Seal Marker 3" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +#4442.6 "Seal Marker 4" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[ABCD]:/ +4450.1 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ +4453.2 "Seal of the Blossom 1" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ +4458.2 "Seal of Riotous Bloom" sync / 1[56]:[^:]*:Yozakura the Fleeting:8374:/ +4461.4 "Seal of the Blossom 2" sync / 1[56]:[^:]*:Yozakura the Fleeting:837[5678]:/ +4474.3 "Kuge Rantsui" sync / 1[56]:[^:]*:Yozakura the Fleeting:83AA:/ +4482.5 "Glory Neverlasting" sync / 1[56]:[^:]*:Yozakura the Fleeting:83A9:/ + +4486.6 "--north--" sync / 1[56]:[^:]*:Yozakura the Fleeting:8612:/ +4490.9 "Silent Whistle" sync / 1[56]:[^:]*:Yozakura the Fleeting:839B:/ window 50,50 jump 4363.1 + + +# YOZAKURA ABILITIES (MIDDLE PATH) +# 8394 Tatami Trap cast and self-targeted ability for floor shaking +# 8395 Tatami-gaeshi cast and self-targeted ability for floor flipping +# 8396 Tatami-gaeshi cast and damage for floor flip +# 8397 Levinblossom Lance cast and self-targeted for blue counterclockwise line aoes +# 8398 Levinblossom Lance cast and self-targeted for orange clockwise line aoes +# 8399 Levinblossom Lance cast and self-targeted ability for 839A +# 839A Levinblossom Lance damage for rotating lance line aoe +# 839B Silent Whistle cast and self-targeted ability to summon dogs +# 839C Donden-gaeshi cast and self-targeted ability tethering dogs +# 839D Art of the Fluff cast and damage for lookaway from Kuromaru/Shibamaru +# 839E Art of the Fluff cast and damage for lookaway from Shiromaru +# 839F Fireblossom Flare cast and self-targeted ability to summon ground circles +# 83A0 Fireblossom Flare cast and damage for ground circle aoes + + +#~~~~~~~~~~~~~~~~~~~# +# Gorai the Uncaged # +#~~~~~~~~~~~~~~~~~~~# + +# -p 8500:5017.6 +# -it "Shishu White Baboon" +# -ii 84D4 8501 84EE 84E6 84E5 84E9 84E0 84FF 84F9 84F7 84F4 84F5 + +5000.0 "--sync--" sync / 00:0839::The Hall Of Becoming will be sealed off/ window 10000,0 +5012.6 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:8500:/ +5017.6 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8500:/ + +5027.1 "Flickering Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84D5:/ +5037.4 "Plectrum of Power" sync / 1[56]:[^:]*:Gorai the Uncaged:84D8:/ +5040.1 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:84DA:/ + +5047.3 "Flickering Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84D5:/ +5057.6 "Morphic Melody" sync / 1[56]:[^:]*:Gorai the Uncaged:84D9:/ +5060.3 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:84DB:/ + +5072.6 "Sulphuric Stone" sync / 1[56]:[^:]*:Gorai the Uncaged:84D6:/ +5082.9 "Plectrum of Power" sync / 1[56]:[^:]*:Gorai the Uncaged:84D8:/ +5085.6 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:84DD:/ + +5092.8 "Sulphuric Stone" sync / 1[56]:[^:]*:Gorai the Uncaged:84D6:/ +5103.1 "Morphic Melody" sync / 1[56]:[^:]*:Gorai the Uncaged:84D9:/ +5105.8 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:84DE:/ + +# This is inconsistent among timelines, so don't sync. +5111.1 "--middle--" #sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ + +# -> path 05 +5114.3 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84ED:/ window 30,30 jump 5214.3 +5116.8 "Pure Shock?" #sync / 1[56]:[^:]*:Gorai the Uncaged:84ED:/ + +# -> path 06 +5112.1 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84F2:/ window 30,30 jump 5312.1 +5115.1 "Thundercall?" sync / 1[56]:[^:]*:Gorai the Uncaged:84F2:/ + +# -> path 07 +5112.1 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84F8:/ window 30,30 jump 5412.1 +5117.1 "Fighting Spirits?" #sync / 1[56]:[^:]*:Gorai the Uncaged:84F8:/ + + +# path 05 +5211.1 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5214.3 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84ED:/ +5216.8 "Pure Shock" sync / 1[56]:[^:]*:Gorai the Uncaged:84ED:/ +5218.5 "--stun--" sync / 1[56]:[^:]*:Gorai the Uncaged:84EF:/ +5220.2 "Wily Wall" sync / 1[56]:[^:]*:Shishu White Baboon:84F0:/ +5222.2 "--targetable--" +5228.1 "Impure Purgation 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84E7:/ +5230.1 "Impure Purgation 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84E8:/ +5236.1 "Spike of Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84E4:/ +5245.0 "String Snap 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84EA:/ +5247.0 "String Snap 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84EB:/ +5249.0 "String Snap 3" sync / 1[56]:[^:]*:Gorai the Uncaged:84EC:/ +5252.3 "Self-destruct" sync / 1[56]:[^:]*:Shishu White Baboon:84F1:/ +# -> shared loop +5260.4 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5267.7 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ window 30,30 forcejump 5567.7 + + +# path 06 +5309.8 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5312.1 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84F2:/ +5315.1 "Thundercall" sync / 1[56]:[^:]*:Gorai the Uncaged:84F2:/ +5329.0 "Shock" sync / 1[56]:[^:]*:Ball of Levin:84DC:/ +5335.0 "Humble Hammer" sync / 1[56]:[^:]*:Gorai the Uncaged:84F6:/ duration 8.8 +5346.3 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5351.6 "Thundercall" sync / 1[56]:[^:]*:Gorai the Uncaged:84F2:/ +5359.5 "Humble Hammer" sync / 1[56]:[^:]*:Gorai the Uncaged:84F6:/ duration 8.8 +5376.5 "Shock" sync / 1[56]:[^:]*:Ball of Levin:84F3:/ +# -> shared loop +5379.9 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5387.2 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ window 30,30 forcejump 5567.7 + + +# path 07 +5409.9 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5412.1 "--sync--" sync / 14:[^:]*:Gorai the Uncaged:84F8:/ +5417.1 "Fighting Spirits" sync / 1[56]:[^:]*:Gorai the Uncaged:84F8:/ +5426.1 "Worldly Pursuit 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84FB:/ +5429.9 "Worldly Pursuit 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84FC:/ +5433.7 "Worldly Pursuit 3" sync / 1[56]:[^:]*:Gorai the Uncaged:84FC:/ +5437.5 "Worldly Pursuit 4" sync / 1[56]:[^:]*:Gorai the Uncaged:84FC:/ +5441.3 "Worldly Pursuit 5" sync / 1[56]:[^:]*:Gorai the Uncaged:84FC:/ +5447.4 "Biwa Breaker 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84FD:/ +5449.1 "Biwa Breaker 2" #sync / 1[56]:[^:]*:Gorai the Uncaged:86D1:/ +5450.8 "Biwa Breaker 3" #sync / 1[56]:[^:]*:Gorai the Uncaged:86D1:/ +5452.5 "Biwa Breaker 4" #sync / 1[56]:[^:]*:Gorai the Uncaged:86D1:/ +5454.2 "Biwa Breaker 5" #sync / 1[56]:[^:]*:Gorai the Uncaged:86D1:/ +# -> shared loop +5461.9 "--sync--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5469.1 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ window 30,30 forcejump 5567.7 + + +# shared loop +5560.4 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5567.7 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ +5574.0 "Malformed Prayer" sync / 1[56]:[^:]*:Gorai the Uncaged:84E1:/ +5585.0 "Burst 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84E2:/ +5586.2 "Impure Purgation 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84E7:/ +5588.2 "Impure Purgation 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84E8:/ +5591.0 "Burst 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84E2:/ +5597.0 "Burst 3" sync / 1[56]:[^:]*:Gorai the Uncaged:84E2:/ +5599.1 "Spike of Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84E4:/ + +5610.9 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8500:/ +5620.2 "Flame and Sulphur" sync / 1[56]:[^:]*:Gorai the Uncaged:84D7:/ +5630.5 "Plectrum of Power/Morphic Melody" sync / 1[56]:[^:]*:Gorai the Uncaged:(84D8|84D9):/ +5633.2 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:(84DD|84DE):/ +5633.2 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:(84DA|84DB):/ +5641.4 "Flame and Sulphur" sync / 1[56]:[^:]*:Gorai the Uncaged:84D7:/ +5651.7 "Morphic Melody/Plectrum of Power" sync / 1[56]:[^:]*:Gorai the Uncaged:(84D9|84D8):/ +5654.4 "Falling Rock" sync / 1[56]:[^:]*:Gorai the Uncaged:(84DD|84DE):/ +5654.4 "Fire Spread" sync / 1[56]:[^:]*:Gorai the Uncaged:(84DA|84DB):/ + +5664.5 "Torching Torment" sync / 1[56]:[^:]*:Gorai the Uncaged:84FE:/ +5676.8 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8500:/ +5687.1 "String Snap 1" sync / 1[56]:[^:]*:Gorai the Uncaged:84EA:/ +5689.1 "String Snap 2" sync / 1[56]:[^:]*:Gorai the Uncaged:84EB:/ +5691.1 "String Snap 3" sync / 1[56]:[^:]*:Gorai the Uncaged:84EC:/ +5697.0 "Spike of Flame" sync / 1[56]:[^:]*:Gorai the Uncaged:84E4:/ +5708.8 "Unenlightenment" sync / 1[56]:[^:]*:Gorai the Uncaged:8500:/ + +5717.2 "--middle--" sync / 1[56]:[^:]*:Gorai the Uncaged:84D3:/ +5724.4 "Rousing Reincarnation" sync / 1[56]:[^:]*:Gorai the Uncaged:84DF:/ window 100,100 forcejump 5567.7 + + +# GORAI ABILITIES +# 84D3 --sync-- repositioning ability +# 84D4 --sync-- auto damage +# 84D5 Flickering Flame cast and self-targeted summoning blue flames for lines +# 84D6 Sulphuric Stone cast and self-targeted summoning rocks +# 84D7 Flame and Sulphur cast and self-targeted summoning rocks and lines +# 84D8 Plectrum of Power cast and self-targeted purple effect that expands everything +# 84D9 Morphic Melody cast and self-targeted blue effect that donutifies everything +# 84DA Fire Spread expanded line damage after Plectrum of Power 84D8 +# 84DB Fire Spread split line damage after Morphic Melody 84D9 +# 84DC Shock Ball of Levin self-targeted ability before 84F5 +# 84DD Falling Rock expanded rock damage after Plectrum of Power 84D8 +# 84DE Falling Rock donutified rock damage after Morphic Melody 84D9 +# 84DF Rousing Reincarnation cast and self-targeted ability +# 84E0 Rousing Reincarnation ability on player that gives Rodential Rebirth +# 84E1 Malformed Prayer cast and self-targeted ability that starts the tower sequence +# 84E2 Burst tower damage +# 84E3 Dramatic Burst missed tower damage +# 84E4 Spike of Flame cast and self-targeted ability +# 84E5 Spike of Flame cast and damage for targeted circle on player +# 84E6 Impure Purgation cast and self-targeted for 2x pinwheel +# 84E7 Impure Purgation cast and damage for first pinwheel +# 84E8 Impure Purgation cast and damage for second pinwheel +# 84E9 String Snap cast and self-targeted ability +# 84EA String Snap cast and damage for earth ring 1 +# 84EB String Snap cast and damage for earth ring 2 +# 84EC String Snap cast and damage for earth ring 3 +# 84F8 Fighting Spirits cast and self-targeted ability +# 84F9 Fighting Spirits and and raidwide damage +# 84FB Worldly Pursuit cast and damage from initial cross jump +# 84FC Worldly Pursuit cast and damage from ongoing cross jumps +# 84FD Biwa Breaker cast and initial damage from multiple raidwides +# 84ED Pure Shock cast and self-targeted ability for chain to Shishu White Baboon +# 84EE Pure Shock cast and damage for chain to Shishu White Baboon +# 84EF --sync-- stun to pull to Shishu White Baboon +# 84F0 Wily Wall cast and self-targeted Shishu White Baboon ability to create octagon wall +# 84F1 Self-destruct long cast and damage from Shishu White Baboon +# 84F2 Thundercall cast and self-targeted Ball of Levin summoning +# 84F3 Shock Ball of Levin self-targeted ability before 84F4/84F5 +# 84F4 Shock small ground circle damage from Ball of Levin hit by Humble Hammer +# 84F5 Shock arge ground circle damage from Ball of Levin +# 84F6 Humble Hammer cast and self-targeted ability +# 84F7 Humble Hammer ongoing hammer circles that shrink orbs +# 84FE Torching Torment cast and ability for tankbuster +# 84FF Torching Torment damage from tankbuster +# 8500 Unenlightenment cast and self-targeted ability +# 8501 Unenlightenment raidwide damage +# 86D1 Biwa Breaker damage from followup raidwides + + +#~~~~~~~~# +# Enenra # +#~~~~~~~~# + +# Note: you cannot kill a clone during the split phase, it will stop at 1 hp +# and so the timeline is thankfully stable for that phase. + +# TODO: is Clearing Smoke / Smoke Rings random? + +# -p 8042:8013 +# -ii 8058 8049 804A 804B 8047 + +8000.0 "--sync--" sync / 00:0839::The Pond Of Spring Rain will be sealed off/ window 10000,0 +8013.0 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ +8016.1 "--jump--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8029.9 "Out of the Smoke" sync / 1[56]:[^:]*:Enenra:804C:/ +8030.1 "--sync--" sync / 1[56]:[^:]*:Enenra:804E:/ +8034.0 "Into the Fire" sync / 1[56]:[^:]*:Enenra:804D:/ +8043.1 "Kiseru Clamor 1" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 +8047.2 "Kiseru Clamor 2" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 + +8049.3 "--jump--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8063.1 "Out of the Smoke" sync / 1[56]:[^:]*:Enenra:804C:/ +8063.3 "--sync--" sync / 1[56]:[^:]*:Enenra:804E:/ +8067.2 "Into the Fire" sync / 1[56]:[^:]*:Enenra:804D:/ + +8073.4 "--west--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8077.4 "Smoke and Mirrors" sync / 1[56]:[^:]*:Enenra:8043:/ +8077.7 "--sync--" sync / 1[56]:[^:]*:Enenra:8045:/ +8083.4 "Kiseru Clamor x2" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 +8087.5 "Kiseru Clamor x2" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 +8089.7 "--jump--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8103.5 "Out of the Smoke x2" sync / 1[56]:[^:]*:Enenra:804C:/ +8103.7 "--sync--" sync / 1[56]:[^:]*:Enenra:804E:/ +8107.6 "Into the Fire x2" #sync / 1[56]:[^:]*:Enenra:804D:/ +8111.8 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8121.6 "--sync--" sync / 1[56]:[^:]*:Enenra:(8062|8063):/ +8125.0 "Clearing Smoke/Smoke Rings" sync / 1[56]:[^:]*:Enenra:(8052|8053):/ +8130.8 "Smoke Stack" sync / 1[56]:[^:]*:Enenra:8046:/ + +8136.3 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8142.0 "Smoldering Damnation" sync / 1[56]:[^:]*:Enenra:804F:/ +8154.6 "Smoldering 1" #sync / 1[56]:[^:]*:Enenra:8050:/ +8157.2 "Smoldering 2" #sync / 1[56]:[^:]*:Enenra:8050:/ +8159.8 "Smoldering 3" #sync / 1[56]:[^:]*:Enenra:8050:/ +8162.7 "Pipe Cleaner" sync / 1[56]:[^:]*:Enenra:8054:/ +#8162.9 "Pipe Cleaner" sync / 1[56]:[^:]*:Enenra:8055:/ +# TODO: this can tether multiple people and delay the timeline? + +8167.8 "--west--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8169.4 "--sync--" sync / 14:[^:]*:Enenra:8043:/ window 10,20 +8171.9 "Smoke and Mirrors" sync / 1[56]:[^:]*:Enenra:8043:/ +8172.2 "--sync--" sync / 1[56]:[^:]*:Enenra:8045:/ +8179.9 "Flagrant Combustion x2" sync / 1[56]:[^:]*:Enenra:8042:/ +8182.9 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8188.7 "Smoldering Damnation" sync / 1[56]:[^:]*:Enenra:804F:/ +8195.3 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8201.3 "Smoldering 1" #sync / 1[56]:[^:]*:Enenra:8050:/ +8203.9 "Smoldering 2" #sync / 1[56]:[^:]*:Enenra:8050:/ +8205.1 "--sync--" sync / 1[56]:[^:]*:Enenra:(8062|8063):/ +8206.3 "Smoldering 3" #sync / 1[56]:[^:]*:Enenra:8050:/ +8208.5 "Clearing Smoke/Smoke Rings" sync / 1[56]:[^:]*:Enenra:(8052|8053):/ +8214.3 "Smoke Stack" sync / 1[56]:[^:]*:Enenra:8046:/ + +8222.7 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ +8238.9 "Snuff" sync / 1[56]:[^:]*:Enenra:8056:/ +8243.1 "Uplift" sync / 1[56]:[^:]*:Enenra:8057:/ +8248.0 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ +8258.1 "Kiseru Clamor 1" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 +8262.2 "Kiseru Clamor 2" sync / 1[56]:[^:]*:Enenra:8048:/ duration 6 + +8264.3 "--jump--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8277.9 "Out of the Smoke" sync / 1[56]:[^:]*:Enenra:804C:/ +8278.1 "--sync--" sync / 1[56]:[^:]*:Enenra:804E:/ +8282.0 "Into the Fire" sync / 1[56]:[^:]*:Enenra:804D:/ +8291.1 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ +8300.2 "Flagrant Combustion" sync / 1[56]:[^:]*:Enenra:8042:/ + +8313.4 "--sync--" sync / 1[56]:[^:]*:Enenra:84C2:/ +8317.4 "Smoke and Mirrors" sync / 1[56]:[^:]*:Enenra:8043:/ window 30,30 forcejump 8077.4 + + +# ENENRA ABILITIES +# 1961 attack auto damage +# 8042 Flagrant Combustion cast and raidwide damage +# 8043 Smoke and Mirrors cast and self-targeted clone creation +# 8045 --sync-- ability to create clone +# 8046 Smoke Stack cast and self-targeted ability for one clone merge +# 8047 Smoke Stack cast and self-targeted ability for other clone merge +# 8048 Kiseru Clamor cast and damage for initial jump that creates Bedrock Uplift earth rings +# 8049 Bedrock Uplift cast and damage for earth ring 2 +# 804A Bedrock Uplift cast and damage for earth ring 3 +# 804B Bedrock Uplift cast and damage for earth ring 4 +# 804C Out of the Smoke long cast and self-targeted prior to Into the Fire +# 804D Into the Fire cast and self-targeted for 180 cleave +# 804E --sync-- repositioning during Out of the Smoke +# 804F Smoldering Damnation cast and self-targeted ability to summon growing circles +# 8050 Smoldering cast and damage for growing ground circle +# 8052 Clearing Smoke cast and damage for Clearing Smoke knockback +# 8053 Smoke Rings cast and damage for "get out" Smoke Rings collision +# 8054 Pipe Cleaner cast and self-targeted ability for tether line cleave +# 8055 Pipe Cleaner damage from tether earthshaker-esque line cleave +# 8056 Snuff cast and tankbuster damage +# 8057 Uplift cast and followup ground circle to Snuff +# 8058 Into the Fire cast and damage for 180 cleave +# 8062 Clearing Smoke cast and self-targeted ability for Clearing Smoke knockback collision +# 8063 Smoke Rings cast and self-targeted ability for Smoke Rings collision +# 84C2 --sync-- repositioning