From: Liza Carvelli Date: Sat, 1 Jun 2024 20:01:50 +0000 (+0200) Subject: Update packaging + schema X-Git-Tag: v0.1^0 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=a5861b16397c5350870741798f2202fe39e84639;p=Questionable.git Update packaging + schema --- diff --git a/QuestPaths/.gitignore b/QuestPaths/.gitignore new file mode 100644 index 00000000..958518b5 --- /dev/null +++ b/QuestPaths/.gitignore @@ -0,0 +1,3 @@ +/dist +/obj +/bin diff --git a/QuestPaths/AssemblyQuestLoader.cs b/QuestPaths/AssemblyQuestLoader.cs new file mode 100644 index 00000000..14264cf8 --- /dev/null +++ b/QuestPaths/AssemblyQuestLoader.cs @@ -0,0 +1,25 @@ +using System; +using System.IO; +using System.IO.Compression; + +namespace Questionable.QuestPaths; + +public static class AssemblyQuestLoader +{ + public static void LoadQuestsFromEmbeddedResources(Action loadFunction) + { + foreach (string resourceName in typeof(AssemblyQuestLoader).Assembly.GetManifestResourceNames()) + { + if (resourceName.EndsWith(".zip")) + { + using ZipArchive zipArchive = + new ZipArchive(typeof(AssemblyQuestLoader).Assembly.GetManifestResourceStream(resourceName)!); + foreach (ZipArchiveEntry entry in zipArchive.Entries) + { + using Stream stream = entry.Open(); + loadFunction(entry.Name, stream); + } + } + } + } +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Elpis/4288_You and the Ailouros.json b/QuestPaths/Endwalker/AetherCurrents/Elpis/4288_You and the Ailouros.json new file mode 100644 index 00000000..f237bfc6 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Elpis/4288_You and the Ailouros.json @@ -0,0 +1,96 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1037969, + "Position": { + "X": -611.90204, + "Y": -22.39482, + "Z": 510.42944 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041141, + "Position": { + "X": -614.313, + "Y": -22.39482, + "Z": 509.72766 + }, + "TerritoryId": 961, + "InteractionType": "WaitForManualProgress", + "Comment": "Follow" + }, + { + "Position": { + "X": -838.7837, + "Y": -39.605896, + "Z": 518.9479 + }, + "TerritoryId": 961, + "InteractionType": "WalkTo", + "Comment": "Unsure if this is sequence 1" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": -838.7837, + "Y": -39.605896, + "Z": 518.9479 + }, + "TerritoryId": 961, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14064, + 14065 + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1041137, + "Position": { + "X": -819.6994, + "Y": -38.65795, + "Z": 506.43152 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1037969, + "Position": { + "X": -611.90204, + "Y": -22.39482, + "Z": 510.42944 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Elpis/4313_The Perks of Being a Lost Flower.json b/QuestPaths/Endwalker/AetherCurrents/Elpis/4313_The Perks of Being a Lost Flower.json new file mode 100644 index 00000000..67f2dd3d --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Elpis/4313_The Perks of Being a Lost Flower.json @@ -0,0 +1,68 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041847, + "Position": { + "X": -484.2146, + "Y": 141.86789, + "Z": -97.21527 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041848, + "Position": { + "X": 258.35046, + "Y": -10.140662, + "Z": -95.71985 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "AetheryteShortcut": "Elpis - Anagnorisis" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1041848, + "Position": { + "X": -175.03741, + "Y": 12.098856, + "Z": 6.8771067 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041847, + "Position": { + "X": -484.2146, + "Y": 141.86789, + "Z": -97.21527 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "AetheryteShortcut": "Elpis - Poieten Oikos" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Elpis/4507_Touring Anagnorisis Part 1.json b/QuestPaths/Endwalker/AetherCurrents/Elpis/4507_Touring Anagnorisis Part 1.json new file mode 100644 index 00000000..63573553 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Elpis/4507_Touring Anagnorisis Part 1.json @@ -0,0 +1,108 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041328, + "Position": { + "X": 166.39954, + "Y": 9.457411, + "Z": 236.34692 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041329, + "Position": { + "X": 233.99707, + "Y": 8.289929, + "Z": 270.71033 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1041329, + "Position": { + "X": 233.99707, + "Y": 8.289929, + "Z": 270.71033 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1037947, + "Position": { + "X": 115.28186, + "Y": 7.385857, + "Z": 306.11108 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 17 0 0 0 0 64" + }, + { + "DataId": 1037945, + "Position": { + "X": 144.79285, + "Y": 8.025643, + "Z": 202.47192 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "$.0": "[2]", + "$.2": "QuestVariables if done after [1]: 33 16 0 0 0 96", + "$.3": "QuestVariables if done after [3]: 32 17 0 0 0 160" + }, + { + "DataId": 1037962, + "Position": { + "X": 180.8346, + "Y": 10.385859, + "Z": 113.35925 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "$.0": 3, + "$.1": "QuestVariables if done first: 16 1 0 0 0 128" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041328, + "Position": { + "X": 166.39954, + "Y": 9.457411, + "Z": 236.34692 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Elpis/4511_An Expected Guest.json b/QuestPaths/Endwalker/AetherCurrents/Elpis/4511_An Expected Guest.json new file mode 100644 index 00000000..6713a6f2 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Elpis/4511_An Expected Guest.json @@ -0,0 +1,71 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041369, + "Position": { + "X": -639.85657, + "Y": 162.30406, + "Z": -189.47137 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -318.20203, + "Y": 147.32677, + "Z": -31.146088 + }, + "TerritoryId": 961, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14070 + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040888, + "Position": { + "X": -320.0885, + "Y": 147.4287, + "Z": -30.594421 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041369, + "Position": { + "X": -639.85657, + "Y": 162.30406, + "Z": -189.47137 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "AetheryteShortcut": "Elpis - Poieten Oikos" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Garlemald/4216_Best Delivered Cold.json b/QuestPaths/Endwalker/AetherCurrents/Garlemald/4216_Best Delivered Cold.json new file mode 100644 index 00000000..5ca1d424 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Garlemald/4216_Best Delivered Cold.json @@ -0,0 +1,67 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040898, + "Position": { + "X": -433.12738, + "Y": 22.221891, + "Z": 460.80713 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040899, + "Position": { + "X": -233.44781, + "Y": 22.17031, + "Z": 443.71704 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040899, + "Position": { + "X": 156.03712, + "Y": -19.711596, + "Z": 562.5593 + }, + "StopDistance": 1, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041122, + "Position": { + "X": 134.844, + "Y": -13.286316, + "Z": 649.8054 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Garlemald/4232_Children Are Our Future.json b/QuestPaths/Endwalker/AetherCurrents/Garlemald/4232_Children Are Our Future.json new file mode 100644 index 00000000..70d69c96 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Garlemald/4232_Children Are Our Future.json @@ -0,0 +1,114 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040633, + "Position": { + "X": 496.94043, + "Y": 10.887661, + "Z": -418.57025 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040634, + "Position": { + "X": 190.26465, + "Y": 10.5, + "Z": -630.2129 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012377, + "Position": { + "X": 189.10498, + "Y": 10.482849, + "Z": -668.9708 + }, + "TerritoryId": 958, + "InteractionType": "WaitForManualProgress", + "Comment": "Follow Azure-haired Boy" + }, + { + "DataId": 1040636, + "Position": { + "X": 21.744019, + "Y": 10.5, + "Z": -589.3187 + }, + "StopDistance": 1, + "TerritoryId": 958, + "InteractionType": "WalkTo" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": -18.56067, + "Y": 10.5, + "Z": -530.3922 + }, + "StopDistance": 1, + "TerritoryId": 958, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14101 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040637, + "Position": { + "X": -16.525574, + "Y": 10.5, + "Z": -532.15845 + }, + "StopDistance": 7, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040633, + "Position": { + "X": 496.94043, + "Y": 10.887661, + "Z": -418.57025 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "AetheryteShortcut": "Garlemald - Tertium" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Garlemald/4498_In Pursuit of Power.json b/QuestPaths/Endwalker/AetherCurrents/Garlemald/4498_In Pursuit of Power.json new file mode 100644 index 00000000..71567a97 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Garlemald/4498_In Pursuit of Power.json @@ -0,0 +1,108 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041753, + "Position": { + "X": -321.49237, + "Y": 22.009079, + "Z": 424.00232 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041754, + "Position": { + "X": -340.84082, + "Y": 22, + "Z": 500.57214 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1041754, + "Position": { + "X": -340.84082, + "Y": 22, + "Z": 500.57214 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012616, + "Position": { + "X": -332.3263, + "Y": 22.354431, + "Z": 457.7859 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 16 1 0 0 0 128" + }, + { + "DataId": 2012618, + "Position": { + "X": -338.03314, + "Y": 23.727722, + "Z": 394.88806 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "$.0": "[2]", + "$.1": "QuestVariables if done first: 16 16 0 0 0 32", + "$.2": "QuestVariables if done after [1]: 32 17 0 0 0 160" + }, + { + "DataId": 2012617, + "Position": { + "X": -434.8974, + "Y": 22.262878, + "Z": 425.58936 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "$.0": "[3]", + "$.1": "QuestVariables if done first: 17 0 0 0 0 64" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041755, + "Position": { + "X": -340.35254, + "Y": 22, + "Z": 502.037 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Garlemald/4502_Stranded at the Station.json b/QuestPaths/Endwalker/AetherCurrents/Garlemald/4502_Stranded at the Station.json new file mode 100644 index 00000000..3a00888a --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Garlemald/4502_Stranded at the Station.json @@ -0,0 +1,52 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041765, + "Position": { + "X": -323.4455, + "Y": 22, + "Z": 487.81555 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041766, + "Position": { + "X": 513.6339, + "Y": -19.82022, + "Z": -309.1936 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "AetheryteShortcut": "Garlemald - Tertium" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041767, + "Position": { + "X": 541.03906, + "Y": -36.65, + "Z": -132.46362 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4320_Gleaners Wish.json b/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4320_Gleaners Wish.json new file mode 100644 index 00000000..9f497c6d --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4320_Gleaners Wish.json @@ -0,0 +1,68 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041313, + "Position": { + "X": 89.28052, + "Y": -17.530382, + "Z": -74.906555 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041314, + "Position": { + "X": 78.3855, + "Y": -29.79994, + "Z": 159.5636 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012494, + "Position": { + "X": 78.96533, + "Y": -29.098999, + "Z": 161.02844 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Emote", + "Emote": "pray" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041313, + "Position": { + "X": 89.28052, + "Y": -17.530382, + "Z": -74.906555 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4329_Let the Good Times Troll.json b/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4329_Let the Good Times Troll.json new file mode 100644 index 00000000..68fc7233 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4329_Let the Good Times Troll.json @@ -0,0 +1,71 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041129, + "Position": { + "X": -23.575256, + "Y": -31.53021, + "Z": 1.8463135 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 262.07907, + "Y": -18.527845, + "Z": 183.61182 + }, + "StopDistance": 1, + "TerritoryId": 956, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14123 + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1041128, + "Position": { + "X": 263.1112, + "Y": -18.597479, + "Z": 185.99219 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041129, + "Position": { + "X": -23.575256, + "Y": -31.53021, + "Z": 1.8463135 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4480_Lost Little Troll.json b/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4480_Lost Little Troll.json new file mode 100644 index 00000000..40c2981f --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4480_Lost Little Troll.json @@ -0,0 +1,118 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041667, + "Position": { + "X": 443.96118, + "Y": 65.162, + "Z": -105.4552 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012725, + "Position": { + "X": 693.1715, + "Y": 99.01575, + "Z": 123.52173 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012726, + "Position": { + "X": 806.79016, + "Y": 154.10083, + "Z": -149.64526 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1041681, + "Position": { + "X": 436.69788, + "Y": 166.19273, + "Z": -430.4723 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "AetheryteShortcut": "Labyrinthos - Archeion" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1041668, + "Position": { + "X": 394.12524, + "Y": 173.82095, + "Z": -646.75366 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1041670, + "Position": { + "X": 285.23682, + "Y": 185.65448, + "Z": -729.67114 + }, + "StopDistance": 1, + "TerritoryId": 956, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14069 + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041670, + "Position": { + "X": 285.23682, + "Y": 185.65448, + "Z": -729.67114 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4484_The Lad in Labyrinthos.json b/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4484_The Lad in Labyrinthos.json new file mode 100644 index 00000000..b8ba39c6 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4484_The Lad in Labyrinthos.json @@ -0,0 +1,51 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041683, + "Position": { + "X": -29.984009, + "Y": -31.53043, + "Z": -23.758362 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041684, + "Position": { + "X": 50.43103, + "Y": -29.530062, + "Z": 27.115234 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041685, + "Position": { + "X": 154.89429, + "Y": -17.530376, + "Z": -66.2395 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4240_True Carrot Crimes.json b/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4240_True Carrot Crimes.json new file mode 100644 index 00000000..0a7f857e --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4240_True Carrot Crimes.json @@ -0,0 +1,77 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1037867, + "Position": { + "X": -301.62512, + "Y": -144.00002, + "Z": -491.14215 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041132, + "Position": { + "X": -558.1293, + "Y": -168, + "Z": -475.3338 + }, + "TerritoryId": 959, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14053 + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "Position": { + "X": -719.5691, + "Y": -152.90369, + "Z": -807.82135 + }, + "TerritoryId": 959, + "InteractionType": "ShouldBeAJump", + "Comment": "Navmesh can't jump (TODO this is super out of the way)" + }, + { + "DataId": 2012018, + "Position": { + "X": -733.63855, + "Y": -139.6659, + "Z": -733.30286 + }, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818367 + }, + { + "DataId": 1037867, + "Position": { + "X": -301.62512, + "Y": -144.00002, + "Z": -491.14215 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4241_Carrots Its Whats for Dinner.json b/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4241_Carrots Its Whats for Dinner.json new file mode 100644 index 00000000..cb226cfe --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4241_Carrots Its Whats for Dinner.json @@ -0,0 +1,98 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039520, + "Position": { + "X": -287.8615, + "Y": -143.50005, + "Z": -520.28687 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -345.7338, + "Y": -161.8501, + "Z": -646.97064 + }, + "TerritoryId": 959, + "InteractionType": "ShouldBeAJump", + "Comment": "Navmesh can't jump" + }, + { + "DataId": 1041789, + "StopDistance": 3, + "TerritoryId": 959, + "InteractionType": "Say", + "ChatMessage": "carrot of happiness" + }, + { + "DataId": 1041790, + "Position": { + "X": -482.01727, + "Y": -167.50002, + "Z": -545.6169 + }, + "StopDistance": 3, + "TerritoryId": 959, + "InteractionType": "Say", + "ChatMessage": "carrot of happiness", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 192" + }, + { + "Position": { + "X": -438.33246, + "Y": -168.00002, + "Z": -420.43494 + }, + "TerritoryId": 959, + "InteractionType": "ShouldBeAJump", + "Comment": "Navmesh can't jump" + }, + { + "DataId": 1041791, + "StopDistance": 3, + "TerritoryId": 959, + "InteractionType": "Say", + "ChatMessage": "carrot of happiness" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "Position": { + "X": -376.5167, + "Y": -168, + "Z": -432.03497 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "DataId": 1039520, + "Position": { + "X": -287.8615, + "Y": -143.50005, + "Z": -520.28687 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4253_Alluring Allag.json b/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4253_Alluring Allag.json new file mode 100644 index 00000000..b637d472 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4253_Alluring Allag.json @@ -0,0 +1,153 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041123, + "Position": { + "X": -81.864685, + "Y": -132.74333, + "Z": -521.6602 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012015, + "Position": { + "X": 591.3633, + "Y": 149.33997, + "Z": 114.91565 + }, + "StopDistance": 4, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818364, + "Comment": "TODO Unsure if this can be reached via navmesh directly from Bestways Burrows" + }, + { + "DataId": 1041127, + "Position": { + "X": 537.3159, + "Y": 132.40395, + "Z": 233.81396 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012338, + "Position": { + "X": 700.19055, + "Y": 135.21008, + "Z": 229.48035 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "$.1": "QuestVariables if done first: 17 0 0 0 0 32" + }, + { + "DataId": 1041125, + "Position": { + "X": 735.5, + "Y": 151.08012, + "Z": 189.01343 + }, + "TerritoryId": 959, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14050 + ], + "$.1": "QuestVariables if done after [1]: 33 1 0 0 0 160" + }, + { + "DataId": 1041124, + "Position": { + "X": 663.6301, + "Y": 128.48961, + "Z": 188.18945 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1041127, + "Position": { + "X": 537.3159, + "Y": 132.40395, + "Z": 233.81396 + }, + "StopDistance": 1, + "TerritoryId": 959, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14049 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1041127, + "Position": { + "X": 537.3159, + "Y": 132.40395, + "Z": 233.81396 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2012016, + "Position": { + "X": 388.3573, + "Y": 99.90076, + "Z": 306.05017 + }, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818365 + }, + { + "DataId": 1041123, + "Position": { + "X": -81.864685, + "Y": -132.74333, + "Z": -521.6602 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4516_Name That Way.json b/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4516_Name That Way.json new file mode 100644 index 00000000..328289cd --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4516_Name That Way.json @@ -0,0 +1,93 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041555, + "Position": { + "X": 26.443848, + "Y": -129.20917, + "Z": -536.9497 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041556, + "Position": { + "X": 113.14563, + "Y": -133.07352, + "Z": -465.17133 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1041745, + "Position": { + "X": 66.23938, + "Y": -133.00002, + "Z": -432.8222 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "Comment": "Cheerful Loporrit", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 64" + }, + { + "DataId": 1041746, + "Position": { + "X": -85.83203, + "Y": -133.0356, + "Z": -507.1336 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "Comment": "Stern Loporrit", + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 96" + }, + { + "DataId": 1041744, + "Position": { + "X": -110.12439, + "Y": -133.07341, + "Z": -556.7865 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "Comment": "Easygoing Loporrit" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041556, + "Position": { + "X": 113.14563, + "Y": -133.07352, + "Z": -465.17133 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Thavnair/4203_Alchemist or Dancer.json b/QuestPaths/Endwalker/AetherCurrents/Thavnair/4203_Alchemist or Dancer.json new file mode 100644 index 00000000..8615adf1 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Thavnair/4203_Alchemist or Dancer.json @@ -0,0 +1,108 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1037670, + "Position": { + "X": -508.84262, + "Y": -3.7109916E-05, + "Z": -20.767578 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039382, + "Position": { + "X": 17.07483, + "Y": 90.248795, + "Z": -133.34863 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011912, + "Position": { + "X": 65.293335, + "Y": 96.29968, + "Z": -130.23578 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "$": "QuestVariables after: 16 1 0 0 0 128" + }, + { + "Position": { + "X": 61.000668, + "Y": 94.60124, + "Z": -159.90234 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 2011914, + "TerritoryId": 957, + "InteractionType": "Interact", + "$": "QuestVariables after: 32 17 0 0 0 160" + }, + { + "DataId": 2011913, + "Position": { + "X": 79.51477, + "Y": 93.0647, + "Z": -157.09167 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039382, + "Position": { + "X": 17.07483, + "Y": 90.248795, + "Z": -133.34863 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1037670, + "Position": { + "X": -508.84262, + "Y": -3.7109916E-05, + "Z": -20.767578 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Great Work" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Thavnair/4257_In Agamas Footsteps.json b/QuestPaths/Endwalker/AetherCurrents/Thavnair/4257_In Agamas Footsteps.json new file mode 100644 index 00000000..9e98e09d --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Thavnair/4257_In Agamas Footsteps.json @@ -0,0 +1,69 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040864, + "Position": { + "X": 462.51624, + "Y": 14.320099, + "Z": -219.86731 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040862, + "Position": { + "X": -27.023743, + "Y": 26.58384, + "Z": -178.63745 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "Comment": "Unclear if this can be done automatically, enemies seem to despawn" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012261, + "Position": { + "X": 334.67603, + "Y": 13.076904, + "Z": -239.7956 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "Mount": false, + "Sprint": false + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040864, + "Position": { + "X": 462.51624, + "Y": 14.320099, + "Z": -219.86731 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Thavnair/4259_Radiant Patrol.json b/QuestPaths/Endwalker/AetherCurrents/Thavnair/4259_Radiant Patrol.json new file mode 100644 index 00000000..e2f52ee5 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Thavnair/4259_Radiant Patrol.json @@ -0,0 +1,152 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040669, + "Position": { + "X": 381.64343, + "Y": 3.1891773, + "Z": -207.20227 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040670, + "Position": { + "X": 422.62903, + "Y": 7.427357, + "Z": -60.68518 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012232, + "Position": { + "X": 660.8529, + "Y": 36.423218, + "Z": 89.09741 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 64 + ], + "$": "QuestVariables after: 17 0 0 0 0 64" + }, + { + "DataId": 1040850, + "Position": { + "X": 411.0321, + "Y": 7.9535227, + "Z": 302.8152 + }, + "StopDistance": 1, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14111 + ], + "CompletionQuestVariablesFlags": [ + null, + 1, + null, + null, + null, + null + ], + "$": "QuestVariables after killing enemy: 17 1 0 0 0 64" + }, + { + "DataId": 1040850, + "Position": { + "X": 411.0321, + "Y": 7.9535227, + "Z": 302.8152 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 32 + ], + "$": "QuestVariables after: 33 2 0 0 0 96" + }, + { + "DataId": 2012231, + "Position": { + "X": 343.9536, + "Y": 6.362976, + "Z": 372.54907 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 128 + ], + "$": "QuestVariables if done first: 16 16 16 0 0 128" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040670, + "Position": { + "X": 422.62903, + "Y": 7.427357, + "Z": -60.68518 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040669, + "Position": { + "X": 381.64343, + "Y": 3.1891773, + "Z": -207.20227 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Thavnair/4489_Steppe Child.json b/QuestPaths/Endwalker/AetherCurrents/Thavnair/4489_Steppe Child.json new file mode 100644 index 00000000..87571b01 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Thavnair/4489_Steppe Child.json @@ -0,0 +1,115 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041331, + "Position": { + "X": 202.4414, + "Y": 1.769943, + "Z": 727.7484 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041333, + "Position": { + "X": 190.6919, + "Y": 14.1185875, + "Z": 489.4635 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1041334, + "Position": { + "X": 123.125, + "Y": 16.522793, + "Z": 537.8042 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": 167.34262, + "Y": 41.652294, + "Z": 409.31412 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14043 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1041338, + "Position": { + "X": 167.1626, + "Y": 41.614826, + "Z": 409.53687 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1041334, + "Position": { + "X": 123.125, + "Y": 16.522793, + "Z": 537.8042 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041332, + "Position": { + "X": 194.68982, + "Y": 14.118598, + "Z": 485.9845 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4342_Ending as One.json b/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4342_Ending as One.json new file mode 100644 index 00000000..dae22479 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4342_Ending as One.json @@ -0,0 +1,53 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040876, + "Position": { + "X": 49.42395, + "Y": 269.25684, + "Z": -523.2472 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -41.26438, + "Y": 274.85336, + "Z": -523.8633 + }, + "TerritoryId": 960, + "InteractionType": "Combat", + "EnemySpawnType": "OverworldEnemies", + "Comment": "Kill 2 Drifting Ea, TODO: add data ids", + "$": "QuestVariables: 0 0-16-32 0 0 0 0" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040876, + "Position": { + "X": 49.42395, + "Y": 269.25684, + "Z": -523.2472 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4346_A Most Stimulating Discussion.json b/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4346_A Most Stimulating Discussion.json new file mode 100644 index 00000000..020beb02 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4346_A Most Stimulating Discussion.json @@ -0,0 +1,76 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038016, + "Position": { + "X": 105.42456, + "Y": 269.29584, + "Z": -454.3069 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040880, + "Position": { + "X": -110.185425, + "Y": 269.2062, + "Z": -713.5271 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "AetheryteShortcut": "Ultima Thule - Abode of the Ea" + }, + { + "DataId": 1040881, + "Position": { + "X": -201.86163, + "Y": 288.6714, + "Z": -466.331 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "$.0": "[2]", + "$.1": "QuestVariables if done after [3]: 32 17 0 0 0 160" + }, + { + "DataId": 1040879, + "Position": { + "X": -184.52734, + "Y": 267.47086, + "Z": -292.65283 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "$.0": "[3]", + "$.1": "QuestVariables if done first: 16 1 0 0 0 128" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038016, + "Position": { + "X": 105.42456, + "Y": 269.29584, + "Z": -454.3069 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4354_Combat Evolved.json b/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4354_Combat Evolved.json new file mode 100644 index 00000000..b74d1e08 --- /dev/null +++ b/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4354_Combat Evolved.json @@ -0,0 +1,56 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038043, + "Position": { + "X": 470.4203, + "Y": 437.00183, + "Z": 315.81592 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 656.94653, + "Y": 437.98502, + "Z": 302.6322 + }, + "StopDistance": 0.5, + "TerritoryId": 960, + "InteractionType": "WaitForManualProgress", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14044 + ], + "Comment": "Can maybe be automated to use item depending on quest vars??" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038043, + "Position": { + "X": 470.4203, + "Y": 437.00183, + "Z": 315.81592 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4357_The Next Ship to Sail.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4357_The Next Ship to Sail.json new file mode 100644 index 00000000..6ae5067b --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4357_The Next Ship to Sail.json @@ -0,0 +1,56 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1036452, + "Position": { + "X": -2.2736206, + "Y": 0, + "Z": -8.835022 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038570, + "Position": { + "X": -374.6853, + "Y": 7.999938, + "Z": 45.822754 + }, + "TerritoryId": 129, + "InteractionType": "Interact", + "AetheryteShortcut": "Limsa Lominsa", + "AethernetShortcut": [ + "[Limsa Lominsa] Aetheryte Plaza", + "[Limsa Lominsa] Arcanist's Guild" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038578, + "Position": { + "X": 49.69861, + "Y": -16.246998, + "Z": 145.2201 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4358_Old Sharlayan New to You.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4358_Old Sharlayan New to You.json new file mode 100644 index 00000000..41b4c872 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4358_Old Sharlayan New to You.json @@ -0,0 +1,254 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038578, + "Position": { + "X": 49.69861, + "Y": -16.246998, + "Z": 145.2201 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038584, + "Position": { + "X": 47.68445, + "Y": -16.246998, + "Z": 147.02063 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038578, + "Position": { + "X": 49.69861, + "Y": -16.246998, + "Z": 145.2201 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 189, + "Position": { + "X": 16.49812, + "Y": -16.247, + "Z": 127.753 + }, + "TerritoryId": 962, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1038578, + "Position": { + "X": -56.737106, + "Y": -15.127001, + "Z": 130.76611 + }, + "StopDistance": 0.25, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": -8.38828, + "Y": 3.2249968, + "Z": 9.224017 + }, + "TerritoryId": 962, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038578, + "Position": { + "X": -0.03130532, + "Y": 3.2249997, + "Z": 8.909777 + }, + "StopDistance": 0.25, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 182, + "Position": { + "X": 0.08138847, + "Y": 4.818894, + "Z": -0.1004486 + }, + "StopDistance": 10, + "TerritoryId": 962, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1038578, + "Position": { + "X": 66.10567, + "Y": 5.0999994, + "Z": -63.37148 + }, + "StopDistance": 0.25, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": 93.30914, + "Y": 8.920153, + "Z": -89.12467 + }, + "TerritoryId": 962, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 96.67595, + "Y": 15.025446, + "Z": -134.08261 + }, + "TerritoryId": 962, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038578, + "Position": { + "X": -0.4629783, + "Y": 41.37599, + "Z": -142.5033 + }, + "StopDistance": 0.25, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 186, + "Position": { + "X": -36.94214, + "Y": 41.367188, + "Z": -156.6034 + }, + "TerritoryId": 962, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1038578, + "Position": { + "X": 149.26689, + "Y": 18.800978, + "Z": -142.65858 + }, + "StopDistance": 0.25, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 187, + "Position": { + "X": 204.79126, + "Y": 21.774597, + "Z": -118.73047 + }, + "TerritoryId": 962, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 188, + "Position": { + "X": 206.22559, + "Y": 1.8463135, + "Z": 13.77887 + }, + "TerritoryId": 962, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1038578, + "Position": { + "X": -82.642426, + "Y": 1.0594833, + "Z": 30.052902 + }, + "StopDistance": 0.25, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Journey's End", + "[Old Sharlayan] Aetheryte Plaza" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.56799, + "Y": 5.0201416, + "Z": 4.5318604 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + }, + { + "DataId": 1038586, + "Position": { + "X": -0.015319824, + "Y": 1.9073486E-06, + "Z": -0.77819824 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4359_Hitting the Books.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4359_Hitting the Books.json new file mode 100644 index 00000000..e634e7db --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4359_Hitting the Books.json @@ -0,0 +1,182 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038670, + "Position": { + "X": -2.609314, + "Y": 1.9073486E-06, + "Z": 0.16778564 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011937, + "Position": { + "X": -0.009068698, + "Y": 1.151502, + "Z": 14.81335 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + }, + { + "DataId": 185, + "Position": { + "X": -92.21033, + "Y": 2.304016, + "Z": 29.709229 + }, + "TerritoryId": 962, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 184, + "Position": { + "X": -291.1574, + "Y": 20.004517, + "Z": -74.143616 + }, + "TerritoryId": 962, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1038675, + "Position": { + "X": -301.38098, + "Y": 18.47832, + "Z": 10.849121 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011828, + "Position": { + "X": -320.72937, + "Y": 20.248657, + "Z": 57.99951 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "$.0": "[1]", + "$.2": "QuestVariables if done after [3]: 2 0 0 0 0 96" + }, + { + "DataId": 2011825, + "Position": { + "X": -370.47382, + "Y": 20.248657, + "Z": 100.1449 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "$.0": "[2]" + }, + { + "DataId": 2011826, + "Position": { + "X": -385.36664, + "Y": 20.248657, + "Z": 43.289795 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "$.0": "[3]", + "$.2": "QuestVariables if used first: 1 0 0 0 0 64" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2011830, + "Position": { + "X": -276.0205, + "Y": 18.997375, + "Z": 18.936401 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2011830, + "Position": { + "X": -276.0205, + "Y": 18.997375, + "Z": 18.936401 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2011830, + "Position": { + "X": -276.0205, + "Y": 18.997375, + "Z": 18.936401 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1038679, + "Position": { + "X": -275.5932, + "Y": 19.003881, + "Z": 13.321045 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038679, + "Position": { + "X": -275.5932, + "Y": 19.003881, + "Z": 13.321045 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4360_A Seat at the Last Stand.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4360_A Seat at the Last Stand.json new file mode 100644 index 00000000..6e75b26a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4360_A Seat at the Last Stand.json @@ -0,0 +1,166 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038681, + "Position": { + "X": -281.11694, + "Y": 19.003874, + "Z": 18.966919 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038682, + "Position": { + "X": -69.13867, + "Y": -15.127, + "Z": 113.572876 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Studium", + "[Old Sharlayan] Scholar's Harbor" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1037079, + "Position": { + "X": -81.04071, + "Y": -13.777, + "Z": 117.32654 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + }, + { + "DataId": 1037078, + "Position": { + "X": -42.557434, + "Y": -14.1693125, + "Z": 111.49768 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1037077, + "Position": { + "X": -38.066784, + "Y": -14.169313, + "Z": 107.68768 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2011831, + "Position": { + "X": -86.90015, + "Y": -12.985474, + "Z": 130.47986 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2011832, + "Position": { + "X": -74.57086, + "Y": -12.985474, + "Z": 141.1001 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 2011833, + "Position": { + "X": -74.57086, + "Y": -12.985474, + "Z": 148.11926 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1038683, + "Position": { + "X": -36.697998, + "Y": -14.169313, + "Z": 114.76306 + }, + "StopDistance": 7, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "Position": { + "X": 19.79008, + "Y": -16.247002, + "Z": 108.36692 + }, + "TerritoryId": 962, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038684, + "Position": { + "X": 29.007324, + "Y": -14.446999, + "Z": 76.46289 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4361_A Labyrinthine Descent.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4361_A Labyrinthine Descent.json new file mode 100644 index 00000000..fd83a9b7 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4361_A Labyrinthine Descent.json @@ -0,0 +1,121 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038684, + "Position": { + "X": 29.007324, + "Y": -14.446999, + "Z": 76.46289 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038679, + "Position": { + "X": -275.5932, + "Y": 19.003881, + "Z": 13.321045 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Scholar's Harbor", + "[Old Sharlayan] The Studium" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038753, + "Position": { + "X": -234.21082, + "Y": 12.969517, + "Z": -27.054321 + }, + "TerritoryId": 962, + "InteractionType": "WaitForManualProgress", + "Comment": "Follow Alisaie" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038688, + "Position": { + "X": -69.5354, + "Y": 18.043928, + "Z": -321.40082 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038692, + "Position": { + "X": -1.5411987, + "Y": 170.403, + "Z": -748.0125 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + }, + { + "DataId": 1037473, + "Position": { + "X": -27.17633, + "Y": 170.40298, + "Z": -722.46893 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + }, + { + "DataId": 1037472, + "Position": { + "X": -74.69299, + "Y": 170.403, + "Z": -755.67255 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038695, + "Position": { + "X": -52.384216, + "Y": 170.403, + "Z": -734.7677 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4362_Glorified Ratcatcher.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4362_Glorified Ratcatcher.json new file mode 100644 index 00000000..6348c230 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4362_Glorified Ratcatcher.json @@ -0,0 +1,183 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038695, + "Position": { + "X": -52.384216, + "Y": 170.403, + "Z": -734.7677 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038692, + "Position": { + "X": -1.5411987, + "Y": 170.403, + "Z": -748.0125 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038699, + "Position": { + "X": 128.00781, + "Y": 186.03699, + "Z": -740.9324 + }, + "StopDistance": 1, + "TerritoryId": 956, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14024 + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038699, + "Position": { + "X": 128.00781, + "Y": 186.03699, + "Z": -740.9324 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038700, + "Position": { + "X": 259.0829, + "Y": 166.40231, + "Z": -595.69696 + }, + "TerritoryId": 956, + "StopDistance": 1, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14023, + 14022 + ] + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038700, + "Position": { + "X": 259.0829, + "Y": 166.40231, + "Z": -595.69696 + }, + "TerritoryId": 956, + "InteractionType": "UseItem", + "ItemId": 2003129 + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": 222.61905, + "Y": 182.78828, + "Z": -704.0299 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo" + }, + { + "DataId": 2011980, + "Position": { + "X": 346.51697, + "Y": 209.3385, + "Z": -767.7577 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818314 + }, + { + "DataId": 1038701, + "Position": { + "X": 280.38452, + "Y": 216.34708, + "Z": -823.3921 + }, + "TerritoryId": 956, + "InteractionType": "UseItem", + "ItemId": 2003129 + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1038757, + "Position": { + "X": -1.9074707, + "Y": 170.403, + "Z": -751.5221 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "Position": { + "X": 254.80028, + "Y": 163.44171, + "Z": -626.4951 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038702, + "Position": { + "X": 394.27783, + "Y": 165.94997, + "Z": -521.294 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4363_Deeper into the Maze.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4363_Deeper into the Maze.json new file mode 100644 index 00000000..54e4f6b6 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4363_Deeper into the Maze.json @@ -0,0 +1,132 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038702, + "Position": { + "X": 394.27783, + "Y": 165.94997, + "Z": -521.294 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 166, + "Position": { + "X": 443.5338, + "Y": 170.6416, + "Z": -476.18835 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1037475, + "Position": { + "X": 379.14087, + "Y": 170.1, + "Z": -410.97125 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038712, + "Position": { + "X": 415.8236, + "Y": 166.41167, + "Z": -451.10248 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038714, + "Position": { + "X": 383.01672, + "Y": 166.19273, + "Z": -464.7746 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + }, + { + "DataId": 1038716, + "Position": { + "X": 468.10095, + "Y": 166.2036, + "Z": -458.2132 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038717, + "Position": { + "X": 579.91907, + "Y": 168.84044, + "Z": -517.3572 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2011839, + "Position": { + "X": 576.8367, + "Y": 168.99365, + "Z": -519.18823 + }, + "TerritoryId": 956, + "InteractionType": "SinglePlayerDuty", + "Comment": "Duty - Shoot Large Green Bird" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038718, + "Position": { + "X": 644.9835, + "Y": 185.14716, + "Z": -130.23578 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4364_The Medial Circuit.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4364_The Medial Circuit.json new file mode 100644 index 00000000..685f19b2 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4364_The Medial Circuit.json @@ -0,0 +1,196 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038719, + "Position": { + "X": 646.3264, + "Y": 185.07715, + "Z": -131.97534 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011981, + "Position": { + "X": 748.53125, + "Y": 106.7063, + "Z": 66.75818 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818315 + }, + { + "Position": { + "X": 760.1999, + "Y": 145.74788, + "Z": -52.025288 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo" + }, + { + "DataId": 2011840, + "Position": { + "X": 828.33594, + "Y": 147.8446, + "Z": -72.22095 + }, + "TerritoryId": 956, + "EnemySpawnType": "AfterInteraction", + "InteractionType": "Combat", + "KillEnemyDataIds": [ + 14020 + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011841, + "Position": { + "X": 813.6262, + "Y": 158.64807, + "Z": 126.57361 + }, + "TerritoryId": 956, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14021 + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038722, + "Position": { + "X": 621.3015, + "Y": 97.13325, + "Z": 182.17737 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": 483.16574, + "Y": 83.132675, + "Z": 74.693695 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo", + "Comment": "Avoids aggroing some enemies on the hill" + }, + { + "DataId": 2011842, + "Position": { + "X": 492.1797, + "Y": 64.86609, + "Z": -44.571655 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1037985, + "Position": { + "X": 481.8036, + "Y": 66.16195, + "Z": -108.537415 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + }, + { + "DataId": 1038707, + "Position": { + "X": 455.80212, + "Y": 65.16199, + "Z": -150.04199 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + }, + { + "DataId": 1038708, + "Position": { + "X": 408.31604, + "Y": 65.3329, + "Z": -130.11371 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 2011984, + "Position": { + "X": 497.09314, + "Y": 73.41101, + "Z": -267.23126 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818320 + }, + { + "DataId": 2011843, + "Position": { + "X": 312.64197, + "Y": 97.3678, + "Z": -257.34344 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038732, + "Position": { + "X": 321.43127, + "Y": 97.50893, + "Z": -279.92682 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4365_The Full Reports Warts and All.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4365_The Full Reports Warts and All.json new file mode 100644 index 00000000..ac220f56 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4365_The Full Reports Warts and All.json @@ -0,0 +1,93 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038731, + "Position": { + "X": 324.84924, + "Y": 97.07327, + "Z": -282.21564 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 304.306, + "Y": 84.01365, + "Z": -292.01114 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo", + "DisableNavmesh": true, + "Mount": true + }, + { + "DataId": 1038736, + "Position": { + "X": 177.26404, + "Y": 56.63088, + "Z": -411.5511 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038738, + "Position": { + "X": 177.05042, + "Y": 56.567654, + "Z": -409.41486 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": -156.15488, + "Y": 81.17488, + "Z": -534.99316 + }, + "StopDistance": 0.25, + "TerritoryId": 956, + "InteractionType": "WalkTo" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038740, + "Position": { + "X": -256.27533, + "Y": 79.75535, + "Z": -502.12863 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4366_A Guide of Sorts.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4366_A Guide of Sorts.json new file mode 100644 index 00000000..173a0941 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4366_A Guide of Sorts.json @@ -0,0 +1,128 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038741, + "Position": { + "X": -257.9538, + "Y": 79.7362, + "Z": -502.06763 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -329.64972, + "Y": 77.91884, + "Z": -448.5044 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": -327.6718, + "Y": 79.535736, + "Z": -400.00397 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo" + }, + { + "DataId": 2011982, + "Position": { + "X": -316.30432, + "Y": 79.75891, + "Z": -395.31555 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818318 + }, + { + "Position": { + "X": -300.80545, + "Y": 59.384476, + "Z": -409.0928 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo", + "DisableNavmesh": true, + "Mount": true + }, + { + "DataId": 2011983, + "Position": { + "X": 32.303345, + "Y": 72.83118, + "Z": -286.27454 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818319 + }, + { + "DataId": 1038736, + "Position": { + "X": 177.26404, + "Y": 56.63088, + "Z": -411.5511 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": 253.34096, + "Y": 71.49686, + "Z": -241.08495 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo", + "Comment": "Needed for Navmesh" + }, + { + "DataId": 1038744, + "Position": { + "X": 315.4497, + "Y": 96.90322, + "Z": -259.23553 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038747, + "Position": { + "X": -1.6022339, + "Y": 41.37599, + "Z": -141.16125 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4367_Estate Visitor.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4367_Estate Visitor.json new file mode 100644 index 00000000..8718794b --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4367_Estate Visitor.json @@ -0,0 +1,117 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038746, + "Position": { + "X": 2.5481567, + "Y": 41.37599, + "Z": -142.1684 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038745, + "Position": { + "X": 1.663208, + "Y": 41.37599, + "Z": -141.00867 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038746, + "Position": { + "X": 2.5481567, + "Y": 41.37599, + "Z": -142.1684 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040284, + "Position": { + "X": 219.22632, + "Y": 25.041138, + "Z": -160.60126 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Rostra", + "[Old Sharlayan] The Leveilleur Estate" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040285, + "Position": { + "X": 222.03394, + "Y": 21.878136, + "Z": -120.43945 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.56799, + "Y": 5.0201416, + "Z": 4.5318604 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Leveilleur Estate", + "[Old Sharlayan] The Baldesion Annex" + ] + }, + { + "DataId": 1040291, + "Position": { + "X": -1.9379272, + "Y": 1.9073486E-06, + "Z": 1.5715942 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4368_For Thavnair Bound.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4368_For Thavnair Bound.json new file mode 100644 index 00000000..43983bf3 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4368_For Thavnair Bound.json @@ -0,0 +1,138 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041250, + "Position": { + "X": 4.0740967, + "Y": 1.9073486E-06, + "Z": 2.029419 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011937, + "Position": { + "X": -0.015319824, + "Y": 1.1443481, + "Z": 14.785889 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + }, + { + "DataId": 1038592, + "Position": { + "X": -83.05487, + "Y": 6.6169996, + "Z": -39.383606 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011947, + "Position": { + "X": -15.4574585, + "Y": 2.7922974, + "Z": -8.98761 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038599, + "Position": { + "X": 168.87158, + "Y": 5.3451567, + "Z": 633.93604 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038599, + "Position": { + "X": 168.87158, + "Y": 5.3451567, + "Z": 633.93604 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038599, + "Position": { + "X": 168.87158, + "Y": 5.3451567, + "Z": 633.93604 + }, + "TerritoryId": 957, + "InteractionType": "Emote", + "Emote": "deny" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1038598, + "Position": { + "X": 187.42651, + "Y": 9.9744425, + "Z": 592.2178 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038597, + "Position": { + "X": 189.25769, + "Y": 9.9744425, + "Z": 590.0206 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4369_On Low Tide.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4369_On Low Tide.json new file mode 100644 index 00000000..7ecc52ff --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4369_On Low Tide.json @@ -0,0 +1,126 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038600, + "Position": { + "X": 189.92896, + "Y": 9.9744425, + "Z": 589.89844 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 169, + "Position": { + "X": 193.529, + "Y": 6.991216, + "Z": 629.2394 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 2011948, + "Position": { + "X": 204.66919, + "Y": 2.243042, + "Z": 715.4192 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1037622, + "Position": { + "X": 189.94562, + "Y": 0.8560083, + "Z": 702.7896 + }, + "StopDistance": 0.25, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 2011949, + "Position": { + "X": 200, + "Y": 1.7547607, + "Z": 768.9784 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1037623, + "Position": { + "X": 220.78271, + "Y": 1.8349868, + "Z": 759.4263 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": 200.24112, + "Y": 1.7700036, + "Z": 712.99384 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 240.97523, + "Y": 0.8542664, + "Z": 712.4415 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038606, + "Position": { + "X": 277.72937, + "Y": 2.9636285, + "Z": 703.7003 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038608, + "Position": { + "X": 197.55847, + "Y": 1.769943, + "Z": 737.97205 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4370_A Fishermans Friend.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4370_A Fishermans Friend.json new file mode 100644 index 00000000..b8c61111 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4370_A Fishermans Friend.json @@ -0,0 +1,195 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038608, + "Position": { + "X": 197.55847, + "Y": 1.769943, + "Z": 737.97205 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038608, + "Position": { + "X": 197.55847, + "Y": 1.769943, + "Z": 737.97205 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1037625, + "Position": { + "X": 176.47058, + "Y": 1.8742183, + "Z": 799.2217 + }, + "TerritoryId": 957, + "InteractionType": "CutsceneSelectString", + "DialogueChoices": [ + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A2_000_088" + }, + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A3_000_098" + }, + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A5_000_107" + } + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1037626, + "Position": { + "X": 166.61316, + "Y": 4.763736, + "Z": 681.7273 + }, + "TerritoryId": 957, + "InteractionType": "CutsceneSelectString", + "DialogueChoices": [ + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A6_000_149" + }, + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A7_000_158" + }, + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A8_000_164" + } + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1037624, + "Position": { + "X": 213.91614, + "Y": 15.136713, + "Z": 517.72327 + }, + "TerritoryId": 957, + "InteractionType": "CutsceneSelectString", + "DialogueChoices": [ + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A9_000_200" + }, + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A10_000_209" + }, + { + "ExcelSheet": "quest/043/AktKma114_04370", + "Answer": "TEXT_AKTKMA114_04370_A11_000_218" + } + ] + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "Position": { + "X": 232.93636, + "Y": 15.136732, + "Z": 526.6279 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "Mount": true + }, + { + "DataId": 2011992, + "Position": { + "X": 303.91382, + "Y": 0.25933838, + "Z": 473.65527 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818333, + "DisableNavmesh": true + }, + { + "Position": { + "X": 201.66586, + "Y": 1.7700036, + "Z": 712.9197 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 199.50157, + "Y": 1.769943, + "Z": 738.831 + }, + "StopDistance": 0.25, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038608, + "Position": { + "X": 199.48804, + "Y": 1.769943, + "Z": 738.9843 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "Mount": false + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038609, + "Position": { + "X": 199.35901, + "Y": 5.873753, + "Z": 612.787 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4371_House of Divinities.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4371_House of Divinities.json new file mode 100644 index 00000000..ab36dc22 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4371_House of Divinities.json @@ -0,0 +1,152 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038611, + "Position": { + "X": 201.86157, + "Y": 5.880045, + "Z": 612.02405 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011951, + "Position": { + "X": 105.1499, + "Y": 7.7667847, + "Z": 581.5061 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011952, + "Position": { + "X": -13.290649, + "Y": 32.333862, + "Z": 499.07666 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038612, + "Position": { + "X": 31.937134, + "Y": 37.463673, + "Z": 379.5985 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14006 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038612, + "Position": { + "X": 31.937134, + "Y": 37.463673, + "Z": 379.5985 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2011990, + "Position": { + "X": -176.10437, + "Y": 21.530457, + "Z": 537.8346 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818329 + }, + { + "DataId": 1038616, + "Position": { + "X": -278.88916, + "Y": 2.740889, + "Z": 532.03625 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1037644, + "Position": { + "X": -293.72095, + "Y": 1.4600283, + "Z": 551.0491 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1037645, + "Position": { + "X": -271.0155, + "Y": 0.7022661, + "Z": 588.8303 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038616, + "Position": { + "X": -278.88916, + "Y": 2.740889, + "Z": 532.03625 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4372_The Great Work.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4372_The Great Work.json new file mode 100644 index 00000000..19fbf200 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4372_The Great Work.json @@ -0,0 +1,298 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Comment": "This is possibly the least polished quest so far, as the follow steps are awkward (need to move >10 units away to trigger the follow-up)", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038616, + "Position": { + "X": -278.88916, + "Y": 2.740889, + "Z": 532.03625 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038620, + "Position": { + "X": -477.68372, + "Y": 5.0817194, + "Z": 19.21106 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 170, + "Position": { + "X": -527.4888, + "Y": 4.785123, + "Z": 36.76496 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1038631, + "Position": { + "X": -510.7958, + "Y": 11.975282, + "Z": 117.69275 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038635, + "Position": { + "X": -487.1443, + "Y": 49.161343, + "Z": 153.42944 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038636, + "Position": { + "X": -485.70996, + "Y": 49.103825, + "Z": 152.91064 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1038636, + "Position": { + "X": -425.414, + "Y": 38.415024, + "Z": 160.1206 + }, + "StopDistance": 4, + "TerritoryId": 957, + "InteractionType": "WaitForNpcAtPosition" + }, + { + "Position": { + "X": -425.43683, + "Y": 38.413155, + "Z": 160.11292 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038636, + "Position": { + "X": -425.414, + "Y": 38.415024, + "Z": 160.1206 + }, + "StopDistance": 4, + "TerritoryId": 957, + "InteractionType": "WalkTo" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1041219, + "Position": { + "X": -425.43683, + "Y": 38.413155, + "Z": 160.11292 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1041219, + "Position": { + "X": -419.6078, + "Y": 43.950115, + "Z": 87.3025 + }, + "StopDistance": 4, + "TerritoryId": 957, + "InteractionType": "WaitForNpcAtPosition" + }, + { + "Position": { + "X": -430.35034, + "Y": 46.160213, + "Z": 93.2392 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 1041220, + "Position": { + "X": -419.60785, + "Y": 43.9499, + "Z": 87.296875 + }, + "StopDistance": 4, + "TerritoryId": 957, + "InteractionType": "WalkTo" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1041220, + "Position": { + "X": -419.60785, + "Y": 43.9499, + "Z": 87.296875 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1041220, + "Position": { + "X": -444.7032, + "Y": 49.551, + "Z": 97.1969 + }, + "StopDistance": 4, + "TerritoryId": 957, + "InteractionType": "WaitForNpcAtPosition" + }, + { + "Position": { + "X": -433.19608, + "Y": 46.94587, + "Z": 93.295135 + }, + "StopDistance": 0.35, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 1041221, + "Position": { + "X": -444.72424, + "Y": 49.55681, + "Z": 97.18469 + }, + "StopDistance": 4, + "TerritoryId": 957, + "InteractionType": "WalkTo" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1041221, + "Position": { + "X": -444.72424, + "Y": 49.55681, + "Z": 97.18469 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1041221, + "Position": { + "X": -484.5909, + "Y": 54.18516, + "Z": 128.3601 + }, + "StopDistance": 4, + "TerritoryId": 957, + "InteractionType": "WaitForNpcAtPosition" + }, + { + "Position": { + "X": -472.65085, + "Y": 53.779083, + "Z": 124.34451 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038637, + "Position": { + "X": -484.61133, + "Y": 54.187614, + "Z": 128.34363 + }, + "StopDistance": 4, + "TerritoryId": 957, + "InteractionType": "WalkTo" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 1038637, + "Position": { + "X": -484.61133, + "Y": 54.187614, + "Z": 128.34363 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038635, + "Position": { + "X": -487.1443, + "Y": 49.161343, + "Z": 153.42944 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4373_Shadowed Footsteps.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4373_Shadowed Footsteps.json new file mode 100644 index 00000000..2c01f33a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4373_Shadowed Footsteps.json @@ -0,0 +1,116 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038635, + "Position": { + "X": -487.1443, + "Y": 49.161343, + "Z": 153.42944 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038638, + "Position": { + "X": -230.6402, + "Y": 27.619656, + "Z": 23.727722 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14004 + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038638, + "Position": { + "X": -230.6402, + "Y": 27.619656, + "Z": 23.727722 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038639, + "Position": { + "X": -15.030151, + "Y": 84.48873, + "Z": -71.000244 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2011954, + "Position": { + "X": 31.60144, + "Y": 90.22656, + "Z": -154.65027 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038641, + "Position": { + "X": 34.62268, + "Y": 90.26942, + "Z": -159.80774 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038631, + "Position": { + "X": -510.7958, + "Y": 11.975282, + "Z": 117.69275 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Great Work" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4374_A Boys Errand.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4374_A Boys Errand.json new file mode 100644 index 00000000..9c2b153f --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4374_A Boys Errand.json @@ -0,0 +1,146 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038631, + "Position": { + "X": -510.7958, + "Y": 11.975282, + "Z": 117.69275 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038642, + "Position": { + "X": -384.1764, + "Y": 12.2027235, + "Z": 28.244385 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038642, + "Position": { + "X": -384.1764, + "Y": 12.2027235, + "Z": 28.244385 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1037646, + "Position": { + "X": -568.99365, + "Y": 9.817484, + "Z": -569.8787 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1037648, + "Position": { + "X": -562.005, + "Y": 9.817466, + "Z": -585.1987 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1037647, + "Position": { + "X": -588.83044, + "Y": 9.81748, + "Z": -590.08167 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038645, + "Position": { + "X": -549.24854, + "Y": 9.817465, + "Z": -563.04266 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038648, + "Position": { + "X": -557.641, + "Y": 9.672808, + "Z": -555.04694 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": -103.68971, + "Y": 88.84356, + "Z": -608.6588 + }, + "StopDistance": 0.25, + "TerritoryId": 957, + "InteractionType": "WalkTo" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1037649, + "Position": { + "X": -92.97333, + "Y": 89.5583, + "Z": -642.3591 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4375_Tipping the Scale.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4375_Tipping the Scale.json new file mode 100644 index 00000000..21c59858 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4375_Tipping the Scale.json @@ -0,0 +1,145 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1037649, + "Position": { + "X": -92.97333, + "Y": 89.5583, + "Z": -642.3591 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -82.02301, + "Y": 95.24942, + "Z": -697.3925 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": -78.47051, + "Y": 99.96379, + "Z": -711.17303 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 2011991, + "Position": { + "X": -49.271423, + "Y": 94.0719, + "Z": -710.7805 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818330, + "DisableNavmesh": true + }, + { + "DataId": 1038631, + "Position": { + "X": -510.7958, + "Y": 11.975282, + "Z": 117.69275 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Great Work" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011993, + "Position": { + "X": -479.45374, + "Y": 72.892334, + "Z": -561.82196 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818334 + }, + { + "Position": { + "X": -489.27457, + "Y": 72.74904, + "Z": -546.8438 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "Mount": true + }, + { + "Position": { + "X": -523.7225, + "Y": 9.401685, + "Z": -554.4276 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "DataId": 1038651, + "Position": { + "X": -699.67194, + "Y": -0.06901036, + "Z": -565.0569 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038652, + "Position": { + "X": -704.09705, + "Y": -0.090369135, + "Z": -562.4323 + }, + "StopDistance": 6, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038653, + "Position": { + "X": -492.0577, + "Y": 4.5676737, + "Z": 17.532532 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Great Work" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4376_The Satrap of Radz at Han.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4376_The Satrap of Radz at Han.json new file mode 100644 index 00000000..e928ce09 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4376_The Satrap of Radz at Han.json @@ -0,0 +1,121 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038653, + "Position": { + "X": -492.0577, + "Y": 4.5676737, + "Z": 17.532532 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -130.78743, + "Y": 86.83725, + "Z": -252.08578 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 2011994, + "Position": { + "X": -114.488464, + "Y": 87.08313, + "Z": -288.3192 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818335, + "DisableNavmesh": true + }, + { + "Position": { + "X": -156.25183, + "Y": 90.34184, + "Z": -399.8714 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": -126.149765, + "Y": 73.745605, + "Z": -427.64508 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "DataId": 1038656, + "Position": { + "X": 203.96729, + "Y": 60.34319, + "Z": -595.8496 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038657, + "Position": { + "X": 201.98364, + "Y": 60.34776, + "Z": -594.0185 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.56799, + "Y": 5.0201416, + "Z": 4.5318604 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AetheryteShortcut": "Old Sharlayan", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + }, + { + "DataId": 1038589, + "Position": { + "X": 4.0740967, + "Y": 1.9073486E-06, + "Z": 2.029419 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4377_In the Dark of the Tower.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4377_In the Dark of the Tower.json new file mode 100644 index 00000000..709a45ae --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4377_In the Dark of the Tower.json @@ -0,0 +1,78 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040291, + "Position": { + "X": -1.9379272, + "Y": 1.9073486E-06, + "Z": 1.5715942 + }, + "StopDistance": 5, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1037646, + "Position": { + "X": -568.99365, + "Y": 9.817484, + "Z": -569.8787 + }, + "TerritoryId": 957, + "AetheryteShortcut": "Thavnair - Great Work", + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011956, + "Position": { + "X": -632.04395, + "Y": -0.015319824, + "Z": -659.6018 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "TerritoryId": 957, + "InteractionType": "Duty", + "ContentFinderConditionId": 783 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040252, + "Position": { + "X": -568.719, + "Y": 9.817484, + "Z": -581.323 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4378_The Jewel of Thavnair.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4378_The Jewel of Thavnair.json new file mode 100644 index 00000000..3774871f --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4378_The Jewel of Thavnair.json @@ -0,0 +1,157 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040252, + "Position": { + "X": -568.719, + "Y": 9.817484, + "Z": -581.323 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040283, + "Position": { + "X": 210.31506, + "Y": 60.712387, + "Z": -600.76294 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040255, + "Position": { + "X": 57.26709, + "Y": -27.000013, + "Z": 177.5387 + }, + "StopDistance": 5, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 194, + "Position": { + "X": 6.6071167, + "Y": -2.02948, + "Z": 110.55151 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1040256, + "Position": { + "X": -4.135254, + "Y": -1.9999973, + "Z": 85.40466 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040257, + "Position": { + "X": -99.3515, + "Y": 20, + "Z": 110.52112 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040258, + "Position": { + "X": -149.43164, + "Y": 27.999998, + "Z": 171.12988 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 193, + "Position": { + "X": -144.33508, + "Y": 27.969727, + "Z": 202.2583 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 191, + "Position": { + "X": -365.95715, + "Y": 44.99878, + "Z": -31.815125 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1040259, + "Position": { + "X": -341.93945, + "Y": 55, + "Z": -70.603516 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040260, + "Position": { + "X": -377.27936, + "Y": 45.00252, + "Z": -28.610718 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4379_The Color of Joy.json b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4379_The Color of Joy.json new file mode 100644 index 00000000..6473b613 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4379_The Color of Joy.json @@ -0,0 +1,127 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040261, + "Position": { + "X": -377.61505, + "Y": 45.002518, + "Z": -29.922974 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040262, + "Position": { + "X": -237.01843, + "Y": 36, + "Z": 58.976074 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 192, + "Position": { + "X": -156.14563, + "Y": 35.99597, + "Z": 27.725586 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1040264, + "Position": { + "X": -106.49274, + "Y": 30.999998, + "Z": -14.54187 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040266, + "Position": { + "X": 3.982544, + "Y": -2.9207662E-05, + "Z": 0.99176025 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040268, + "Position": { + "X": 87.5105, + "Y": 1.8631812, + "Z": -121.41614 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040276, + "Position": { + "X": -99.076904, + "Y": 3.9334679, + "Z": 1.3884888 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AetheryteShortcut": "Old Sharlayan", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "StopDistance": 6, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4380_Sound the Bell, Schools in.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4380_Sound the Bell, Schools in.json new file mode 100644 index 00000000..b1aa531e --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4380_Sound the Bell, Schools in.json @@ -0,0 +1,116 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038769, + "Position": { + "X": -88.700745, + "Y": 3.8989394, + "Z": 0.8086548 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038771, + "Position": { + "X": -107.49988, + "Y": 3.8006456, + "Z": 26.29126 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038773, + "Position": { + "X": -280.232, + "Y": 20, + "Z": -67.36859 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Baldesion Annex", + "[Old Sharlayan] The Studium" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038776, + "Position": { + "X": -310.78058, + "Y": 20.0375, + "Z": -92.82062 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038500, + "Position": { + "X": -357.83936, + "Y": 21.84602, + "Z": -91.32526 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038760, + "Position": { + "X": -298.5733, + "Y": 22.423145, + "Z": -149.67578 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038780, + "Position": { + "X": -394.91876, + "Y": 20.8, + "Z": -107.927124 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4381_A Capital Idea.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4381_A Capital Idea.json new file mode 100644 index 00000000..a889d075 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4381_A Capital Idea.json @@ -0,0 +1,83 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038781, + "Position": { + "X": -393.2403, + "Y": 20.8, + "Z": -105.760315 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.56799, + "Y": 5.0201416, + "Z": 4.5318604 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Studium", + "[Old Sharlayan] The Baldesion Annex" + ] + }, + { + "DataId": 1038784, + "Position": { + "X": -0.22894287, + "Y": 1.9073486E-06, + "Z": -11.12384 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1001029, + "Position": { + "X": 9.170593, + "Y": 20.999403, + "Z": -15.213318 + }, + "TerritoryId": 129, + "InteractionType": "Interact", + "AetheryteShortcut": "Limsa Lominsa" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038796, + "Position": { + "X": 745.9678, + "Y": 69.999954, + "Z": 525.2003 + }, + "TerritoryId": 621, + "InteractionType": "Interact", + "AetheryteShortcut": "Lochs - Ala Mhigan Quarter", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4382_Best of the Best.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4382_Best of the Best.json new file mode 100644 index 00000000..7d10000e --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4382_Best of the Best.json @@ -0,0 +1,150 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038802, + "Position": { + "X": 746.63916, + "Y": 69.999954, + "Z": 523.39966 + }, + "StopDistance": 5, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1024065, + "Position": { + "X": 749.9961, + "Y": 70.139626, + "Z": 522.88086 + }, + "StopDistance": 7, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038804, + "Position": { + "X": 251.81958, + "Y": 121.999985, + "Z": -360.586 + }, + "TerritoryId": 737, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038811, + "Position": { + "X": 244.31213, + "Y": 122, + "Z": -362.96637 + }, + "StopDistance": 7, + "TerritoryId": 737, + "InteractionType": "Interact", + "Comment": "A-Ruhn-Senna" + }, + { + "DataId": 1038812, + "Position": { + "X": 245.77698, + "Y": 122, + "Z": -366.47595 + }, + "StopDistance": 7, + "TerritoryId": 737, + "InteractionType": "Interact", + "Comment": "Sicard" + }, + { + "DataId": 1038813, + "Position": { + "X": 250.78198, + "Y": 122, + "Z": -366.84216 + }, + "StopDistance": 7, + "TerritoryId": 737, + "InteractionType": "Interact", + "Comment": "Lyse" + }, + { + "DataId": 1038814, + "Position": { + "X": 251.23975, + "Y": 122, + "Z": -363.9124 + }, + "StopDistance": 7, + "TerritoryId": 737, + "InteractionType": "Interact", + "Comment": "Lucia" + }, + { + "DataId": 1038815, + "Position": { + "X": 250.17163, + "Y": 122, + "Z": -352.34613 + }, + "StopDistance": 7, + "TerritoryId": 737, + "InteractionType": "Interact", + "Comment": "Cirina" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038816, + "Position": { + "X": 254.23047, + "Y": 122, + "Z": -364.9806 + }, + "StopDistance": 7, + "TerritoryId": 737, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038817, + "Position": { + "X": 756.31335, + "Y": 69.9999, + "Z": 534.3251 + }, + "StopDistance": 7, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4383_A Frosty Reception.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4383_A Frosty Reception.json new file mode 100644 index 00000000..345a81a0 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4383_A Frosty Reception.json @@ -0,0 +1,128 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "TerritoryBlacklist": [ + 1010 + ], + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038824, + "Position": { + "X": 750.97266, + "Y": 69.99991, + "Z": 534.78296 + }, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038825, + "Position": { + "X": 742.5803, + "Y": 69.99999, + "Z": 539.6046 + }, + "TerritoryId": 621, + "InteractionType": "SinglePlayerDuty", + "Comment": "A Frosty Reception" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 172, + "Position": { + "X": -408.0791, + "Y": 24.18463, + "Z": 479.9764 + }, + "StopDistance": 7, + "TerritoryId": 958, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1038826, + "Position": { + "X": -399.31335, + "Y": 22.03761, + "Z": 454.45935 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038836, + "Position": { + "X": -439.9939, + "Y": 22.000002, + "Z": 497.79492 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038835, + "Position": { + "X": -366.17078, + "Y": 22, + "Z": 514.4884 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1038828, + "Position": { + "X": -334.5846, + "Y": 23.803606, + "Z": 404.65393 + }, + "StopDistance": 7, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038837, + "Position": { + "X": -353.41425, + "Y": 22.717295, + "Z": 435.62976 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4384_Tracks in the Snow.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4384_Tracks in the Snow.json new file mode 100644 index 00000000..d8b23832 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4384_Tracks in the Snow.json @@ -0,0 +1,181 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038839, + "Position": { + "X": -350.1488, + "Y": 22.738518, + "Z": 435.56873 + }, + "StopDistance": 7, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -210.6673, + "Y": 15.799101, + "Z": 451.78333 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo" + }, + { + "DataId": 2012000, + "Position": { + "X": -184.22223, + "Y": 31.937134, + "Z": 423.6056 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818344, + "DisableNavmesh": true + }, + { + "Position": { + "X": -188.58397, + "Y": 20.625948, + "Z": 408.3002 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo", + "DisableNavmesh": true, + "Mount": true + }, + { + "DataId": 1038840, + "Position": { + "X": -157.06122, + "Y": 18.316332, + "Z": 364.06494 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": -135.94785, + "Y": 3.426586, + "Z": 360.1115 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo", + "DisableNavmesh": true, + "Mount": true + }, + { + "Position": { + "X": -48.166317, + "Y": -0.8113563, + "Z": 374.09103 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo" + }, + { + "DataId": 2012076, + "Position": { + "X": -31.265808, + "Y": -0.25946045, + "Z": 362.81372 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012077, + "Position": { + "X": 36.942017, + "Y": -12.039368, + "Z": 362.2339 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038843, + "Position": { + "X": 66.84973, + "Y": -14.344919, + "Z": 385.7328 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012078, + "Position": { + "X": 117.81482, + "Y": -16.922302, + "Z": 390.46313 + }, + "TerritoryId": 958, + "InteractionType": "SinglePlayerDuty", + "Comment": "Follow Girl in Green" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1038846, + "Position": { + "X": 555.8098, + "Y": 32.30835, + "Z": 159.10571 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038846, + "Position": { + "X": 555.8098, + "Y": 32.30835, + "Z": 159.10571 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4385_How the Mighty Are Fallen.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4385_How the Mighty Are Fallen.json new file mode 100644 index 00000000..711b3ec2 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4385_How the Mighty Are Fallen.json @@ -0,0 +1,201 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038847, + "Position": { + "X": 563.9885, + "Y": 32.318867, + "Z": 150.04187 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038849, + "Position": { + "X": 588.464, + "Y": 38.372063, + "Z": 216.6018 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038850, + "Position": { + "X": 589.8069, + "Y": 38.372063, + "Z": 217.54773 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038851, + "Position": { + "X": 591.33276, + "Y": 38.372063, + "Z": 214.55713 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038852, + "Position": { + "X": 585.046, + "Y": 38.372063, + "Z": 216.05249 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038847, + "Position": { + "X": 563.9885, + "Y": 32.318867, + "Z": 150.04187 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": 398.44858, + "Y": 5.094846, + "Z": 231.72844 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 393.71204, + "Y": 4.142438, + "Z": 251.71986 + }, + "TerritoryId": 958, + "InteractionType": "ShouldBeAJump", + "DisableNavmesh": true, + "Comment": "Jump on Pipeline and move near the Aether Current" + }, + { + "DataId": 2012003, + "Position": { + "X": 405.2948, + "Y": -2.243164, + "Z": 520.31726 + }, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818347 + }, + { + "Position": { + "X": 379.2122, + "Y": -18.622318, + "Z": 530.3423 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 2012001, + "Position": { + "X": 194.81189, + "Y": -12.863403, + "Z": 644.28174 + }, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818345 + }, + { + "DataId": 1038853, + "Position": { + "X": 156.75586, + "Y": -14.955569, + "Z": 623.22424 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1037712, + "Position": { + "X": 136.5835, + "Y": -13.28456, + "Z": 650.26306 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Mount": false, + "Comment": "TODO Should cancel Navmesh on fade out" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038856, + "Position": { + "X": 137.65161, + "Y": -13.278784, + "Z": 648.249 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4386_At the End of the Trail.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4386_At the End of the Trail.json new file mode 100644 index 00000000..7273a331 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4386_At the End of the Trail.json @@ -0,0 +1,127 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1037712, + "Position": { + "X": 136.5835, + "Y": -13.28456, + "Z": 650.26306 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038857, + "Position": { + "X": 559.0753, + "Y": 32.322315, + "Z": 159.4414 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038858, + "Position": { + "X": 596.5818, + "Y": 32.318665, + "Z": 138.8418 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038862, + "Position": { + "X": 504.96667, + "Y": 19.447378, + "Z": 175.73816 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038863, + "Position": { + "X": 310.71948, + "Y": -16.262552, + "Z": 357.01526 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012083, + "Position": { + "X": 429.86182, + "Y": -17.410583, + "Z": 543.6942 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1038865, + "Position": { + "X": 583.85596, + "Y": -15.842519, + "Z": 625.63513 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038867, + "Position": { + "X": 605.9509, + "Y": 34.7239, + "Z": 202.47192 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4387_A Way Forward.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4387_A Way Forward.json new file mode 100644 index 00000000..8cc0d700 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4387_A Way Forward.json @@ -0,0 +1,118 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038868, + "Position": { + "X": 605.9204, + "Y": 34.7239, + "Z": 201.09851 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039864, + "Position": { + "X": -334.12683, + "Y": 23.803606, + "Z": 405.2644 + }, + "StopDistance": 7, + "TerritoryId": 958, + "InteractionType": "Interact", + "AetheryteShortcut": "Garlemald - Camp Broken Glass" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039870, + "Position": { + "X": -358.14453, + "Y": 22.554066, + "Z": 430.01453 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039878, + "Position": { + "X": -362.1729, + "Y": 22.071072, + "Z": 434.01233 + }, + "StopDistance": 7, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039880, + "Position": { + "X": -308.36963, + "Y": 22.468344, + "Z": 365.7129 + }, + "TerritoryId": 958, + "InteractionType": "WaitForManualProgress", + "Comment": "Follow Alphinaud and Alisaie" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039880, + "Position": { + "X": 66.50907, + "Y": 0.26087344, + "Z": 149.46323 + }, + "StopDistance": 1, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Follow Alphinaud and Alisaie" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039883, + "Position": { + "X": 64.65234, + "Y": 0.21427588, + "Z": 147.8446 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4388_The Last Bastion.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4388_The Last Bastion.json new file mode 100644 index 00000000..63b2250b --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4388_The Last Bastion.json @@ -0,0 +1,213 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039883, + "Position": { + "X": 64.65234, + "Y": 0.21427588, + "Z": 147.8446 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012002, + "Position": { + "X": 83.08533, + "Y": 1.5106201, + "Z": 102.00659 + }, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818346 + }, + { + "Position": { + "X": 168.04597, + "Y": 0.96746624, + "Z": 103.04115 + }, + "StopDistance": 1, + "TerritoryId": 958, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14083, + 14084 + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038761, + "Position": { + "X": 169.2378, + "Y": 0.99992824, + "Z": 105.82129 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": 301.11044, + "Y": 5.506278, + "Z": 78.14653 + }, + "StopDistance": 1, + "TerritoryId": 958, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14082 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038766, + "Position": { + "X": 301.19775, + "Y": 5.5300293, + "Z": 76.67651 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040164, + "Position": { + "X": 387.28918, + "Y": 3.8935592, + "Z": 71.97681 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": 527.62775, + "Y": 14.620869, + "Z": -164.97536 + }, + "StopDistance": 1, + "TerritoryId": 958, + "EnemySpawnType": "AutoOnEnterArea", + "InteractionType": "Combat", + "KillEnemyDataIds": [ + 14081 + ] + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1040750, + "Position": { + "X": 526.9092, + "Y": 14.616225, + "Z": -162.85956 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 1039886, + "Position": { + "X": 520.8667, + "Y": 10.800001, + "Z": -352.49866 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 9, + "Steps": [ + { + "DataId": 1039889, + "Position": { + "X": 509.4834, + "Y": 10.800001, + "Z": -422.62915 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 10, + "Steps": [ + { + "DataId": 1039890, + "Position": { + "X": 528.2825, + "Y": -36.65, + "Z": -251.48401 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039892, + "Position": { + "X": 547.5393, + "Y": -35.24417, + "Z": -192.27899 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4389_Personae non Gratae.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4389_Personae non Gratae.json new file mode 100644 index 00000000..d0383fa8 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4389_Personae non Gratae.json @@ -0,0 +1,188 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039896, + "Position": { + "X": 530.1747, + "Y": -36.65, + "Z": -175.86023 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1037716, + "Position": { + "X": 524.43726, + "Y": -36.65, + "Z": -186.69415 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Caeso", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 17 0 0 0 0 64" + }, + { + "DataId": 1037718, + "Position": { + "X": 512.62683, + "Y": -36.65, + "Z": -160.3266 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Octavia", + "$.0": "[2]", + "$.2": "QuestVariables if done after [1]: 33 1 0 0 0 80" + }, + { + "Position": { + "X": 502.34732, + "Y": -36.65, + "Z": -178.38684 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo" + }, + { + "DataId": 1037715, + "Position": { + "X": 500.57214, + "Y": -36.65, + "Z": -178.85101 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Sabinianus", + "$.0": "[3]", + "$.2": "QuestVariables if done after [1, 2]: 49 1 16 0 0 206" + }, + { + "DataId": 1037717, + "Position": { + "X": 495.35352, + "Y": -36.06746, + "Z": -205.1576 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Marcellinus", + "$.0": "[4]", + "$.2": "QuestVariables if done after [1, 2, 3]: 65 17 16 0 0 240" + }, + { + "DataId": 2012062, + "Position": { + "X": 512.1679, + "Y": -34.82775, + "Z": -201.7169 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Magitek Radio", + "$.0": "[5]" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039899, + "Position": { + "X": 549.6758, + "Y": -36.616077, + "Z": -216.84601 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": 548.01605, + "Y": -36.61611, + "Z": -237.499 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 547.66595, + "Y": -36.616203, + "Z": -244.51854 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "DataId": 1037719, + "Position": { + "X": 549.7977, + "Y": -36.61618, + "Z": -260.57837 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": 547.021, + "Y": -36.616203, + "Z": -244.6051 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo" + }, + { + "DataId": 1039899, + "Position": { + "X": 549.6758, + "Y": -36.616077, + "Z": -216.84601 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039896, + "Position": { + "X": 530.1747, + "Y": -36.65, + "Z": -175.86023 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4390_His Park Materials.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4390_His Park Materials.json new file mode 100644 index 00000000..cee2e95c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4390_His Park Materials.json @@ -0,0 +1,165 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039896, + "Position": { + "X": 530.1747, + "Y": -36.65, + "Z": -175.86023 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 531.7644, + "Y": -36.650005, + "Z": -228.76685 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo" + }, + { + "DataId": 1039901, + "Position": { + "X": 408.65186, + "Y": 15.5581665, + "Z": -496.14713 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012093, + "Position": { + "X": 381.73486, + "Y": 15.548889, + "Z": -503.2578 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + }, + { + "DataId": 2012094, + "Position": { + "X": 381.64343, + "Y": 25.986084, + "Z": -503.19678 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Map", + "Mount": true + }, + { + "DataId": 2012005, + "Position": { + "X": 382.1621, + "Y": 25.894531, + "Z": -482.20038 + }, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818349 + }, + { + "DataId": 2012095, + "Position": { + "X": 423.1173, + "Y": 16.311829, + "Z": -570.3365 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Warmachine Wreckage" + }, + { + "DataId": 2012096, + "Position": { + "X": 381.9486, + "Y": 16.617004, + "Z": -635.33997 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Children's Slide" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039906, + "Position": { + "X": 432.2423, + "Y": 15.558166, + "Z": -611.90204 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012100, + "Position": { + "X": 445.76172, + "Y": 15.487854, + "Z": -648.61523 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039906, + "Position": { + "X": 432.2423, + "Y": 15.558166, + "Z": -611.90204 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039906, + "Position": { + "X": 432.2423, + "Y": 15.558166, + "Z": -611.90204 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4391_No Good Deed.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4391_No Good Deed.json new file mode 100644 index 00000000..4d8824c4 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4391_No Good Deed.json @@ -0,0 +1,99 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038789, + "Position": { + "X": 413.13794, + "Y": 16.102577, + "Z": -578.4848 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039910, + "Position": { + "X": 340.59656, + "Y": 10.799996, + "Z": -529.9306 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012101, + "Position": { + "X": 270.25244, + "Y": 10.452393, + "Z": -579.7666 + }, + "TerritoryId": 958, + "InteractionType": "UseItem", + "ItemId": 2003229 + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039910, + "Position": { + "X": 340.59656, + "Y": 10.799996, + "Z": -529.9306 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012106, + "Position": { + "X": 339.1621, + "Y": 10.788086, + "Z": -530.54095 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039913, + "Position": { + "X": 526.3904, + "Y": -36.65, + "Z": -233.87512 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4392_Alea Iacta Est.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4392_Alea Iacta Est.json new file mode 100644 index 00000000..81aed27d --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4392_Alea Iacta Est.json @@ -0,0 +1,95 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039913, + "Position": { + "X": 526.3904, + "Y": -36.65, + "Z": -233.87512 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038790, + "Position": { + "X": 495.41467, + "Y": -36.06746, + "Z": -205.12708 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Marcellinus", + "$.1": "QuestVariables if done first: 16 16 0 0 0 128" + }, + { + "DataId": 1038791, + "Position": { + "X": 512.62683, + "Y": -36.65, + "Z": -160.3266 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "Octavia" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039889, + "Position": { + "X": 509.4834, + "Y": 10.800001, + "Z": -422.62915 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012107, + "Position": { + "X": 279.37744, + "Y": 10.8185425, + "Z": -232.98999 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039915, + "Position": { + "X": -399.80164, + "Y": 22.143175, + "Z": 422.8733 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4393_Strange Bedfellows.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4393_Strange Bedfellows.json new file mode 100644 index 00000000..116ea21f --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4393_Strange Bedfellows.json @@ -0,0 +1,304 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039915, + "Position": { + "X": -399.80164, + "Y": 22.143175, + "Z": 422.8733 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012008, + "Position": { + "X": 134.90503, + "Y": 14.389221, + "Z": -172.25916 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818352 + }, + { + "Position": { + "X": -141.20903, + "Y": 11.389334, + "Z": -399.3773 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": -153.54558, + "Y": 11.389343, + "Z": -402.64487 + }, + "TerritoryId": 958, + "InteractionType": "Instruction", + "Comment": "Jump to Aether Current" + }, + { + "DataId": 2012009, + "Position": { + "X": -144.9455, + "Y": 17.56311, + "Z": -420.52344 + }, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818353 + }, + { + "Position": { + "X": -145.6724, + "Y": 11.389343, + "Z": -398.82806 + }, + "TerritoryId": 958, + "InteractionType": "Instruction", + "Comment": "Leave the Aether Current location" + }, + { + "Position": { + "X": 78.52435, + "Y": 10.5, + "Z": -337.21478 + }, + "TerritoryId": 958, + "InteractionType": "Instruction", + "Comment": "Jump onto the Highway" + }, + { + "DataId": 2012007, + "Position": { + "X": 79.9115, + "Y": 37.857544, + "Z": -518.2117 + }, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818351 + }, + { + "Position": { + "X": 76.583664, + "Y": 10.5, + "Z": -538.34607 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 1039917, + "Position": { + "X": 495.50623, + "Y": 10.800001, + "Z": -425.2232 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1037715, + "Position": { + "X": 500.57214, + "Y": -36.65, + "Z": -178.85101 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 173, + "Position": { + "X": 518.9136, + "Y": -35.324707, + "Z": -178.36273 + }, + "StopDistance": 7, + "TerritoryId": 958, + "InteractionType": "AttuneAetheryte", + "DisableNavmesh": true + }, + { + "DataId": 1037716, + "Position": { + "X": 524.43726, + "Y": -36.65, + "Z": -186.69415 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1037719, + "Position": { + "X": 549.7977, + "Y": -36.61618, + "Z": -260.57837 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039924, + "Position": { + "X": 547.5089, + "Y": -35.24417, + "Z": -192.73676 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": 539.89374, + "Y": -36.65, + "Z": -193.11551 + }, + "TerritoryId": 958, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 2012111, + "Position": { + "X": 507.042, + "Y": 8.8654175, + "Z": 64.68298 + }, + "TerritoryId": 958, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14078 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done first: (before) 0 0 2 0 0 0 (after) 16 16 2 0 0 64" + }, + { + "DataId": 2012109, + "Position": { + "X": 338.49072, + "Y": 2.304016, + "Z": 94.77368 + }, + "TerritoryId": 958, + "InteractionType": "Instruction", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14079 + ], + "Comment": "TODO Needs item use?", + "ItemId": 2003231, + "ItemUseHealthMaxPercent": 10, + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 32 17 1 0 0 96" + }, + { + "DataId": 2012108, + "Position": { + "X": 79.42322, + "Y": 0.62561035, + "Z": 153.24634 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Comment": "TODO Maybe move the train station aether current interaction before this", + "$.0": "[3]", + "$.1": "QuestVariables if done after [1, 2]: 49 17 1 0 0 224" + }, + { + "DataId": 2012110, + "Position": { + "X": -25.558899, + "Y": -12.954956, + "Z": 396.96338 + }, + "TerritoryId": 958, + "InteractionType": "Instruction", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14080 + ], + "Comment": "TODO Needs item use?", + "ItemId": 2003231, + "ItemUseHealthMaxPercent": 10, + "$.0": "[4]" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1039930, + "Position": { + "X": -208.33148, + "Y": 15.486622, + "Z": 450.88867 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039931, + "Position": { + "X": -351.15588, + "Y": 23.742596, + "Z": 418.4176 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4394_In from the Cold.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4394_In from the Cold.json new file mode 100644 index 00000000..25b94232 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4394_In from the Cold.json @@ -0,0 +1,52 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039931, + "Position": { + "X": -351.15588, + "Y": 23.742596, + "Z": 418.4176 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039932, + "Position": { + "X": -357.99194, + "Y": 22, + "Z": 488.3954 + }, + "TerritoryId": 958, + "InteractionType": "SinglePlayerDuty", + "Comment": "In from the Cold" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039933, + "Position": { + "X": -369.2531, + "Y": 22.20836, + "Z": 403.76892 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4395_Gateway of the Gods.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4395_Gateway of the Gods.json new file mode 100644 index 00000000..c3ac8466 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4395_Gateway of the Gods.json @@ -0,0 +1,123 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039940, + "Position": { + "X": -371.29785, + "Y": 22.255, + "Z": 400.71716 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012004, + "Position": { + "X": -516.1059, + "Y": 42.46582, + "Z": 67.826294 + }, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818348 + }, + { + "DataId": 1039942, + "Position": { + "X": -462.57727, + "Y": 20.805109, + "Z": -340.68823 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012006, + "Position": { + "X": -602.04474, + "Y": 34.286987, + "Z": -325.85645 + }, + "TerritoryId": 958, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818350 + }, + { + "DataId": 1039946, + "Position": { + "X": -476.0052, + "Y": 10.889291, + "Z": -678.0652 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1042016, + "Position": { + "X": -483.299, + "Y": 10.889291, + "Z": -677.4243 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + }, + { + "DataId": 2012112, + "Position": { + "X": -516.7163, + "Y": -190.02063, + "Z": -675.288 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "TerritoryId": 958, + "InteractionType": "Duty", + "ContentFinderConditionId": 785 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039969, + "Position": { + "X": 2.029419, + "Y": 0, + "Z": 33.585083 + }, + "TerritoryId": 1024, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4396_A Trip to the Moon.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4396_A Trip to the Moon.json new file mode 100644 index 00000000..3e5fbbef --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4396_A Trip to the Moon.json @@ -0,0 +1,113 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039974, + "Position": { + "X": 2.5177002, + "Y": 0, + "Z": 26.840576 + }, + "TerritoryId": 1024, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012116, + "Position": { + "X": 5.585561E-05, + "Y": 6.62077, + "Z": -0.00103838 + }, + "TerritoryId": 1024, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 174, + "Position": { + "X": -566.2438, + "Y": 134.6656, + "Z": 650.6459 + }, + "StopDistance": 10, + "TerritoryId": 959, + "InteractionType": "AttuneAetheryte", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 1039977, + "Position": { + "X": -627.49677, + "Y": 128.67758, + "Z": 632.41016 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14077 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039977, + "Position": { + "X": -627.49677, + "Y": 128.67758, + "Z": 632.41016 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012118, + "Position": { + "X": -423.9109, + "Y": 136.9497, + "Z": 573.47986 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042050, + "Position": { + "X": -383.04724, + "Y": 169.00394, + "Z": 547.5393 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4397_Sea of Sorrow.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4397_Sea of Sorrow.json new file mode 100644 index 00000000..a5c0d5ed --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4397_Sea of Sorrow.json @@ -0,0 +1,182 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039978, + "Position": { + "X": -383.04724, + "Y": 169.00394, + "Z": 547.5393 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039979, + "Position": { + "X": -351.97992, + "Y": 103.09564, + "Z": 514.4884 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039980, + "Position": { + "X": -262.3484, + "Y": 75.328064, + "Z": 500.08386 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039981, + "Position": { + "X": -258.56415, + "Y": 73.19127, + "Z": 455.49695 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039982, + "Position": { + "X": -193.13348, + "Y": 57.684105, + "Z": 410.849 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039985, + "Position": { + "X": -189.92908, + "Y": 58.229942, + "Z": 419.7605 + }, + "TerritoryId": 959, + "InteractionType": "Instruction", + "Comment": "Follow Argos" + }, + { + "DataId": 1039986, + "Position": { + "X": 43.9917, + "Y": 59.052986, + "Z": 523.5217 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1039983, + "Position": { + "X": 20.187622, + "Y": 59.184967, + "Z": 523.24695 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "KillEnemyDataIds": [ + 14076 + ] + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1039983, + "Position": { + "X": 20.187622, + "Y": 59.184967, + "Z": 523.24695 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 1039986, + "Position": { + "X": 43.9917, + "Y": 59.052986, + "Z": 523.5217 + }, + "TerritoryId": 959, + "InteractionType": "Instruction", + "Comment": "Follow Argos" + }, + { + "DataId": 1039987, + "Position": { + "X": 189.25769, + "Y": 63.36112, + "Z": 467.46008 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039984, + "Position": { + "X": 183.39807, + "Y": 58.834427, + "Z": 427.29822 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/B-Garlemald/4398_The Martyr.json b/QuestPaths/Endwalker/MSQ/B-Garlemald/4398_The Martyr.json new file mode 100644 index 00000000..51e28375 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/B-Garlemald/4398_The Martyr.json @@ -0,0 +1,66 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "TerritoryBlacklist": [ + 992 + ], + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039987, + "Position": { + "X": 189.25769, + "Y": 63.36112, + "Z": 467.46008 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039987, + "Position": { + "X": 189.25769, + "Y": 63.36112, + "Z": 467.46008 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "TerritoryId": 1028, + "InteractionType": "Duty", + "ContentFinderConditionId": 802, + "Comment": "The Dark Inside" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039989, + "Position": { + "X": -279.95728, + "Y": 76.14732, + "Z": 480.91858 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4399_In_Shadows_Wake.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4399_In_Shadows_Wake.json new file mode 100644 index 00000000..6f8585f4 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4399_In_Shadows_Wake.json @@ -0,0 +1,116 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039989, + "Position": { + "X": -279.95728, + "Y": 76.14732, + "Z": 480.91858 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038872, + "Position": { + "X": -434.13446, + "Y": 136.0188, + "Z": 570.1228 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012173, + "Position": { + "X": -409.75055, + "Y": 172.25903, + "Z": 548.94324 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012174, + "Position": { + "X": -446.09753, + "Y": 163.31726, + "Z": 593.0419 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012175, + "Position": { + "X": -407.37012, + "Y": 156.8169, + "Z": 594.23206 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012176, + "Position": { + "X": -399.588, + "Y": 147.4784, + "Z": 566.1554 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038876, + "Position": { + "X": -445.54822, + "Y": 136.0188, + "Z": 552.5748 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4400_Helping Hands.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4400_Helping Hands.json new file mode 100644 index 00000000..6fe49244 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4400_Helping Hands.json @@ -0,0 +1,160 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038880, + "Position": { + "X": -382.2843, + "Y": 169.00394, + "Z": 549.6758 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -326.42538, + "Y": 98.98749, + "Z": 526.5519 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "Position": { + "X": -50.482517, + "Y": 42.360725, + "Z": 466.64243 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 113.70272, + "Y": 45.552776, + "Z": 460.49585 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 129.9883, + "Y": 54.543076, + "Z": 468.93378 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 126.817184, + "Y": 55.823048, + "Z": 476.34058 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038884, + "Position": { + "X": 295.1858, + "Y": 87.78831, + "Z": 538.8723 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038888, + "Position": { + "X": 446.95203, + "Y": 69.15293, + "Z": 540.032 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012177, + "Position": { + "X": 486.71704, + "Y": 70.69495, + "Z": 538.90283 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040516, + "Position": { + "X": 205.52368, + "Y": 59.358307, + "Z": 405.87463 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040518, + "Position": { + "X": 205.06592, + "Y": 59.911327, + "Z": 411.42883 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038894, + "Position": { + "X": 2.670288, + "Y": -49.8925, + "Z": -366.0487 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4401_A Harey Situation.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4401_A Harey Situation.json new file mode 100644 index 00000000..e2921848 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4401_A Harey Situation.json @@ -0,0 +1,132 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038894, + "Position": { + "X": 2.670288, + "Y": -49.8925, + "Z": -366.0487 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 1.131261, + "Y": -114.92335, + "Z": -418.2727 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 1038897, + "Position": { + "X": 30.838379, + "Y": -132.94641, + "Z": -435.47723 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 175, + "Position": { + "X": -0.01531982, + "Y": -128.8109, + "Z": -512.0165 + }, + "StopDistance": 10, + "TerritoryId": 959, + "InteractionType": "AttuneAetheryte" + }, + { + "Position": { + "X": 36.500526, + "Y": -129.20917, + "Z": -521.85284 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038901, + "Position": { + "X": 120.531006, + "Y": -132.86647, + "Z": -555.0164 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038902, + "Position": { + "X": -124.864624, + "Y": -132.87448, + "Z": -471.91577 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "Position": { + "X": -72.39724, + "Y": -49.589592, + "Z": -336.63968 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": -105.34293, + "Y": -49.589592, + "Z": -367.6591 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "DataId": 1038903, + "Position": { + "X": -17.95996, + "Y": -47.192066, + "Z": -494.31604 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4402_A Taste of the Moon.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4402_A Taste of the Moon.json new file mode 100644 index 00000000..8f90639f --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4402_A Taste of the Moon.json @@ -0,0 +1,143 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039686, + "Position": { + "X": -17.95996, + "Y": -47.192066, + "Z": -494.31604 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012013, + "Position": { + "X": 29.1046, + "Y": -47.739, + "Z": -550.4077 + }, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818362 + }, + { + "Position": { + "X": 62.71022, + "Y": -46.99965, + "Z": -433.81802 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 47.394165, + "Y": -133.50012, + "Z": -397.90225 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "DataId": 2012019, + "Position": { + "X": 21.7081, + "Y": -133.5001, + "Z": -385.7313 + }, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818368, + "DisableNavmesh": true + }, + { + "DataId": 1038908, + "Position": { + "X": -456.10742, + "Y": -168, + "Z": -618.7686 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012178, + "TerritoryId": 959, + "InteractionType": "Interact", + "Comment": "Navmesh can't jump" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012011, + "Position": { + "X": -482.7497, + "Y": -154.95538, + "Z": -595.72754 + }, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818360 + }, + { + "DataId": 1038912, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact", + "Comment": "Navmesh can't jump" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": -455.40552, + "Y": -168, + "Z": -620.05035 + }, + "TerritoryId": 959, + "InteractionType": "UseItem", + "ItemId": 2003236 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038912, + "Position": { + "X": -455.40552, + "Y": -168, + "Z": -620.05035 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4403_Styled a Hero.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4403_Styled a Hero.json new file mode 100644 index 00000000..3223e91a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4403_Styled a Hero.json @@ -0,0 +1,139 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038908, + "Position": { + "X": -456.10742, + "Y": -168, + "Z": -618.7686 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038919, + "Position": { + "X": -518.36426, + "Y": -161.84549, + "Z": -281.94098 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": -356.28064, + "Y": -161.84383, + "Z": -253.94832 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038923, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact", + "Comment": "Navmesh can't jump" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": -338.71045, + "Y": -161.84383, + "Z": -361.57114 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038924, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact", + "Comment": "Navmesh can't jump" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038919, + "Position": { + "X": -518.36426, + "Y": -161.84549, + "Z": -281.94098 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1038925, + "Position": { + "X": -506.52325, + "Y": -161.84383, + "Z": -258.68628 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1038926, + "Position": { + "X": -28.244446, + "Y": -131.29884, + "Z": -585.7481 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038927, + "Position": { + "X": 2.090454, + "Y": -49.589596, + "Z": -699.733 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4404_Alls Vale That Endsvale.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4404_Alls Vale That Endsvale.json new file mode 100644 index 00000000..4293bb8f --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4404_Alls Vale That Endsvale.json @@ -0,0 +1,210 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038927, + "Position": { + "X": 2.090454, + "Y": -49.589596, + "Z": -699.733 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 68.93551, + "Y": -48.912445, + "Z": -683.716 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "DisableNavmesh": true, + "Mount": true + }, + { + "Position": { + "X": 86.32549, + "Y": -137.4167, + "Z": -619.77936 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "DataId": 1038928, + "Position": { + "X": 146.37976, + "Y": -137.32071, + "Z": -504.26492 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038929, + "Position": { + "X": 681.45264, + "Y": -152, + "Z": -494.13293 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038929, + "Position": { + "X": 681.45264, + "Y": -152, + "Z": -494.13293 + }, + "TerritoryId": 959, + "InteractionType": "Emote", + "Emote": "stretch" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038929, + "Position": { + "X": 681.45264, + "Y": -152, + "Z": -494.13293 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012017, + "Position": { + "X": 652.9487, + "Y": -160.72333, + "Z": -405.08124 + }, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818366 + }, + { + "DataId": 1038929, + "Position": { + "X": 595.4731, + "Y": -167.50227, + "Z": -511.4072 + }, + "StopDistance": 0.25, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1038929, + "Position": { + "X": 547.8397, + "Y": -167.50174, + "Z": -526.3702 + }, + "StopDistance": 0.25, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1038929, + "Position": { + "X": 572.45984, + "Y": -167.50163, + "Z": -577.03906 + }, + "StopDistance": 0.25, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 1038929, + "Position": { + "X": 617.89886, + "Y": -167.50163, + "Z": -594.92847 + }, + "StopDistance": 0.25, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 9, + "Steps": [ + { + "DataId": 1038929, + "Position": { + "X": 622.8754, + "Y": -167.50217, + "Z": -659.45184 + }, + "StopDistance": 0.25, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038932, + "Position": { + "X": 617.05945, + "Y": -168.00002, + "Z": -656.58044 + }, + "StopDistance": 7, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4405_Back to Old Tricks.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4405_Back to Old Tricks.json new file mode 100644 index 00000000..6131425d --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4405_Back to Old Tricks.json @@ -0,0 +1,86 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038931, + "Position": { + "X": 615.8998, + "Y": -168, + "Z": -657.7402 + }, + "StopDistance": 7, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012184, + "Position": { + "X": 73.83838, + "Y": -133.07397, + "Z": -512.2606 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012185, + "Position": { + "X": -5.416992, + "Y": -49.05786, + "Z": -269.24548 + }, + "TerritoryId": 959, + "InteractionType": "SinglePlayerDuty", + "Comment": "Follow Urianger" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012185, + "Position": { + "X": -5.416992, + "Y": -49.05786, + "Z": -269.24548 + }, + "TerritoryId": 959, + "InteractionType": "SinglePlayerDuty", + "Comment": "Follow Urianger (but you failed the first time)" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038935, + "Position": { + "X": 68.5282, + "Y": 75.72459, + "Z": -23.51416 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4406_Settiing Things Straight.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4406_Settiing Things Straight.json new file mode 100644 index 00000000..ed498ea1 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4406_Settiing Things Straight.json @@ -0,0 +1,208 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038935, + "Position": { + "X": 68.5282, + "Y": 75.72459, + "Z": -23.51416 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -126.76068, + "Y": 61.04055, + "Z": -76.382324 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "DataId": 2012014, + "Position": { + "X": -128.008, + "Y": 66.33093, + "Z": -68.2536 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818363 + }, + { + "Position": { + "X": -116.83438, + "Y": 63.151585, + "Z": -71.81973 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "Mount": true + }, + { + "DataId": 2012010, + "Position": { + "X": 42.58789, + "Y": 124.01001, + "Z": -167.04059 + }, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818359 + }, + { + "DataId": 1038936, + "Position": { + "X": 191.48547, + "Y": 93.90228, + "Z": -54.306885 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012235, + "Position": { + "X": 183.30652, + "Y": 87.20532, + "Z": -30.47229 + }, + "TerritoryId": 959, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 13998, + 14093, + 13998 + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012433, + "Position": { + "X": 183.30652, + "Y": 87.17468, + "Z": -30.380737 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038936, + "Position": { + "X": 191.48547, + "Y": 93.90228, + "Z": -54.306885 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "Position": { + "X": 304.50522, + "Y": -144, + "Z": -558.8681 + }, + "TerritoryId": 959, + "InteractionType": "ShouldBeAJump", + "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow", + "Comment": "Navmesh can't jump" + }, + { + "DataId": 2012012, + "Position": { + "X": 316.39575, + "Y": -154.98596, + "Z": -595.5444 + }, + "StopDistance": 3, + "TerritoryId": 959, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818361 + }, + { + "Position": { + "X": 351.1467, + "Y": -167.87698, + "Z": -605.0467 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038937, + "Position": { + "X": 381.7959, + "Y": -168.00002, + "Z": -594.62885 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 2012337, + "Position": { + "X": 466.8496, + "Y": -168.01715, + "Z": -654.13904 + }, + "TerritoryId": 959, + "InteractionType": "SinglePlayerDuty", + "Comment": "Find \"Runninway?\"" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038944, + "Position": { + "X": 361.65405, + "Y": -168.00002, + "Z": -628.19867 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4407_Heart of the Matter.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4407_Heart of the Matter.json new file mode 100644 index 00000000..dbd2af4d --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4407_Heart of the Matter.json @@ -0,0 +1,119 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038946, + "Position": { + "X": 362.50854, + "Y": -168.00002, + "Z": -625.11633 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012664, + "Position": { + "X": -26.901672, + "Y": -130.47992, + "Z": -580.4685 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow", + "Comment": "Teleporter" + }, + { + "Position": { + "X": 65.32143, + "Y": -49.589592, + "Z": -690.11676 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038947, + "Position": { + "X": 184.00854, + "Y": -49.589592, + "Z": -627.9545 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 13996, + "Position": { + "X": 166.0768, + "Y": -49.589592, + "Z": -641.8327 + }, + "TerritoryId": 959, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 13996, + 13997, + 13995 + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": 18.495846, + "Y": -49.589592, + "Z": -301.7225 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo" + }, + { + "DataId": 1038950, + "Position": { + "X": -2.7008667, + "Y": -27.758478, + "Z": -214.77081 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038952, + "Position": { + "X": -609.12494, + "Y": 128.67769, + "Z": 572.0454 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4408_Returning Home.json b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4408_Returning Home.json new file mode 100644 index 00000000..52a8df53 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4408_Returning Home.json @@ -0,0 +1,137 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038953, + "Position": { + "X": -611.1391, + "Y": 128.6778, + "Z": 566.8573 + }, + "StopDistance": 5, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -614.86835, + "Y": 128.67761, + "Z": 677.33923 + }, + "TerritoryId": 959, + "InteractionType": "WalkTo", + "Comment": "Avoids Combat" + }, + { + "DataId": 2012531, + "Position": { + "X": -663.29443, + "Y": 132.6466, + "Z": 728.96924 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + }, + { + "DataId": 1038960, + "Position": { + "X": 0.99176025, + "Y": 0, + "Z": 22.171326 + }, + "TerritoryId": 1024, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1038963, + "Position": { + "X": -338.2467, + "Y": 23.803604, + "Z": 407.79736 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "AetheryteShortcut": "Garlemald - Camp Broken Glass" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038965, + "Position": { + "X": -104.9668, + "Y": 3.8989396, + "Z": 9.262146 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AetheryteShortcut": "Old Sharlayan", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.56799, + "Y": 5.0201416, + "Z": 4.5318604 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + }, + { + "DataId": 2012188, + "Position": { + "X": -0.015319824, + "Y": -0.015319824, + "Z": -5.081299 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4409_Skies Aflame.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4409_Skies Aflame.json new file mode 100644 index 00000000..dcc7ef9c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4409_Skies Aflame.json @@ -0,0 +1,89 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038969, + "Position": { + "X": -104.478516, + "Y": 3.8989394, + "Z": 7.003784 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.5617, + "Y": 5.0504, + "Z": 4.55803 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "TerritoryId": 957, + "AetheryteShortcut": "Thavnair - Yedlihmad", + "InteractionType": "WalkTo", + "Comment": "Quest automatically progresses once teleported to Yedlihmad" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038978, + "Position": { + "X": 202.34985, + "Y": 1.7699993, + "Z": 757.71716 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "TerritoryId": 957, + "InteractionType": "Duty", + "ContentFinderConditionId": 789 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038992, + "Position": { + "X": 4.6539917, + "Y": -1.9999963, + "Z": 93.492065 + }, + "StopDistance": 5, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4410_The Blasphemy Unmasked.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4410_The Blasphemy Unmasked.json new file mode 100644 index 00000000..a72c9042 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4410_The Blasphemy Unmasked.json @@ -0,0 +1,156 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038992, + "Position": { + "X": 4.6539917, + "Y": -1.9999963, + "Z": 93.492065 + }, + "StopDistance": 5, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038997, + "Position": { + "X": 2.7618408, + "Y": -1.9999962, + "Z": 97.30664 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1037313, + "Position": { + "X": 137.71265, + "Y": 4.783756, + "Z": -153.9483 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1037314, + "Position": { + "X": 15.701477, + "Y": 0.9, + "Z": -115.22089 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "Comment": "Varsra" + }, + { + "DataId": 1037316, + "Position": { + "X": -47.04364, + "Y": 0.9199997, + "Z": -94.95697 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "Comment": "Zeytahnur" + }, + { + "DataId": 1037315, + "Position": { + "X": -19.60791, + "Y": 0.8999999, + "Z": -60.68518 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "Comment": "Rahdvira" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038997, + "Position": { + "X": -37.667046, + "Y": -0.00014948845, + "Z": -136.80333 + }, + "StopDistance": 0.25, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 196, + "Position": { + "X": -42.61847, + "Y": -0.015319824, + "Z": -197.61963 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1039001, + "Position": { + "X": -20.096191, + "Y": 3.0099998, + "Z": -226.79486 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + }, + { + "DataId": 1037317, + "Position": { + "X": -25.314758, + "Y": 1.7999934, + "Z": -185.96173 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1037318, + "Position": { + "X": -4.1047363, + "Y": 2.9999943, + "Z": -203.8758 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4411_Amidst the Apocalypse.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4411_Amidst the Apocalypse.json new file mode 100644 index 00000000..ff6d86e3 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4411_Amidst the Apocalypse.json @@ -0,0 +1,230 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1037318, + "Position": { + "X": -4.1047363, + "Y": 2.9999943, + "Z": -203.8758 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039002, + "Position": { + "X": 57.04193, + "Y": 26.99999, + "Z": 46.383568 + }, + "StopDistance": 0.25, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Mehryde's Meyhane", + "[Radz-at-Han] Ruveydah Fibers" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039539, + "Position": { + "X": 87.662964, + "Y": 27.06, + "Z": 28.030762 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + }, + { + "DataId": 198, + "Position": { + "X": 129.59485, + "Y": 26.993164, + "Z": 13.473633 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1039540, + "Position": { + "X": 149.79773, + "Y": 27.049997, + "Z": 39.627686 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039003, + "Position": { + "X": -159.3805, + "Y": 23.999973, + "Z": 110.61267 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Kama", + "[Radz-at-Han] Ruveydah Fibers" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039542, + "Position": { + "X": -101.12158, + "Y": 24, + "Z": 79.48425 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012194, + "Position": { + "X": -103.83765, + "Y": 24.948364, + "Z": 87.57141 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1037321, + "Position": { + "X": -143.14496, + "Y": 24, + "Z": 93.003784 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 2012195, + "Position": { + "X": -104.57007, + "Y": 25.192627, + "Z": 87.63245 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 1037319, + "Position": { + "X": -123.49127, + "Y": 24, + "Z": 88.57861 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 9, + "Steps": [ + { + "DataId": 2012196, + "Position": { + "X": -104.234375, + "Y": 24.734863, + "Z": 87.57141 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 10, + "Steps": [ + { + "DataId": 1037320, + "Position": { + "X": -115.739685, + "Y": 24, + "Z": 97.0625 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 11, + "Steps": [ + { + "DataId": 1039542, + "Position": { + "X": -101.12158, + "Y": 24, + "Z": 79.48425 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039003, + "Position": { + "X": -159.3805, + "Y": 23.999973, + "Z": 110.61267 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4412_Beyond the Depths of Despair.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4412_Beyond the Depths of Despair.json new file mode 100644 index 00000000..528996df --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4412_Beyond the Depths of Despair.json @@ -0,0 +1,177 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039004, + "Position": { + "X": -158.80066, + "Y": 23.999973, + "Z": 112.291016 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039005, + "Position": { + "X": -207.7821, + "Y": 36, + "Z": 76.798584 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039007, + "Position": { + "X": 499.87024, + "Y": 51.57471, + "Z": -597.1924 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012197, + "Position": { + "X": 454.06262, + "Y": 29.251465, + "Z": -491.3253 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 13994 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012198, + "Position": { + "X": 391.07336, + "Y": 14.389221, + "Z": -444.29694 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 13992, + 13993 + ] + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039010, + "Position": { + "X": 382.71155, + "Y": 3.1168795, + "Z": -270.4662 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1039014, + "Position": { + "X": 367.33044, + "Y": 3.1168795, + "Z": -247.6997 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1039015, + "Position": { + "X": 369.10046, + "Y": 3.1168795, + "Z": -247.39453 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1039017, + "Position": { + "X": 391.77527, + "Y": 3.3857868, + "Z": -207.75165 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 171, + "Position": { + "X": 405.1422, + "Y": 5.2643433, + "Z": -244.4953 + }, + "StopDistance": 10, + "TerritoryId": 957, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1039016, + "Position": { + "X": 438.22375, + "Y": 3.1179183, + "Z": -224.10931 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039020, + "Position": { + "X": 430.8689, + "Y": 3.1168795, + "Z": -251.33142 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4413_That We Might Live.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4413_That We Might Live.json new file mode 100644 index 00000000..7cc17766 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4413_That We Might Live.json @@ -0,0 +1,173 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039020, + "Position": { + "X": 430.8689, + "Y": 3.1168795, + "Z": -251.33142 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039022, + "Position": { + "X": 399.3744, + "Y": 3.1168792, + "Z": -272.84656 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011995, + "Position": { + "X": 118.45581, + "Y": 4.92865, + "Z": -343.89258 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818331 + }, + { + "DataId": 2011997, + "Position": { + "X": 93.095215, + "Y": 36.66736, + "Z": -447.8676 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818336 + }, + { + "DataId": 1039023, + "Position": { + "X": 55.77173, + "Y": 14.571876, + "Z": -330.46472 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039026, + "Position": { + "X": -29.404175, + "Y": 21.255978, + "Z": -224.04822 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 13991, + 13990 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039026, + "Position": { + "X": -29.404175, + "Y": 21.255978, + "Z": -224.04822 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012200, + "Position": { + "X": 53.72693, + "Y": 18.264954, + "Z": -291.58472 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 2012201, + "Position": { + "X": 237.62866, + "Y": 7.156433, + "Z": -273.33484 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 13989 + ] + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 2012202, + "Position": { + "X": 311.4519, + "Y": 7.7667847, + "Z": -198.23004 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039027, + "Position": { + "X": 381.33813, + "Y": 3.1168795, + "Z": -257.0688 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4414_When All Hope Seems Lost.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4414_When All Hope Seems Lost.json new file mode 100644 index 00000000..a540b3e6 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4414_When All Hope Seems Lost.json @@ -0,0 +1,196 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039028, + "Position": { + "X": 381.33813, + "Y": 3.1168795, + "Z": -257.0688 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1037630, + "Position": { + "X": 401.8158, + "Y": 3.1168792, + "Z": -273.76215 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039030, + "Position": { + "X": 408.65186, + "Y": 13.167275, + "Z": -184.37476 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": 543.0377, + "Y": 15.147404, + "Z": -147.8739 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "DataId": 2011996, + "Position": { + "X": 550.01135, + "Y": 25.467285, + "Z": -159.1059 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818332, + "DisableNavmesh": true + }, + { + "Position": { + "X": 536.3203, + "Y": 12.722106, + "Z": -95.65565 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 498.18472, + "Y": 4.909424, + "Z": 1.4510483 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 13988 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039034, + "Position": { + "X": 494.83484, + "Y": 5.376761, + "Z": 2.7313232 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039035, + "Position": { + "X": 573.5714, + "Y": 16.272768, + "Z": 130.11365 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": 521.0876, + "Y": 11.819632, + "Z": 266.03055 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 13987 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done first: 16 1 0 0 0 128" + }, + { + "Position": { + "X": 571.6434, + "Y": 32.12932, + "Z": 370.01733 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 13986 + ], + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 33 1 0 0 0 192", + "$.2": "QuestVariables if done after [3]: 33 32 0 0 0 96" + }, + { + "Position": { + "X": 660.18604, + "Y": 44.997604, + "Z": 196.7378 + }, + "TerritoryId": 957, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 13985, + 13984 + ], + "$.0": "[3]", + "$.2": "QuestVariables if done first: 16 32 0 0 0 32" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039036, + "Position": { + "X": 628.62585, + "Y": 37.497498, + "Z": 246.02112 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4415_Warm Hearts, Rekindled Hopes.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4415_Warm Hearts, Rekindled Hopes.json new file mode 100644 index 00000000..08e581a0 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4415_Warm Hearts, Rekindled Hopes.json @@ -0,0 +1,143 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039047, + "Position": { + "X": 537.77356, + "Y": 10.226297, + "Z": 238.75781 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011998, + "Position": { + "X": 294.3922, + "Y": 4.0740967, + "Z": 425.10107 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818337 + }, + { + "DataId": 2011999, + "Position": { + "X": 53.177612, + "Y": 11.36792, + "Z": 187.396 + }, + "TerritoryId": 957, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818338 + }, + { + "DataId": 2012207, + "Position": { + "X": 270.0083, + "Y": 11.550964, + "Z": 147.6615 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039051, + "Position": { + "X": 153.33789, + "Y": -35.629883, + "Z": 141.25269 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012208, + "Position": { + "X": 163.80554, + "Y": -60.471558, + "Z": 133.25696 + }, + "StopDistance": 1, + "TerritoryId": 957, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": 235.94444, + "Y": -0.6, + "Z": 145.83025 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "DisableNavmesh": true, + "Mount": true + }, + { + "Position": { + "X": 252.0308, + "Y": 0.57823455, + "Z": 150.66217 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "DataId": 1039052, + "Position": { + "X": 155.2605, + "Y": 11.6644, + "Z": 217.85303 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039056, + "Position": { + "X": -36.484375, + "Y": 25.65825, + "Z": -319.87494 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4416_Simple Pleasures.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4416_Simple Pleasures.json new file mode 100644 index 00000000..a045b5ac --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4416_Simple Pleasures.json @@ -0,0 +1,115 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039058, + "Position": { + "X": -38.19336, + "Y": 25.818825, + "Z": -318.47113 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039059, + "Position": { + "X": 381.88745, + "Y": 3.1168795, + "Z": -262.0432 + }, + "StopDistance": 15, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Palaka's Stand" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039064, + "Position": { + "X": 428.85486, + "Y": 3.1168792, + "Z": -262.62305 + }, + "StopDistance": 7, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1037628, + "Position": { + "X": 432.9137, + "Y": 3.1168795, + "Z": -243.76288 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1040449, + "Position": { + "X": 368.64258, + "Y": 3.5858154, + "Z": -238.3612 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1037629, + "Position": { + "X": 430.01453, + "Y": 13.027412, + "Z": -200.85455 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "Position": { + "X": 425.544, + "Y": 3.1257756, + "Z": -218.32741 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 1039064, + "Position": { + "X": 428.85486, + "Y": 3.1168792, + "Z": -262.62305 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4417_Under His Wing.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4417_Under His Wing.json new file mode 100644 index 00000000..6cef9b11 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4417_Under His Wing.json @@ -0,0 +1,124 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039068, + "Position": { + "X": 425.10107, + "Y": 3.1168795, + "Z": -262.62305 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040351, + "Position": { + "X": 518.2726, + "Y": 54.344826, + "Z": -597.83325 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": 579.50446, + "Y": 55.259193, + "Z": -683.829 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "Comment": "Travel to Radz-at-Han", + "TargetTerritoryId": 963 + }, + { + "DataId": 1040354, + "Position": { + "X": 1.8157349, + "Y": -1.9999962, + "Z": 95.750244 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040358, + "Position": { + "X": -69.62695, + "Y": 25.000006, + "Z": -35.324707 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040359, + "Position": { + "X": -121.26343, + "Y": 31, + "Z": 9.109558 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012209, + "Position": { + "X": -206.65302, + "Y": 35.99597, + "Z": 67.46008 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040360, + "Position": { + "X": -207.17181, + "Y": 36, + "Z": 71.70203 + }, + "StopDistance": 7, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/D-Thavnair2/4418_At Worlds End.json b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4418_At Worlds End.json new file mode 100644 index 00000000..51f9e948 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/D-Thavnair2/4418_At Worlds End.json @@ -0,0 +1,153 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040372, + "Position": { + "X": -214.40454, + "Y": 36, + "Z": 64.86609 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040373, + "Position": { + "X": -0.3204956, + "Y": -2.514571E-07, + "Z": -2.1210327 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 183, + "Position": { + "X": 25.986084, + "Y": 3.250122, + "Z": -27.023743 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAetheryte", + "StopDistance": 10, + "DisableNavmesh": true + }, + { + "DataId": 195, + "Position": { + "X": -141.3616, + "Y": 3.999954, + "Z": -98.43509 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1040374, + "Position": { + "X": -145.80005, + "Y": 3.9999294, + "Z": -83.9704 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040375, + "Position": { + "X": -172.1676, + "Y": 4.061, + "Z": -87.90729 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040375, + "Position": { + "X": -172.1676, + "Y": 4.061, + "Z": -87.90729 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1037318, + "Position": { + "X": -4.1047363, + "Y": 2.9999943, + "Z": -203.8758 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Hall of the Radiant Host", + "[Radz-at-Han] Mehryde's Meyhane" + ] + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1040379, + "Position": { + "X": 8.010925, + "Y": 3.02, + "Z": -198.19946 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040382, + "Position": { + "X": 2.9450073, + "Y": -1.9999962, + "Z": 87.44946 + }, + "StopDistance": 5, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4419_Return to the Crystarium.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4419_Return to the Crystarium.json new file mode 100644 index 00000000..ceab4a96 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4419_Return to the Crystarium.json @@ -0,0 +1,80 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040386, + "Position": { + "X": 5.1116943, + "Y": -1.9999962, + "Z": 88.12085 + }, + "StopDistance": 5, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1030369, + "Position": { + "X": 614.4961, + "Y": 13.3097515, + "Z": 305.80603 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] Tessellation (Lakeland)" + ], + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012123, + "Position": { + "X": -64.042114, + "Y": -37.70508, + "Z": -210.52875 + }, + "TerritoryId": 819, + "InteractionType": "WaitForManualProgress", + "Comment": "Cutscene Interaction needed", + "AetheryteShortcut": "Crystarium", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Cabinet of Curiosity" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039992, + "Position": { + "X": -65.26294, + "Y": -37.7, + "Z": -208.85028 + }, + "StopDistance": 6, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4420_Hope Upon a Flower.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4420_Hope Upon a Flower.json new file mode 100644 index 00000000..5630fd9f --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4420_Hope Upon a Flower.json @@ -0,0 +1,130 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039992, + "Position": { + "X": -65.26294, + "Y": -37.7, + "Z": -208.85028 + }, + "StopDistance": 6, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1030533, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] The Cabinet of Curiosity", + "[Crystarium] The Dossal Gate" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": -6.1157894, + "Y": 2.0849845, + "Z": -4.654831 + }, + "TerritoryId": 1031, + "InteractionType": "WalkTo" + }, + { + "DataId": 2012128, + "TerritoryId": 1031, + "InteractionType": "Interact", + "Comment": "Interact with Aetheryte (Navmesh can't jump)", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 16 0 16 0 0 16" + }, + { + "DataId": 1039993, + "Position": { + "X": 20.61493, + "Y": 0.2999945, + "Z": -9.353821 + }, + "TerritoryId": 1031, + "InteractionType": "Interact", + "$.0": "[2]", + "$": "QuestVariables after: 32 1 16 0 0 144" + }, + { + "DataId": 1039994, + "Position": { + "X": 51.163452, + "Y": 0.8999986, + "Z": 2.1209717 + }, + "TerritoryId": 1031, + "InteractionType": "Interact", + "$.0": "[3]", + "$.1": "QuestVariables after: 49 1 16 0 0 208" + }, + { + "DataId": 1039995, + "Position": { + "X": -37.003174, + "Y": 0.90000004, + "Z": -4.1657104 + }, + "TerritoryId": 1031, + "InteractionType": "Interact", + "$.0": "[4]", + "$.2": "QuestVariables if done first: 16 16 0 0 0 32" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012129, + "Position": { + "X": -0.07635498, + "Y": 2.2124634, + "Z": 61.600586 + }, + "TerritoryId": 1031, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039996, + "Position": { + "X": 262.53137, + "Y": 44.32154, + "Z": 771.4198 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4421_Petalouda Hunt.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4421_Petalouda Hunt.json new file mode 100644 index 00000000..35720923 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4421_Petalouda Hunt.json @@ -0,0 +1,63 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039996, + "Position": { + "X": 262.53137, + "Y": 44.32154, + "Z": 771.4198 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039998, + "Position": { + "X": 206.0426, + "Y": 20.561113, + "Z": 629.14465 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039998, + "TerritoryId": 961, + "InteractionType": "WaitForManualProgress", + "Comment": "Capture Mobs with less than 50% HP" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039998, + "Position": { + "X": 206.0426, + "Y": 20.561113, + "Z": 629.14465 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4422_In Search of Hermes.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4422_In Search of Hermes.json new file mode 100644 index 00000000..a8d89fff --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4422_In Search of Hermes.json @@ -0,0 +1,66 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039998, + "Position": { + "X": 206.0426, + "Y": 20.561113, + "Z": 629.14465 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040000, + "Position": { + "X": 173.2356, + "Y": 7.4767504, + "Z": 325.64282 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040003, + "Position": { + "X": 229.02258, + "Y": 8.085857, + "Z": 195.39172 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040009, + "Position": { + "X": 366.84216, + "Y": -1.0297052, + "Z": 157.61035 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4423_Ponder Warrant Cherish Welcome.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4423_Ponder Warrant Cherish Welcome.json new file mode 100644 index 00000000..b9d0e5d2 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4423_Ponder Warrant Cherish Welcome.json @@ -0,0 +1,153 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040014, + "Position": { + "X": 368.88684, + "Y": -1.1050489, + "Z": 158.0376 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040015, + "Position": { + "X": 225.78772, + "Y": 7.3858566, + "Z": 201.37329 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 176, + "Position": { + "X": 159.96033, + "Y": 11.703674, + "Z": 126.878784 + }, + "StopDistance": 6, + "TerritoryId": 961, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1040018, + "Position": { + "X": 156.45068, + "Y": 17.339952, + "Z": 53.665894 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040019, + "Position": { + "X": 148.66858, + "Y": 16.93996, + "Z": 35.477173 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040023, + "Position": { + "X": 152.54431, + "Y": 16.385857, + "Z": 73.258545 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040970, + "Position": { + "X": 146.13562, + "Y": 10.385858, + "Z": 121.47705 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1040025, + "Position": { + "X": 171.83179, + "Y": 8.3426, + "Z": 180.62097 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1040971, + "Position": { + "X": 92.851074, + "Y": 10.665586, + "Z": 107.133545 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040027, + "Position": { + "X": 151.75085, + "Y": 17.339958, + "Z": 51.255005 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4424_Lives Apart.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4424_Lives Apart.json new file mode 100644 index 00000000..7fe9bd42 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4424_Lives Apart.json @@ -0,0 +1,111 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040027, + "Position": { + "X": 151.75085, + "Y": 17.339958, + "Z": 51.255005 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040031, + "Position": { + "X": 269.42847, + "Y": 5.8683457, + "Z": 266.3462 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040036, + "Position": { + "X": 360.1892, + "Y": 2.9879394, + "Z": 2.6397705 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012131, + "Position": { + "X": 369.19202, + "Y": 2.9754639, + "Z": 1.5411377 + }, + "TerritoryId": 961, + "InteractionType": "UseItem", + "ItemId": 2003234, + "GroundTarget": true, + "$": "QuestValues after: 1 16 0 0 0 128" + }, + { + "DataId": 2012132, + "Position": { + "X": 373.18982, + "Y": 2.9754639, + "Z": 10.788086 + }, + "TerritoryId": 961, + "InteractionType": "UseItem", + "ItemId": 2003234, + "GroundTarget": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040036, + "Position": { + "X": 360.1892, + "Y": 2.9879394, + "Z": 2.6397705 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040043, + "Position": { + "X": 558.64795, + "Y": 9.127456, + "Z": 48.264282 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4425_Their Greatest Contribution.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4425_Their Greatest Contribution.json new file mode 100644 index 00000000..125576d4 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4425_Their Greatest Contribution.json @@ -0,0 +1,200 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040050, + "Position": { + "X": 560.32654, + "Y": 9.796983, + "Z": 63.70642 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040043, + "Position": { + "X": 558.64795, + "Y": 9.127456, + "Z": 48.264282 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012020, + "Position": { + "X": 628.2388, + "Y": 8.316829, + "Z": 107.9021 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818374 + }, + { + "Position": { + "X": 475.2184, + "Y": -17.473314, + "Z": 47.986946 + }, + "TerritoryId": 961, + "InteractionType": "Jump", + "JumpDestination": { + "Position": { + "X": 477.34882, + "Y": -16.407324, + "Z": 43.802086 + }, + "DelaySeconds": 0.25 + } + }, + { + "DataId": 1040052, + "Position": { + "X": 349.14172, + "Y": -14.766006, + "Z": -111.61981 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040055, + "Position": { + "X": 349.5078, + "Y": -14.757837, + "Z": -115.15985 + }, + "StopDistance": 7, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": 339.039, + "Y": -14.322072, + "Z": -101.509995 + }, + "StopDistance": 0.5, + "TerritoryId": 961, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 2012022, + "Position": { + "X": 151.6593, + "Y": 7.6447144, + "Z": 2.5177002 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818376 + }, + { + "DataId": 1040061, + "Position": { + "X": -2.1210327, + "Y": -15.847441, + "Z": -104.631165 + }, + "TerritoryId": 961, + "InteractionType": "Say", + "ChatMessage": "I have a favor to ask" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040061, + "Position": { + "X": -2.1210327, + "Y": -15.847441, + "Z": -104.631165 + }, + "TerritoryId": 961, + "InteractionType": "Say", + "ChatMessage": "Please, Emet-Selch" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": -55.662647, + "Y": -16.696985, + "Z": -81.29199 + }, + "StopDistance": 0.25, + "TerritoryId": 961, + "InteractionType": "Jump", + "JumpDestination": { + "Position": { + "X": -58.75509, + "Y": -15.402463, + "Z": -83.133934 + } + }, + "DisableNavmesh": true + }, + { + "Position": { + "X": -64.19198, + "Y": -15.332472, + "Z": -84.65695 + }, + "StopDistance": 0.25, + "TerritoryId": 961, + "InteractionType": "Emote", + "Emote": "wave" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040069, + "Position": { + "X": 134.90503, + "Y": 10.385856, + "Z": 88.91431 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "AetheryteShortcut": "Elpis - Anagnorisis" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4426_Aether to Aether.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4426_Aether to Aether.json new file mode 100644 index 00000000..cb64a9f3 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4426_Aether to Aether.json @@ -0,0 +1,143 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040071, + "Position": { + "X": 132.82971, + "Y": 10.385857, + "Z": 89.34155 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -137.80992, + "Y": -26.995626, + "Z": 543.8281 + }, + "StopDistance": 0.5, + "TerritoryId": 961, + "InteractionType": "Jump", + "JumpDestination": { + "Position": { + "X": -144.54877, + "Y": -26.230347, + "Z": 551.5067 + } + } + }, + { + "DataId": 2012023, + "Position": { + "X": -144.54877, + "Y": -26.230347, + "Z": 551.5067 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818377 + }, + { + "Position": { + "X": -139.15512, + "Y": -27.030453, + "Z": 535.6933 + }, + "TerritoryId": 961, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 1040073, + "Position": { + "X": -164.11078, + "Y": -41.02881, + "Z": 377.37073 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012024, + "Position": { + "X": -481.40692, + "Y": -28.610718, + "Z": 490.53174 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818378 + }, + { + "DataId": 1040080, + "Position": { + "X": -530.2358, + "Y": -26.214441, + "Z": 490.6233 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 177, + "Position": { + "X": -633.7225, + "Y": -19.821533, + "Z": 542.56494 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1040081, + "Position": { + "X": -659.35767, + "Y": -22.39482, + "Z": 525.44434 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040084, + "Position": { + "X": -661.1277, + "Y": -22.394821, + "Z": 527.88574 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4427_A Sentimental Gift.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4427_A Sentimental Gift.json new file mode 100644 index 00000000..9bb363bc --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4427_A Sentimental Gift.json @@ -0,0 +1,191 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040083, + "Position": { + "X": -659.3271, + "Y": -22.39482, + "Z": 525.47485 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040084, + "Position": { + "X": -661.1277, + "Y": -22.394821, + "Z": 527.88574 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012135, + "Position": { + "X": -621.2711, + "Y": -19.241638, + "Z": 546.50183 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "$.1": "QuestVariables if done first: 1 0 0 0 0 128" + }, + { + "DataId": 2012136, + "Position": { + "X": -583.85596, + "Y": -20.035156, + "Z": 543.572 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012137, + "Position": { + "X": -577.1725, + "Y": -21.469482, + "Z": 482.56653 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012138, + "Position": { + "X": -601.0681, + "Y": -25.345276, + "Z": 438.37634 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012139, + "Position": { + "X": -686.5492, + "Y": -26.138794, + "Z": 441.24512 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 2012140, + "Position": { + "X": -731.7464, + "Y": -27.084778, + "Z": 460.77673 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "Position": { + "X": -734.30804, + "Y": -28.391644, + "Z": 432.59787 + }, + "TerritoryId": 961, + "InteractionType": "WalkTo", + "Mount": true + }, + { + "DataId": 2012021, + "Position": { + "X": -754.757, + "Y": -36.02661, + "Z": 411.12378 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818375, + "DisableNavmesh": true + }, + { + "DataId": 2012141, + "Position": { + "X": -789.08984, + "Y": -36.05713, + "Z": 486.41187 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 2012142, + "Position": { + "X": -803.4028, + "Y": -36.514893, + "Z": 513.6034 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040087, + "Position": { + "X": -664.1489, + "Y": -22.39482, + "Z": 533.8368 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4428_Verdict and Execution.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4428_Verdict and Execution.json new file mode 100644 index 00000000..d22fbda6 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4428_Verdict and Execution.json @@ -0,0 +1,101 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040088, + "Position": { + "X": -655.72595, + "Y": -22.394821, + "Z": 521.87366 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040092, + "Position": { + "X": -340.9629, + "Y": -39.973907, + "Z": 368.06274 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040097, + "Position": { + "X": -213.79413, + "Y": -33.401405, + "Z": 242.35901 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": -207.7455, + "Y": -30.993412, + "Z": 232.53859 + }, + "TerritoryId": 961, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14075, + 14074 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012145, + "Position": { + "X": -212.23773, + "Y": -31.876099, + "Z": 233.66138 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040100, + "Position": { + "X": -638.1476, + "Y": -22.39482, + "Z": 504.90576 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4429_Travelers at the Crossroads.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4429_Travelers at the Crossroads.json new file mode 100644 index 00000000..f2751646 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4429_Travelers at the Crossroads.json @@ -0,0 +1,110 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040101, + "Position": { + "X": -635.5841, + "Y": -22.39482, + "Z": 505.08887 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040102, + "Position": { + "X": -106.61487, + "Y": -10.281434, + "Z": 236.07227 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "AetheryteShortcut": "Elpis - Anagnorisis" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040104, + "Position": { + "X": -182.17749, + "Y": 12.500029, + "Z": -10.971252 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040106, + "Position": { + "X": -350.20984, + "Y": 161.78714, + "Z": 26.108154 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012029, + "Position": { + "X": -255.54291, + "Y": 143.05322, + "Z": -36.972656 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818383 + }, + { + "DataId": 2012146, + "Position": { + "X": -554.345, + "Y": 147.44788, + "Z": 98.25281 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040109, + "Position": { + "X": -491.11166, + "Y": 140.39177, + "Z": -113.81708 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4430_A Past Not Yet Come to Pass.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4430_A Past Not Yet Come to Pass.json new file mode 100644 index 00000000..3d748254 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4430_A Past Not Yet Come to Pass.json @@ -0,0 +1,149 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040109, + "Position": { + "X": -491.11166, + "Y": 140.39177, + "Z": -113.81708 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 178, + "Position": { + "X": -529.9001, + "Y": 161.24207, + "Z": -222.2782 + }, + "StopDistance": 7, + "TerritoryId": 961, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1040112, + "Position": { + "X": -586.5721, + "Y": 167.99568, + "Z": -265.49176 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040112, + "Position": { + "X": -586.5721, + "Y": 167.99568, + "Z": -265.49176 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040115, + "Position": { + "X": -595.0561, + "Y": 159.70364, + "Z": -175.24994 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040116, + "Position": { + "X": -578.4542, + "Y": 159.66537, + "Z": -173.75458 + }, + "TerritoryId": 961, + "InteractionType": "WaitForManualProgress", + "Comment": "Talk (1, 2, 1)" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040115, + "Position": { + "X": -595.0561, + "Y": 159.70364, + "Z": -175.24994 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": -585.33386, + "Y": 159.16429, + "Z": -197.54811 + }, + "TerritoryId": 961, + "InteractionType": "WalkTo", + "Mount": true + }, + { + "DataId": 1040117, + "Position": { + "X": -442.43536, + "Y": 140.56909, + "Z": -155.5047 + }, + "TerritoryId": 961, + "InteractionType": "WaitForManualProgress", + "Comment": "Talk (2, 2, 1)" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040115, + "Position": { + "X": -595.0561, + "Y": 159.70364, + "Z": -175.24994 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4431_Witness to the Spectacle.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4431_Witness to the Spectacle.json new file mode 100644 index 00000000..277b19a0 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4431_Witness to the Spectacle.json @@ -0,0 +1,123 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040115, + "Position": { + "X": -595.0561, + "Y": 159.70364, + "Z": -175.24994 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040118, + "Position": { + "X": -814.51135, + "Y": 169.52979, + "Z": -194.35425 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012028, + "Position": { + "X": -761.7151, + "Y": 159.99072, + "Z": -108.99524 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818382 + }, + { + "DataId": 1040121, + "Position": { + "X": -833.9513, + "Y": 169.52928, + "Z": -61.905884 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040121, + "Position": { + "X": -833.9513, + "Y": 169.52928, + "Z": -61.905884 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040124, + "Position": { + "X": -848.38635, + "Y": 286.97595, + "Z": -175.86023 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040126, + "Position": { + "X": -719.7833, + "Y": 365.28336, + "Z": -334.64563 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040128, + "Position": { + "X": -664.4236, + "Y": 178.07872, + "Z": -334.5846 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4432_Worthy of His Back.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4432_Worthy of His Back.json new file mode 100644 index 00000000..8dff4e72 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4432_Worthy of His Back.json @@ -0,0 +1,78 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040128, + "Position": { + "X": -664.4236, + "Y": 178.07872, + "Z": -334.5846 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -297.88638, + "Y": 146.9291, + "Z": 84.30863 + }, + "TerritoryId": 961, + "InteractionType": "WalkTo" + }, + { + "DataId": 2012149, + "Position": { + "X": -353.1396, + "Y": 146.92908, + "Z": 143.57214 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040129, + "Position": { + "X": -629.0532, + "Y": 138.676, + "Z": 62.302612 + }, + "TerritoryId": 961, + "InteractionType": "SinglePlayerDuty", + "Comment": "Venat" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040129, + "Position": { + "X": -629.0532, + "Y": 138.676, + "Z": 62.302612 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4433_A Flower upon Your Return.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4433_A Flower upon Your Return.json new file mode 100644 index 00000000..fdf7b81c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4433_A Flower upon Your Return.json @@ -0,0 +1,132 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040129, + "Position": { + "X": -629.0532, + "Y": 138.676, + "Z": 62.302612 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012026, + "Position": { + "X": -555.6268, + "Y": 158.09863, + "Z": 172.41162 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818380 + }, + { + "DataId": 1040132, + "Position": { + "X": -513.6339, + "Y": 156.7207, + "Z": 198.68762 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040134, + "Position": { + "X": -515.2819, + "Y": 156.84904, + "Z": 199.32861 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012027, + "Position": { + "X": -392.08063, + "Y": 173.72388, + "Z": -293.59882 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818381, + "AetheryteShortcut": "Elpis - Poieten Oikos" + }, + { + "DataId": 2012151, + "Position": { + "X": -481.8647, + "Y": 157.36621, + "Z": -367.48303 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1042043, + "Position": { + "X": -342.5498, + "Y": 294.93375, + "Z": -559.62463 + }, + "StopDistance": 6, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2012025, + "Position": { + "X": -402.945, + "Y": 327.7484, + "Z": -691.3405 + }, + "TerritoryId": 961, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818379 + }, + { + "DataId": 1040135, + "Position": { + "X": -407.46167, + "Y": 329.89032, + "Z": -759.24316 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4434_Hunger in the Garden.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4434_Hunger in the Garden.json new file mode 100644 index 00000000..7850888c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4434_Hunger in the Garden.json @@ -0,0 +1,82 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040136, + "Position": { + "X": -405.69165, + "Y": 329.81177, + "Z": -760.1892 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012153, + "Position": { + "X": -207.7821, + "Y": 306.63, + "Z": -653.13196 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040138, + "Position": { + "X": -47.196167, + "Y": 151.94286, + "Z": -624.7196 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040141, + "Position": { + "X": 242.20642, + "Y": 165.84848, + "Z": -608.6061 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040138, + "Position": { + "X": -47.196167, + "Y": 151.94286, + "Z": -624.7196 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4435_Words without Sound.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4435_Words without Sound.json new file mode 100644 index 00000000..5f6b61d9 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4435_Words without Sound.json @@ -0,0 +1,97 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040140, + "Position": { + "X": -44.63269, + "Y": 151.69983, + "Z": -623.43787 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012155, + "Position": { + "X": 16.54684, + "Y": 128.4602, + "Z": -549.886 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012158, + "Position": { + "X": 197.31433, + "Y": 91.569336, + "Z": -656.91614 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012161, + "Position": { + "X": 306.84363, + "Y": 138.47559, + "Z": -749.4774 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012164, + "Position": { + "X": 413.5653, + "Y": 148.63806, + "Z": -418.69232 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040147, + "Position": { + "X": 412.28345, + "Y": 148.76953, + "Z": -417.34955 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4436_Follow Wander Stumble Listen.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4436_Follow Wander Stumble Listen.json new file mode 100644 index 00000000..ed6a1d64 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4436_Follow Wander Stumble Listen.json @@ -0,0 +1,118 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040148, + "Position": { + "X": 416.15918, + "Y": 148.81448, + "Z": -418.53973 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012167, + "Position": { + "X": 436.057, + "Y": 149.12634, + "Z": -360.2503 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": 463.18567, + "Y": 138.58543, + "Z": -273.41803 + }, + "TerritoryId": 961, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 2012169, + "Position": { + "X": 523.7352, + "Y": 139.29956, + "Z": -186.9383 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": 726.4087, + "Y": 139.19812, + "Z": -131.47159 + }, + "TerritoryId": 961, + "InteractionType": "WalkTo" + }, + { + "DataId": 2012170, + "Position": { + "X": 805.0812, + "Y": 153.521, + "Z": -210.55933 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012171, + "Position": { + "X": 741.39, + "Y": 148.05823, + "Z": -356.55762 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040151, + "Position": { + "X": 504.35632, + "Y": 151.56888, + "Z": -303.88342 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4437_Caging the Messenger.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4437_Caging the Messenger.json new file mode 100644 index 00000000..a90e87c8 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4437_Caging the Messenger.json @@ -0,0 +1,66 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "TerritoryBlacklist": [ + 974 + ], + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040152, + "Position": { + "X": 508.75085, + "Y": 151.51599, + "Z": -303.39514 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040154, + "Position": { + "X": -401.23596, + "Y": 329.78302, + "Z": -760.3418 + }, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "TerritoryId": 961, + "InteractionType": "Duty", + "ContentFinderConditionId": 787 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040159, + "Position": { + "X": 473.1975, + "Y": -17.131165, + "Z": 49.66809 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/E-Elpis/4438_Thou Must Live Die and Know.json b/QuestPaths/Endwalker/MSQ/E-Elpis/4438_Thou Must Live Die and Know.json new file mode 100644 index 00000000..d6764c77 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/E-Elpis/4438_Thou Must Live Die and Know.json @@ -0,0 +1,83 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040159, + "Position": { + "X": 473.1975, + "Y": -17.131165, + "Z": 49.66809 + }, + "StopDistance": 5, + "TerritoryId": 961, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040160, + "Position": { + "X": 265.156, + "Y": 46.937138, + "Z": 790.70715 + }, + "TerritoryId": 961, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2009758, + "Position": { + "X": -0.015319824, + "Y": 1.0223389, + "Z": 14.206055 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.56799, + "Y": 5.0201416, + "Z": 4.5318604 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AetheryteShortcut": "Old Sharlayan", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + }, + { + "DataId": 1040161, + "Position": { + "X": -0.35101318, + "Y": 1.9073486E-06, + "Z": -3.3417358 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4439_As the Heavens Burn.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4439_As the Heavens Burn.json new file mode 100644 index 00000000..f0dcc64f --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4439_As the Heavens Burn.json @@ -0,0 +1,54 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040161, + "Position": { + "X": -0.35101318, + "Y": 1.9073486E-06, + "Z": -3.3417358 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039668, + "Position": { + "X": -389.97485, + "Y": 21.999998, + "Z": 501.85388 + }, + "TerritoryId": 958, + "InteractionType": "SinglePlayerDuty", + "AetheryteShortcut": "Garlemald - Camp Broken Glass", + "Comment": "As the Heavens Burn" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039675, + "Position": { + "X": -404.8982, + "Y": 21.999998, + "Z": 416.3423 + }, + "StopDistance": 6, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4440_Outside Help.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4440_Outside Help.json new file mode 100644 index 00000000..b42a5831 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4440_Outside Help.json @@ -0,0 +1,116 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039681, + "Position": { + "X": -401.3886, + "Y": 22.030764, + "Z": 419.94336 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039685, + "Position": { + "X": 108.018555, + "Y": -10.587427, + "Z": 269.4895 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.56799, + "Y": 5.0201416, + "Z": 4.5318604 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AetheryteShortcut": "Old Sharlayan", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2011937, + "Position": { + "X": -0.015319824, + "Y": 1.1443481, + "Z": 14.785889 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + }, + { + "DataId": 1039683, + "Position": { + "X": -3.1586914, + "Y": 41.530132, + "Z": -160.35712 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Baldesion Annex", + "[Old Sharlayan] The Rostra" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012211, + "Position": { + "X": 0.38146973, + "Y": 43.59497, + "Z": -273.30438 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039693, + "Position": { + "X": 2.5177002, + "Y": 40.2, + "Z": -235.67566 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4441_Going Underground.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4441_Going Underground.json new file mode 100644 index 00000000..95764d14 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4441_Going Underground.json @@ -0,0 +1,138 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039701, + "Position": { + "X": 4.257263, + "Y": 40.2, + "Z": -234.21082 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039702, + "Position": { + "X": 422.0492, + "Y": 166.41168, + "Z": -453.42188 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "AetheryteShortcut": "Labyrinthos - Archeion" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039545, + "Position": { + "X": 361.80652, + "Y": 170.1, + "Z": -393.36237 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + }, + { + "DataId": 1039711, + "Position": { + "X": 346.4254, + "Y": 90.90158, + "Z": -371.1147 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039712, + "Position": { + "X": 380.69727, + "Y": 79.691376, + "Z": 299.3667 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039721, + "Position": { + "X": 362.02026, + "Y": 79.691376, + "Z": 302.11328 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039722, + "Position": { + "X": 194.41516, + "Y": -23.530436, + "Z": 303.91382 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1040448, + "Position": { + "X": -21.286377, + "Y": -30.155542, + "Z": 637.41516 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039740, + "Position": { + "X": -19.058533, + "Y": -30.155542, + "Z": 637.07935 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4442_No Job Too Small.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4442_No Job Too Small.json new file mode 100644 index 00000000..cd00f5c7 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4442_No Job Too Small.json @@ -0,0 +1,122 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039733, + "Position": { + "X": -20.767578, + "Y": -30.155542, + "Z": 638.7273 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 79.66557, + "Y": -29.904594, + "Z": 457.04776 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo" + }, + { + "DataId": 2011989, + "Position": { + "X": 46.28064, + "Y": -29.800903, + "Z": 178.85095 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818323 + }, + { + "DataId": 1039750, + "Position": { + "X": 28.091797, + "Y": -31.530422, + "Z": 90.196045 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1037271, + "Position": { + "X": 84.64172, + "Y": -31.530367, + "Z": 31.021484 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "$.0": "[1] Navmesh navigates here first, even if you feed it [2]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 64" + }, + { + "DataId": 1037253, + "Position": { + "X": 34.74475, + "Y": -28.549177, + "Z": 45.548096 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "$.0": "[2]", + "$.1": "QuestVariables after: 2 0 0 0 0 192" + }, + { + "DataId": 1037275, + "Position": { + "X": 106.126465, + "Y": -29.529999, + "Z": -14.450317 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 167, + "Position": { + "X": 8.377136, + "Y": -27.542603, + "Z": -46.67737 + }, + "StopDistance": 7, + "TerritoryId": 956, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1039761, + "Position": { + "X": -17.685242, + "Y": -31.53043, + "Z": -76.798706 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4443_Wise Guides.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4443_Wise Guides.json new file mode 100644 index 00000000..38c2dbaf --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4443_Wise Guides.json @@ -0,0 +1,128 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039762, + "Position": { + "X": -15.610046, + "Y": -31.53043, + "Z": -78.324646 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039766, + "Position": { + "X": 127.45862, + "Y": -17.530378, + "Z": -73.50275 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012212, + "Position": { + "X": 126.35986, + "Y": -17.532654, + "Z": -77.073364 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "WaitForManualProgress", + "Comment": "Find Points of Interest" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012213, + "Position": { + "X": 218.12769, + "Y": -25.742065, + "Z": 104.600464 + }, + "TerritoryId": 956, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 13983 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040391, + "Position": { + "X": 211.65784, + "Y": -25.759167, + "Z": 98.22229 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040392, + "Position": { + "X": 187.396, + "Y": -23.530434, + "Z": 281.42212 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039549, + "Position": { + "X": 229.87708, + "Y": -18.742016, + "Z": 298.72583 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + }, + { + "DataId": 1040397, + "Position": { + "X": 372.39636, + "Y": 79.691376, + "Z": 299.1836 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4444_Agriculture Shock.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4444_Agriculture Shock.json new file mode 100644 index 00000000..f0b1fc98 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4444_Agriculture Shock.json @@ -0,0 +1,146 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040400, + "Position": { + "X": 373.6781, + "Y": 79.691376, + "Z": 299.8855 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040402, + "Position": { + "X": 494.8042, + "Y": 65.06, + "Z": -37.70508 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1037985, + "Position": { + "X": 481.8036, + "Y": 66.16195, + "Z": -108.537415 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040402, + "Position": { + "X": 422.61563, + "Y": 65.31176, + "Z": -121.74779 + }, + "StopDistance": 0.25, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040402, + "Position": { + "X": 407.89633, + "Y": 65.16199, + "Z": -119.62697 + }, + "StopDistance": 0.25, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040402, + "Position": { + "X": 463.33115, + "Y": 65.16199, + "Z": -66.60645 + }, + "StopDistance": 0.25, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1040402, + "Position": { + "X": 485.30798, + "Y": 65.16199, + "Z": -96.01148 + }, + "StopDistance": 0.25, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1037985, + "Position": { + "X": 481.8036, + "Y": 66.16195, + "Z": -108.537415 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040400, + "Position": { + "X": 373.6781, + "Y": 79.691376, + "Z": 299.8855 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4445_Sage Council.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4445_Sage Council.json new file mode 100644 index 00000000..23f73707 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4445_Sage Council.json @@ -0,0 +1,221 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040401, + "Position": { + "X": 374.83777, + "Y": 79.691376, + "Z": 298.08484 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 5.4520116, + "Y": -28.723352, + "Z": -42.992764 + }, + "StopDistance": 0.75, + "TerritoryId": 956, + "InteractionType": "WalkTo", + "AetheryteShortcut": "Labyrinthos - Sharlayan Hamlet", + "Mount": true + }, + { + "DataId": 1039687, + "Position": { + "X": -18.875488, + "Y": -31.53043, + "Z": -76.98181 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040409, + "Position": { + "X": -99.076904, + "Y": -28.516306, + "Z": -60.013794 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040422, + "Position": { + "X": -37.125244, + "Y": -29.530075, + "Z": -169.14624 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "Distracted Researcher", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 2 0" + }, + { + "DataId": 1040416, + "Position": { + "X": 3.0670166, + "Y": -29.530357, + "Z": -126.17688 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "Hyperventilating Engineer", + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 130 0" + }, + { + "DataId": 1040420, + "Position": { + "X": 40.634766, + "Y": -17.53038, + "Z": -69.62695 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "Harried Aetherologist", + "$.0": "[3]", + "$.1": "QuestVariables if done after [2]: 3 0 0 0 138 0" + }, + { + "DataId": 1040421, + "Position": { + "X": 48.142212, + "Y": -31.53043, + "Z": -48.111755 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "Grimacing Naturalist", + "$.0": "[4]", + "$.1": "QuestVariables if done after [3]: 4 0 0 0 142 0" + }, + { + "DataId": 1040417, + "Position": { + "X": 59.311768, + "Y": -29.530416, + "Z": -24.429688 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "Ponderous Mathematician", + "$.0": "[5]", + "$.1": "QuestVariables if done after [4]: 5 0 0 0 206 0" + }, + { + "DataId": 1040418, + "Position": { + "X": -19.394226, + "Y": -29.530432, + "Z": 10.299805 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "Despondent Engineer", + "Mount": true, + "$.0": "[6]", + "$.1": "QuestVariables if done after [5]: 6 0 0 0 238 0" + }, + { + "DataId": 1040423, + "Position": { + "X": -22.232422, + "Y": -31.530355, + "Z": 38.071167 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "Skeptical Researcher", + "Mount": true, + "$.0": "[7]", + "$.1": "QuestVariables if done after [6]: 7 0 0 0 239 0" + }, + { + "DataId": 1040419, + "Position": { + "X": -15.762573, + "Y": -31.530432, + "Z": -51.59082 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "Anxious Engineer", + "$.0": "[8]", + "$.2": "QuestVariables if done first: 1 0 0 0 16 0" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040436, + "Position": { + "X": -78.26355, + "Y": -29.53, + "Z": -58.854065 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012220, + "Position": { + "X": -74.418274, + "Y": -29.58728, + "Z": -53.23877 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040436, + "Position": { + "X": -78.26355, + "Y": -29.53, + "Z": -58.854065 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4446_Hither and Yarns.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4446_Hither and Yarns.json new file mode 100644 index 00000000..d954b745 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4446_Hither and Yarns.json @@ -0,0 +1,156 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040436, + "Position": { + "X": -78.26355, + "Y": -29.53, + "Z": -58.854065 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011987, + "Position": { + "X": -176.4096, + "Y": -10.11676, + "Z": -242.26752 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818321 + }, + { + "Position": { + "X": -198.16975, + "Y": -19.32426, + "Z": -238.2704 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 2011988, + "Position": { + "X": -505.14993, + "Y": -21.835754, + "Z": -122.60626 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818322 + }, + { + "DataId": 1040444, + "Position": { + "X": -424.24664, + "Y": -31.831255, + "Z": -38.895264 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012223, + "Position": { + "X": -427.2984, + "Y": -31.418396, + "Z": -38.19336 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040446, + "Position": { + "X": -697.4136, + "Y": -31.621387, + "Z": 164.11072 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 168, + "Position": { + "X": -729.18286, + "Y": -27.634155, + "Z": 302.1438 + }, + "StopDistance": 6, + "TerritoryId": 956, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1040447, + "Position": { + "X": -710.0176, + "Y": -31.53043, + "Z": 322.59094 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040450, + "Position": { + "X": -754.4213, + "Y": -29.529999, + "Z": 389.70007 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040447, + "Position": { + "X": -710.0176, + "Y": -31.53043, + "Z": 322.59094 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4447_Once Forged.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4447_Once Forged.json new file mode 100644 index 00000000..86c87dd4 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4447_Once Forged.json @@ -0,0 +1,150 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040451, + "Position": { + "X": -709.28516, + "Y": -31.53043, + "Z": 321.46167 + }, + "StopDistance": 5, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040454, + "Position": { + "X": -613.18384, + "Y": -19.786552, + "Z": 626.8557 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012225, + "Position": { + "X": -594.5678, + "Y": -26.596497, + "Z": 609.09436 + }, + "TerritoryId": 956, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 13982, + 13981, + 13980 + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012442, + "Position": { + "X": -594.5678, + "Y": -26.596497, + "Z": 609.09436 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2011985, + "Position": { + "X": -547.7532, + "Y": -18.051514, + "Z": 661.86 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818316 + }, + { + "Position": { + "X": -102.94707, + "Y": -29.933468, + "Z": 674.6727 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": -120.48093, + "Y": -21.96263, + "Z": 685.2332 + }, + "TerritoryId": 956, + "InteractionType": "Jump", + "DisableNavmesh": true, + "JumpDestination": { + "Position": { + "X": -124.55376, + "Y": -19.659834, + "Z": 686.864 + }, + "StopDistance": 0.5, + "DelaySeconds": 0.25 + } + }, + { + "DataId": 2011986, + "Position": { + "X": -128.06903, + "Y": -20.523438, + "Z": 676.7223 + }, + "TerritoryId": 956, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818317, + "DisableNavmesh": true + }, + { + "Position": { + "X": -114.01625, + "Y": -30.313616, + "Z": 670.05585 + }, + "TerritoryId": 956, + "InteractionType": "WalkTo", + "Mount": true, + "DisableNavmesh": true + }, + { + "DataId": 1040455, + "Position": { + "X": 10.147156, + "Y": -30.155546, + "Z": 619.62305 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4448_Bonds of Adamantite.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4448_Bonds of Adamantite.json new file mode 100644 index 00000000..4574f6d0 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4448_Bonds of Adamantite.json @@ -0,0 +1,139 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040455, + "Position": { + "X": 10.147156, + "Y": -30.155546, + "Z": 619.62305 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": 5.4520116, + "Y": -28.723352, + "Z": -42.992764 + }, + "AetheryteShortcut": "Labyrinthos - Sharlayan Hamlet", + "TerritoryId": 956, + "InteractionType": "WalkTo", + "Mount": true + }, + { + "DataId": 2012226, + "Position": { + "X": -11.6427, + "Y": -31.540405, + "Z": -81.28485 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040457, + "Position": { + "X": 36.51477, + "Y": -16.246998, + "Z": 129.47266 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040466, + "Position": { + "X": -702.4186, + "Y": -31.53043, + "Z": 301.93018 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "AetheryteShortcut": "Labyrinthos - Aporia" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040467, + "Position": { + "X": -620.63025, + "Y": -27.670597, + "Z": 302.17432 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040468, + "Position": { + "X": -598.32153, + "Y": -191.11913, + "Z": 301.71655 + }, + "StopDistance": 7, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": -413.49243, + "Y": -220.16248, + "Z": 301.63266 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Comment": "TODO Should cancel navmesh if condition is [OccupiedInCutsceneEvent OR BetweenAreas]; then verify next marker distance" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040478, + "Position": { + "X": -406.9734, + "Y": -220.18355, + "Z": 304.1886 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4449_Her Children One and All.json b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4449_Her Children One and All.json new file mode 100644 index 00000000..977c3128 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4449_Her Children One and All.json @@ -0,0 +1,91 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040478, + "Position": { + "X": -406.9734, + "Y": -220.18355, + "Z": 304.1886 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040487, + "Position": { + "X": -234.6991, + "Y": -224.38274, + "Z": 349.01953 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "TerritoryId": 956, + "InteractionType": "Duty", + "ContentFinderConditionId": 786 + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "TerritoryId": 1030, + "InteractionType": "Duty", + "ContentFinderConditionId": 790 + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1040503, + "Position": { + "X": -221.4237, + "Y": -224.3827, + "Z": 364.40063 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Rostra", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4450_A Bold Decision.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4450_A Bold Decision.json new file mode 100644 index 00000000..d8f649c2 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4450_A Bold Decision.json @@ -0,0 +1,107 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040276, + "Position": { + "X": -99.076904, + "Y": 3.9334679, + "Z": 1.3884888 + }, + "StopDistance": 7, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039793, + "Position": { + "X": 3.3111572, + "Y": 40.2, + "Z": -231.64728 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Baldesion Annex", + "[Old Sharlayan] The Rostra" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039804, + "Position": { + "X": -0.16790771, + "Y": 41.37599, + "Z": -146.65448 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039818, + "Position": { + "X": 29.861816, + "Y": 5.1499996, + "Z": -65.445984 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Rostra", + "[Old Sharlayan] Aetheryte Plaza" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012347, + "Position": { + "X": 31.143677, + "Y": 5.081238, + "Z": -62.485718 + }, + "TerritoryId": 962, + "InteractionType": "WaitForManualProgress", + "Comment": "Talk (2, 2, 2, N/A, 2)" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1037047, + "Position": { + "X": 26.718506, + "Y": 5.1499996, + "Z": -65.87323 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4451_Friends Gathered.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4451_Friends Gathered.json new file mode 100644 index 00000000..2318361a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4451_Friends Gathered.json @@ -0,0 +1,129 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039818, + "Position": { + "X": 29.861816, + "Y": 5.1499996, + "Z": -65.445984 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040276, + "Position": { + "X": -99.076904, + "Y": 3.9334679, + "Z": 1.3884888 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039820, + "Position": { + "X": -87.02222, + "Y": -13.777, + "Z": 147.29529 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Baldesion Annex", + "[Old Sharlayan] Scholar's Harbor" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039821, + "Position": { + "X": -86.96118, + "Y": -13.777, + "Z": 149.70618 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039823, + "Position": { + "X": -282.09363, + "Y": 19.003872, + "Z": 20.248657 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Scholar's Harbor", + "[Old Sharlayan] The Studium" + ], + "$.1": "QuestVariables if done first: 16 16 128 0 0 128" + }, + { + "DataId": 1039825, + "Position": { + "X": 223.46838, + "Y": 24.898844, + "Z": -149.58423 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Studium", + "[Old Sharlayan] The Leveilleur Estate" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Leveilleur Estate", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4452_Unto the Heavens.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4452_Unto the Heavens.json new file mode 100644 index 00000000..68e7201a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4452_Unto the Heavens.json @@ -0,0 +1,83 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039550, + "Position": { + "X": -620.7218, + "Y": -27.670597, + "Z": 302.17432 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "AetheryteShortcut": "Labyrinthos - Aporia", + "SkipIf": [ + "FlyingUnlocked" + ] + }, + { + "DataId": 1039827, + "Position": { + "X": -323.38446, + "Y": -224.2727, + "Z": 301.56396 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039847, + "Position": { + "X": -334.92035, + "Y": -224.19772, + "Z": 311.9402 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039852, + "Position": { + "X": -376.1197, + "Y": 80.7959, + "Z": 607.6904 + }, + "StopDistance": 5, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4453_A Strange New World.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4453_A Strange New World.json new file mode 100644 index 00000000..bfadff4d --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4453_A Strange New World.json @@ -0,0 +1,123 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039853, + "Position": { + "X": -377.7066, + "Y": 80.86001, + "Z": 606.53076 + }, + "StopDistance": 7, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039860, + "Position": { + "X": -31.11322, + "Y": 60.569, + "Z": 551.0491 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012351, + "Position": { + "X": -11.490112, + "Y": 61.905884, + "Z": 533.6842 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 16 1 0 0 0 128" + }, + { + "DataId": 1040292, + "Position": { + "X": 6.5460815, + "Y": 60.71497, + "Z": 554.4059 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 33 1 0 0 0 192" + }, + { + "DataId": 1040293, + "Position": { + "X": 56.77881, + "Y": 99.37216, + "Z": 665.5221 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "$.0": "[3]", + "$.2": "QuestVariables if done first: 16 16 0 0 0 32" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039860, + "Position": { + "X": -31.11322, + "Y": 60.569, + "Z": 551.0491 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040294, + "Position": { + "X": -373.00684, + "Y": 90.107704, + "Z": 460.99023 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039769, + "Position": { + "X": -482.9328, + "Y": 73.09421, + "Z": 310.9331 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4454_On Burdened Wings.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4454_On Burdened Wings.json new file mode 100644 index 00000000..6d98ca47 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4454_On Burdened Wings.json @@ -0,0 +1,230 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039772, + "Position": { + "X": -476.2188, + "Y": 73.47535, + "Z": 309.86487 + }, + "StopDistance": 7, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038010, + "Position": { + "X": -517.9065, + "Y": 72.5362, + "Z": 332.23462 + }, + "StopDistance": 8, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 64 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 64" + }, + { + "DataId": 1038008, + "Position": { + "X": -603.9369, + "Y": 78.6382, + "Z": 303.8529 + }, + "StopDistance": 8, + "TerritoryId": 960, + "InteractionType": "Interact", + "$.0": "[2]", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 32 + ], + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 96" + }, + { + "DataId": 179, + "Position": { + "X": -544.1215, + "Y": 74.34187, + "Z": 269.6726 + }, + "StopDistance": 10, + "TerritoryId": 960, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1038006, + "Position": { + "X": -490.6844, + "Y": 88.871994, + "Z": 207.35486 + }, + "StopDistance": 8, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 128 + ], + "$.1": "QuestVariables if done first: 1 0 0 0 0 128" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039775, + "Position": { + "X": -469.3523, + "Y": 55.880516, + "Z": -36.66742 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012283, + "Position": { + "X": -465.1103, + "Y": 56.47351, + "Z": -30.71643 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 32 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 32" + }, + { + "DataId": 2012282, + "Position": { + "X": -479.3927, + "Y": 56.290405, + "Z": -33.676758 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 64 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 ??" + }, + { + "DataId": 2012281, + "Position": { + "X": -472.25153, + "Y": 56.26001, + "Z": -20.676025 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 128 + ], + "Comment": "TODO Verify quest variables flags" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012284, + "Position": { + "X": -474.32672, + "Y": 56.198975, + "Z": -41.031555 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039776, + "Position": { + "X": -572.2896, + "Y": 64.78333, + "Z": -200.3357 + }, + "StopDistance": 1, + "TerritoryId": 960, + "InteractionType": "Combat", + "EnemySpawnType": "AutoOnEnterArea", + "KillEnemyDataIds": [ + 14002 + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039776, + "Position": { + "X": -572.2896, + "Y": 64.78333, + "Z": -200.3357 + }, + "StopDistance": 8, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4455_A Test of Will.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4455_A Test of Will.json new file mode 100644 index 00000000..5a3d1b21 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4455_A Test of Will.json @@ -0,0 +1,94 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041214, + "Position": { + "X": -575.00574, + "Y": 65.25543, + "Z": -190.02063 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040295, + "Position": { + "X": -504.0513, + "Y": 73.32458, + "Z": 273.9757 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "AetheryteShortcut": "Ultima Thule - Reah Tahra" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040306, + "Position": { + "X": -772.3049, + "Y": 59.814697, + "Z": 55.954834 + }, + "StopDistance": 8, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040301, + "Position": { + "X": -620.44714, + "Y": 92.1207, + "Z": -203.35706 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2012544, + "Position": { + "X": -608.7807, + "Y": 92.12769, + "Z": -208 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + }, + { + "DataId": 2012429, + "Position": { + "X": -471.27496, + "Y": 232.19641, + "Z": -253.10144 + }, + "StopDistance": 5, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4456_Roads Paved of Sacrifice.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4456_Roads Paved of Sacrifice.json new file mode 100644 index 00000000..9752d9ed --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4456_Roads Paved of Sacrifice.json @@ -0,0 +1,221 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040307, + "Position": { + "X": -469.29126, + "Y": 232.2548, + "Z": -252.8573 + }, + "StopDistance": 5, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040315, + "Position": { + "X": -345.87628, + "Y": 254.66968, + "Z": -277.27173 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040313, + "Position": { + "X": -339.10126, + "Y": 255.53401, + "Z": -281.75793 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012030, + "Position": { + "X": -333.547, + "Y": 270.83228, + "Z": -361.50153 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818389 + }, + { + "DataId": 2012035, + "Position": { + "X": -238.81903, + "Y": 320.36304, + "Z": -295.15533 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818394 + }, + { + "DataId": 1040317, + "Position": { + "X": -200.57983, + "Y": 268.01642, + "Z": -312.58112 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "Mount": true, + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1040318, + "Position": { + "X": 29.984009, + "Y": 270.45825, + "Z": -535.0271 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012354, + "Position": { + "X": 30.777344, + "Y": 272.51086, + "Z": -600.7019 + }, + "StopDistance": 4, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 128 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 128" + }, + { + "DataId": 2012355, + "Position": { + "X": 64.10315, + "Y": 272.4497, + "Z": -616.4492 + }, + "StopDistance": 4, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 64 + ], + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 192" + }, + { + "DataId": 180, + "Position": { + "X": 64.286255, + "Y": 272.48022, + "Z": -657.49603 + }, + "StopDistance": 8, + "TerritoryId": 960, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 2012356, + "Position": { + "X": 115.526, + "Y": 272.99915, + "Z": -617.853 + }, + "StopDistance": 4, + "TerritoryId": 960, + "InteractionType": "Interact", + "$.0": "[3]", + "$.1": "QuestVariables if done after [2]: 3 0 0 0 0 224", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 32 + ] + }, + { + "DataId": 2012357, + "Position": { + "X": 151.59839, + "Y": 272.9381, + "Z": -592.5841 + }, + "StopDistance": 4, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 16 + ], + "$.0": "[4]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 16" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1040318, + "Position": { + "X": 29.984009, + "Y": 270.45825, + "Z": -535.0271 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4457_Flesh Abandoned.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4457_Flesh Abandoned.json new file mode 100644 index 00000000..f37cc0ae --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4457_Flesh Abandoned.json @@ -0,0 +1,82 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040318, + "Position": { + "X": 29.984009, + "Y": 270.45825, + "Z": -535.0271 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040329, + "Position": { + "X": 75.69995, + "Y": 268.99997, + "Z": -528.3436 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012358, + "Position": { + "X": 84.97742, + "Y": 269.06226, + "Z": -493.00375 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012358, + "Position": { + "X": 84.97742, + "Y": 269.06226, + "Z": -493.00375 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039759, + "Position": { + "X": 86.778076, + "Y": 269.0949, + "Z": -491.66098 + }, + "StopDistance": 7, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4458_Where Knowledge Leads.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4458_Where Knowledge Leads.json new file mode 100644 index 00000000..34af49d1 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4458_Where Knowledge Leads.json @@ -0,0 +1,119 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039760, + "Position": { + "X": 82.65808, + "Y": 269.0903, + "Z": -490.44025 + }, + "StopDistance": 7, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040338, + "Position": { + "X": -344.44196, + "Y": 263.13083, + "Z": -463.70648 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1040339, + "Position": { + "X": -341.78687, + "Y": 263.37482, + "Z": -461.44812 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "Position": { + "X": -353.82343, + "Y": 263.4366, + "Z": -458.5238 + }, + "TerritoryId": 960, + "InteractionType": "WalkTo", + "Mount": true + }, + { + "Position": { + "X": -394.40567, + "Y": 266.7831, + "Z": -478.6604 + }, + "TerritoryId": 960, + "InteractionType": "WalkTo", + "DisableNavmesh": true + }, + { + "Position": { + "X": -408.86514, + "Y": 266.81473, + "Z": -519.4911 + }, + "TerritoryId": 960, + "InteractionType": "WalkTo" + }, + { + "DataId": 2012036, + "Position": { + "X": -385.24457, + "Y": 262.50085, + "Z": -629.8772 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818395 + }, + { + "DataId": 2012031, + "Position": { + "X": 13.107483, + "Y": 275.56262, + "Z": -756.40497 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetheryteShortcut": "Ultima Thule - Abode of the Ea", + "AetherCurrentId": 2818390 + }, + { + "DataId": 1039778, + "Position": { + "X": 184.03906, + "Y": 269.03912, + "Z": -637.6288 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4459_Victory x Lost.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4459_Victory x Lost.json new file mode 100644 index 00000000..99b7938b --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4459_Victory x Lost.json @@ -0,0 +1,230 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039782, + "Position": { + "X": 183.12354, + "Y": 269.0203, + "Z": -633.5393 + }, + "StopDistance": 6, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012034, + "Position": { + "X": 424.55164, + "Y": 283.37524, + "Z": -679.7742 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818393 + }, + { + "DataId": 1039787, + "Position": { + "X": 434.37854, + "Y": 284.02585, + "Z": -328.51147 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012794, + "Position": { + "X": 440.7262, + "Y": 285.29785, + "Z": -319.50867 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + }, + { + "DataId": 2012286, + "Position": { + "X": 506.98096, + "Y": 439.68872, + "Z": 157 + }, + "TerritoryId": 960, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 14000, + 14001 + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2012287, + "Position": { + "X": 506.98096, + "Y": 439.68872, + "Z": 157 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039790, + "Position": { + "X": 508.53735, + "Y": 439.695, + "Z": 155.59619 + }, + "StopDistance": 5, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012288, + "Position": { + "X": 493.33936, + "Y": 439.68872, + "Z": 174.9447 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 2012289, + "Position": { + "X": 490.44006, + "Y": 439.68872, + "Z": 191.30237 + }, + "TerritoryId": 960, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 13999 + ] + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 2012033, + "Position": { + "X": 539.26904, + "Y": 437.9796, + "Z": 239.39868 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818392 + }, + { + "DataId": 1039791, + "Position": { + "X": 502.98303, + "Y": 436.99966, + "Z": 308.97986 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 1038039, + "Position": { + "X": 521.9348, + "Y": 436.99805, + "Z": 329.76257 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + }, + { + "DataId": 1038041, + "Position": { + "X": 517.54016, + "Y": 436.99878, + "Z": 345.44885 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + }, + { + "DataId": 1038045, + "Position": { + "X": 504.6615, + "Y": 437.1449, + "Z": 347.64624 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 181, + "Position": { + "X": 489.2804, + "Y": 437.5829, + "Z": 333.63843 + }, + "StopDistance": 5, + "TerritoryId": 960, + "InteractionType": "AttuneAetheryte" + }, + { + "DataId": 1039791, + "Position": { + "X": 502.98303, + "Y": 436.99966, + "Z": 308.97986 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4460_x.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4460_x.json new file mode 100644 index 00000000..58b80718 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4460_x.json @@ -0,0 +1,188 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1040340, + "Position": { + "X": 544.51807, + "Y": 437.9998, + "Z": 301.4419 + }, + "StopDistance": 5, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012039, + "Position": { + "X": 567.46765, + "Y": 440.9093, + "Z": 402.12085 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818398 + }, + { + "DataId": 2012032, + "Position": { + "X": 661.76843, + "Y": 439.96326, + "Z": 411.73413 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818391 + }, + { + "DataId": 1040343, + "Position": { + "X": 624.3839, + "Y": 441.9763, + "Z": 437.33875 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012359, + "Position": { + "X": 623.3462, + "Y": 442.95398, + "Z": 441.00085 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1040344, + "Position": { + "X": 624.99414, + "Y": 441.9763, + "Z": 439.9939 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2012360, + "Position": { + "X": 525.13916, + "Y": 441.03137, + "Z": 375.50916 + }, + "TerritoryId": 960, + "InteractionType": "WaitForManualProgress", + "Comment": "Duty - Find Errant Omicron" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2012037, + "Position": { + "X": 751.8578, + "Y": 439.96326, + "Z": 357.86987 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818396 + }, + { + "DataId": 2012038, + "Position": { + "X": 645.6607, + "Y": 438.6276, + "Z": 291.0269 + }, + "StopDistance": 1, + "TerritoryId": 960, + "InteractionType": "Jump", + "JumpDestination": { + "DataId": 2012038, + "Position": { + "X": 637.1709, + "Y": 439.23096, + "Z": 289.66187 + }, + "StopDistance": 3 + } + }, + { + "DataId": 2012038, + "Position": { + "X": 637.1709, + "Y": 439.23096, + "Z": 289.66187 + }, + "TerritoryId": 960, + "InteractionType": "AttuneAetherCurrent", + "AetherCurrentId": 2818397, + "DisableNavmesh": true + }, + { + "DataId": 1040349, + "Position": { + "X": 636.92664, + "Y": 438.64966, + "Z": 248.0658 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2012796, + "Position": { + "X": 639.27673, + "Y": 439.78027, + "Z": 241.77905 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + }, + { + "DataId": 1041157, + "Position": { + "X": 801.63257, + "Y": 478.9742, + "Z": 196.79553 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4461_Hello World.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4461_Hello World.json new file mode 100644 index 00000000..62bce9fe --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4461_Hello World.json @@ -0,0 +1,83 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041158, + "Position": { + "X": 799.9846, + "Y": 479.0242, + "Z": 199.42017 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040342, + "Position": { + "X": 546.07446, + "Y": 437.9998, + "Z": 303.8529 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "AetheryteShortcut": "Ultima Thule - Base Omicron" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039565, + "Position": { + "X": 609.4606, + "Y": 440.4633, + "Z": 398.42822 + }, + "TerritoryId": 960, + "InteractionType": "WaitForManualProgress", + "Comment": "Identify Anomaly (Elbow/Knee)" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1041159, + "Position": { + "X": 624.0176, + "Y": 441.9763, + "Z": 439.78027 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041162, + "Position": { + "X": 623.5598, + "Y": 441.9763, + "Z": 436.78955 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4462_Forge Ahead.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4462_Forge Ahead.json new file mode 100644 index 00000000..1681f9f1 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4462_Forge Ahead.json @@ -0,0 +1,109 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041161, + "Position": { + "X": 622.4308, + "Y": 441.9763, + "Z": 436.17908 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041163, + "Position": { + "X": 493.15625, + "Y": 436.8645, + "Z": 360.46387 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "AetheryteShortcut": "Ultima Thule - Base Omicron" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012795, + "Position": { + "X": 492.48486, + "Y": 438.04077, + "Z": 365.43823 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + }, + { + "DataId": 1041165, + "Position": { + "X": 460.563, + "Y": 417.0675, + "Z": 415.21326 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1041166, + "Position": { + "X": 459.25073, + "Y": 417.0675, + "Z": 414.66382 + }, + "StopDistance": 5, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1041165, + "Position": { + "X": 231.45715, + "Y": 566, + "Z": 317.96698 + }, + "StopDistance": 1, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041167, + "Position": { + "X": 221.20996, + "Y": 566, + "Z": 314.4121 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4463_Youre Not Alone.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4463_Youre Not Alone.json new file mode 100644 index 00000000..e30ef3b5 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4463_Youre Not Alone.json @@ -0,0 +1,206 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1041168, + "Position": { + "X": 222.52222, + "Y": 565.99994, + "Z": 313.1914 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2012364, + "Position": { + "X": 203.9978, + "Y": 565.9723, + "Z": 296.98633 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 128 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done first: 16 0 0 16 0 128" + }, + { + "DataId": 2012367, + "Position": { + "X": 185.74805, + "Y": 568.902, + "Z": 240.03955 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 16 + ], + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 32 16 0 16 0 144" + }, + { + "DataId": 2012368, + "Position": { + "X": 163.16467, + "Y": 567.13196, + "Z": 280.93384 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 8 + ], + "$.0": "[3]", + "$.1": "QuestVariables if done after [1, 2]: 48 17 0 16 0 152" + }, + { + "DataId": 2012366, + "Position": { + "X": 157.24414, + "Y": 566.03345, + "Z": 295.97925 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 32 + ], + "$.0": "[4]", + "$.1": "QuestVariables if done after [1, 2, 3]: 65 17 0 16 0 184" + }, + { + "DataId": 2012369, + "Position": { + "X": 104.29541, + "Y": 569.2682, + "Z": 297.16943 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 4 + ], + "$.0": "[5]", + "$.1": "QuestVariables if done after [1, 2, 3, 4]: 81 17 16 16 0 188" + }, + { + "DataId": 2012365, + "Position": { + "X": 78.99597, + "Y": 566.27747, + "Z": 241.9928 + }, + "TerritoryId": 960, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 64 + ], + "$.0": "[6]", + "$.1": "QuestVariables if done first: 16 0 1 0 0 64" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1041171, + "Position": { + "X": 39.993896, + "Y": 567.5, + "Z": 192.88928 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1041170, + "Position": { + "X": 145.28113, + "Y": 566, + "Z": 390.7987 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": 1.462573, + "Y": 637.1029, + "Z": 2.690414 + }, + "TerritoryId": 1027, + "InteractionType": "WalkTo" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041173, + "Position": { + "X": 1.663208, + "Y": 637.10297, + "Z": 5.2338257 + }, + "StopDistance": 5, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/G-UltimaThule/4464_Endwalker.json b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4464_Endwalker.json new file mode 100644 index 00000000..9ce295c1 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/G-UltimaThule/4464_Endwalker.json @@ -0,0 +1,242 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "TerritoryBlacklist": [ + 973 + ], + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042216, + "Position": { + "X": 4.196167, + "Y": 637.10297, + "Z": 4.2266846 + }, + "TerritoryId": 960, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "TerritoryId": 960, + "InteractionType": "Duty", + "ContentFinderConditionId": 792 + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "TerritoryId": 1029, + "InteractionType": "Duty", + "ContentFinderConditionId": 796 + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1041179, + "Position": { + "X": 99.99231, + "Y": 0, + "Z": 89.98242 + }, + "TerritoryId": 1026, + "InteractionType": "SinglePlayerDuty", + "Comment": "Zenos" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1041188, + "Position": { + "X": -0.16790771, + "Y": 0, + "Z": 0.8086548 + }, + "StopDistance": 5, + "TerritoryId": 351, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 1 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 1" + }, + { + "DataId": 1041181, + "Position": { + "X": -1.236023, + "Y": 0, + "Z": 0.6560669 + }, + "StopDistance": 5, + "TerritoryId": 351, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 128 + ], + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 129" + }, + { + "DataId": 1041182, + "Position": { + "X": -6.4240723, + "Y": 0.009977884, + "Z": -4.7455444 + }, + "TerritoryId": 351, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 64 + ], + "$.0": "[3]", + "$.1": "QuestVariables if done after [1, 2]: 3 0 0 0 0 193" + }, + { + "DataId": 1041184, + "Position": { + "X": -7.034485, + "Y": 0, + "Z": -5.8442383 + }, + "StopDistance": 5, + "TerritoryId": 351, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 16 + ], + "$.0": "[4]", + "$.1": "QuestVariables if done after [1, 2, 3]: 4 0 0 0 0 209" + }, + { + "DataId": 1041183, + "Position": { + "X": 6.6376343, + "Y": 0, + "Z": -6.790344 + }, + "TerritoryId": 351, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 32 + ], + "$.0": "[5]", + "$.1": "QuestVariables if done after [1, 2, 3, 4]: 5 0 0 0 0 241" + }, + { + "DataId": 1041187, + "Position": { + "X": 10.482849, + "Y": 0, + "Z": -8.255188 + }, + "TerritoryId": 351, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 2 + ], + "$.0": "[6]", + "$.1": "QuestVariables if done after [1, 2, 3, 4, 5]: 6 0 0 0 0 243" + }, + { + "DataId": 1041185, + "Position": { + "X": 25.864014, + "Y": -1, + "Z": -5.7526855 + }, + "TerritoryId": 351, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 8 + ], + "$.0": "[7]", + "$.1": "QuestVariables if done after [1, 2, 3, 4, 5, 6]: 7 0 0 0 0 251" + }, + { + "DataId": 1041186, + "Position": { + "X": 29.984009, + "Y": -1, + "Z": 0.1373291 + }, + "TerritoryId": 351, + "InteractionType": "Interact", + "CompletionQuestVariablesFlags": [ + null, + null, + null, + null, + null, + 4 + ], + "$.2": "QuestVariables if done first: 1 0 0 0 0 0 4" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1041189, + "Position": { + "X": -0.015319824, + "Y": 0, + "Z": -7.1870728 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4526_Newfound Adventure.json b/QuestPaths/Endwalker/MSQ/H-6.1/4526_Newfound Adventure.json new file mode 100644 index 00000000..80a609d4 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4526_Newfound Adventure.json @@ -0,0 +1,57 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 2002881, + "Position": { + "X": 21.133728, + "Y": 22.323914, + "Z": -631.281 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "DisableNavmesh": true + }, + { + "DataId": 1041232, + "Position": { + "X": -0.015319824, + "Y": 0, + "Z": -7.1870728 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2002879, + "Position": { + "X": 0, + "Y": 3, + "Z": 27.5 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + }, + { + "DataId": 1039570, + "Position": { + "X": 36.453735, + "Y": 29, + "Z": -799.7101 + }, + "TerritoryId": 156, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4527_Bountiful Ruins.json b/QuestPaths/Endwalker/MSQ/H-6.1/4527_Bountiful Ruins.json new file mode 100644 index 00000000..cc0b7cc5 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4527_Bountiful Ruins.json @@ -0,0 +1,105 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039570, + "Position": { + "X": 36.453735, + "Y": 29, + "Z": -799.7101 + }, + "TerritoryId": 156, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1037318, + "Position": { + "X": -4.1047363, + "Y": 2.9999943, + "Z": -203.8758 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AetheryteShortcut": "Radz-at-Han", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Mehryde's Meyhane" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039571, + "Position": { + "X": -24.429688, + "Y": 3.0099995, + "Z": -225.42157 + }, + "TerritoryId": 963, + "InteractionType": "WaitForManualProgress", + "Comment": "Talk (1, 1, 1, 2)" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039574, + "Position": { + "X": -13.870483, + "Y": 1.51, + "Z": -178.14911 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039577, + "Position": { + "X": 1.7852783, + "Y": -3.2177195E-06, + "Z": -13.687378 + }, + "StopDistance": 5, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039578, + "Position": { + "X": -254.50525, + "Y": 4.3609705, + "Z": 570.94666 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Yedlihmad", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4528_Friends for the Road.json b/QuestPaths/Endwalker/MSQ/H-6.1/4528_Friends for the Road.json new file mode 100644 index 00000000..1d8d4e32 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4528_Friends for the Road.json @@ -0,0 +1,117 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039579, + "Position": { + "X": -251.3009, + "Y": 4.388065, + "Z": 571.5265 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact", + "AetheryteShortcut": "Old Sharlayan", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": -350.9551, + "Y": 18.999998, + "Z": 56.043774 + }, + "TerritoryId": 962, + "InteractionType": "WalkTo", + "AethernetShortcut": [ + "[Old Sharlayan] The Baldesion Annex", + "[Old Sharlayan] The Studium" + ] + }, + { + "DataId": 1039581, + "Position": { + "X": -398.45886, + "Y": 19, + "Z": 92.48486 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039550, + "Position": { + "X": -620.7218, + "Y": -27.670597, + "Z": 302.17432 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "AetheryteShortcut": "Labyrinthos - Aporia", + "SkipIf": [ + "FlyingUnlocked" + ] + }, + { + "DataId": 1039582, + "Position": { + "X": -325.2461, + "Y": -224.27272, + "Z": 298.39014 + }, + "TerritoryId": 956, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039585, + "Position": { + "X": -267.5365, + "Y": 0.15800172, + "Z": 603.41797 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Yedlihmad", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4529_Alzadaals Legacy.json b/QuestPaths/Endwalker/MSQ/H-6.1/4529_Alzadaals Legacy.json new file mode 100644 index 00000000..65cc21c0 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4529_Alzadaals Legacy.json @@ -0,0 +1,50 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "TerritoryBlacklist": [ + 1050 + ], + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039586, + "Position": { + "X": -264.5152, + "Y": 0.24978253, + "Z": 605.6763 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "TerritoryId": 957, + "InteractionType": "Duty", + "ContentFinderConditionId": 844 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039590, + "Position": { + "X": 113.69495, + "Y": -350.00003, + "Z": -72.19049 + }, + "StopDistance": 7, + "TerritoryId": 1056, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4530_A Brothers Grief.json b/QuestPaths/Endwalker/MSQ/H-6.1/4530_A Brothers Grief.json new file mode 100644 index 00000000..65b557ac --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4530_A Brothers Grief.json @@ -0,0 +1,68 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039591, + "Position": { + "X": 107.71338, + "Y": -350, + "Z": -73.68585 + }, + "StopDistance": 5, + "TerritoryId": 1056, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039595, + "Position": { + "X": 107.83545, + "Y": -350, + "Z": -84.82495 + }, + "TerritoryId": 1056, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039600, + "Position": { + "X": 142.443, + "Y": 4.7837553, + "Z": -148.57715 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AetheryteShortcut": "Radz-at-Han" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039600, + "Position": { + "X": 142.443, + "Y": 4.7837553, + "Z": -148.57715 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4531_Sharing the Wealth.json b/QuestPaths/Endwalker/MSQ/H-6.1/4531_Sharing the Wealth.json new file mode 100644 index 00000000..d6156e09 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4531_Sharing the Wealth.json @@ -0,0 +1,104 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039600, + "Position": { + "X": 142.443, + "Y": 4.7837553, + "Z": -148.57715 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 199, + "Position": { + "X": 57.91655, + "Y": -24.69344, + "Z": -210.6151 + }, + "TerritoryId": 963, + "InteractionType": "AttuneAethernetShard" + }, + { + "DataId": 1039589, + "Position": { + "X": -270.25262, + "Y": 0.07863108, + "Z": 605.9204 + }, + "TerritoryId": 957, + "AetheryteShortcut": "Thavnair - Yedlihmad", + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": 169.31848, + "Y": 5.3451567, + "Z": 633.7924 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "Fly": true + }, + { + "DataId": 1037631, + "Position": { + "X": 166.64368, + "Y": 5.34517, + "Z": 635.9807 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1039606, + "Position": { + "X": 215.80823, + "Y": 9.935694, + "Z": 561.27246 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039607, + "Position": { + "X": -342.58032, + "Y": 55, + "Z": -68.61987 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AetheryteShortcut": "Radz-at-Han", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4532_Bridging the Rift.json b/QuestPaths/Endwalker/MSQ/H-6.1/4532_Bridging the Rift.json new file mode 100644 index 00000000..425bea26 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4532_Bridging the Rift.json @@ -0,0 +1,129 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039609, + "Position": { + "X": -343.09918, + "Y": 55, + "Z": -74.84558 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039611, + "Position": { + "X": 124.1626, + "Y": 4.856044, + "Z": -139.63531 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Meghaduta", + "[Radz-at-Han] Aetheryte Plaza" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039614, + "Position": { + "X": -9.536926, + "Y": 2.8, + "Z": -15.243774 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AetheryteShortcut": "Old Sharlayan" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039615, + "Position": { + "X": -297.13898, + "Y": 20.8, + "Z": -189.59338 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Studium" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039616, + "Position": { + "X": 227.06946, + "Y": 25.041138, + "Z": -159.2279 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Studium", + "[Old Sharlayan] The Leveilleur Estate" + ] + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039614, + "Position": { + "X": -94.118614, + "Y": 3.8989394, + "Z": 1.0696089 + }, + "StopDistance": 0.25, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Leveilleur Estate", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039617, + "Position": { + "X": -93.91931, + "Y": 3.8989394, + "Z": -1.1750488 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4533_Restricted Reading.json b/QuestPaths/Endwalker/MSQ/H-6.1/4533_Restricted Reading.json new file mode 100644 index 00000000..bf47298a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4533_Restricted Reading.json @@ -0,0 +1,144 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039618, + "Position": { + "X": -95.96399, + "Y": 3.933468, + "Z": 0.503479 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039619, + "Position": { + "X": -344.625, + "Y": 19, + "Z": 71.61047 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Baldesion Annex", + "[Old Sharlayan] The Studium" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2012844, + "Position": { + "X": -4.3793945, + "Y": 5.569519, + "Z": 13.809326 + }, + "TerritoryId": 1057, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039620, + "Position": { + "X": -1.5107422, + "Y": -7.012859E-07, + "Z": -2.609314 + }, + "TerritoryId": 1057, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039622, + "Position": { + "X": -341.78687, + "Y": 19, + "Z": 69.10803 + }, + "StopDistance": 5, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1039623, + "Position": { + "X": -477.89734, + "Y": 4.678896, + "Z": 29.55664 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Great Work" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "Position": { + "X": 242.9973, + "Y": 1.2090492, + "Z": 118.133255 + }, + "TerritoryId": 957, + "InteractionType": "WalkTo", + "AetheryteShortcut": "Thavnair - Palaka's Stand", + "Fly": true + }, + { + "DataId": 2012847, + "Position": { + "X": 242.08435, + "Y": 0.3508911, + "Z": 119.43237 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039624, + "Position": { + "X": -478.38562, + "Y": 4.7772117, + "Z": 26.779541 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Great Work" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4534_Void Theory.json b/QuestPaths/Endwalker/MSQ/H-6.1/4534_Void Theory.json new file mode 100644 index 00000000..b42471b8 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4534_Void Theory.json @@ -0,0 +1,67 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039624, + "Position": { + "X": -478.38562, + "Y": 4.7772117, + "Z": 26.779541 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039627, + "Position": { + "X": -270.25262, + "Y": 0.07863108, + "Z": 605.9204 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039632, + "Position": { + "X": 106.614746, + "Y": -350, + "Z": -78.56879 + }, + "TerritoryId": 1056, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2012837, + "Position": { + "X": 110.03284, + "Y": -350.02673, + "Z": -82.90228 + }, + "TerritoryId": 1056, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/H-6.1/4535_A Satraps Duty.json b/QuestPaths/Endwalker/MSQ/H-6.1/4535_A Satraps Duty.json new file mode 100644 index 00000000..88d18b13 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/H-6.1/4535_A Satraps Duty.json @@ -0,0 +1,88 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039633, + "Position": { + "X": 111.46704, + "Y": -350, + "Z": -83.14642 + }, + "StopDistance": 5, + "TerritoryId": 1056, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039636, + "Position": { + "X": 114.27478, + "Y": 0.65204185, + "Z": 7.4310913 + }, + "TerritoryId": 635, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039638, + "Position": { + "X": -511.6503, + "Y": 11.97528, + "Z": 108.11011 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Great Work" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039639, + "Position": { + "X": -513.6644, + "Y": 11.97528, + "Z": 106.06543 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AetheryteShortcut": "Radz-at-Han", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4592_In Search of Azdaja.json b/QuestPaths/Endwalker/MSQ/I-6.2/4592_In Search of Azdaja.json new file mode 100644 index 00000000..61f0623c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4592_In Search of Azdaja.json @@ -0,0 +1,94 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039655, + "Position": { + "X": -478.29407, + "Y": 4.851227, + "Z": 22.507019 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "AetheryteShortcut": "Thavnair - Great Work" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039627, + "Position": { + "X": -270.25262, + "Y": 0.07863108, + "Z": 605.9204 + }, + "StopDistance": 5, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039663, + "Position": { + "X": 110.82617, + "Y": -350, + "Z": -81.9563 + }, + "TerritoryId": 1056, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "TerritoryId": 1056, + "InteractionType": "Duty", + "ContentFinderConditionId": 869 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042063, + "Position": { + "X": -88.51758, + "Y": 376.4496, + "Z": -158.31238 + }, + "StopDistance": 7, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4593_Shadowed Remnants.json b/QuestPaths/Endwalker/MSQ/I-6.2/4593_Shadowed Remnants.json new file mode 100644 index 00000000..276af52c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4593_Shadowed Remnants.json @@ -0,0 +1,137 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042064, + "Position": { + "X": -83.72626, + "Y": 376.38647, + "Z": -158.0072 + }, + "StopDistance": 7, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1042066, + "Position": { + "X": -48.69159, + "Y": 367.85046, + "Z": -109.33093 + }, + "TerritoryId": 1089, + "InteractionType": "Interact", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 128" + }, + { + "DataId": 1043790, + "Position": { + "X": -10.360962, + "Y": 359.19916, + "Z": -106.70636 + }, + "TerritoryId": 1089, + "InteractionType": "Interact", + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 192" + }, + { + "DataId": 1043791, + "Position": { + "X": -9.87262, + "Y": 350.62988, + "Z": -61.539734 + }, + "TerritoryId": 1089, + "InteractionType": "Interact", + "$.0": "[3]", + "$.1": "QuestVariables if done after [1, 2]: 3 0 0 0 0 224" + }, + { + "DataId": 1043792, + "Position": { + "X": 4.043579, + "Y": 350.57257, + "Z": -49.45453 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2013042, + "Position": { + "X": 38.071167, + "Y": 348.04297, + "Z": 4.3792725 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2013115, + "Position": { + "X": 14.236633, + "Y": 351.27795, + "Z": 14.389221 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + }, + { + "DataId": 2013113, + "Position": { + "X": -280.0794, + "Y": -716.7621, + "Z": 133.95886 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + }, + { + "Position": { + "X": 71.0746, + "Y": -718.0001, + "Z": 206.78001 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1043800, + "Position": { + "X": 100.11438, + "Y": -718.4441, + "Z": 206.77502 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4594_Where Everything Begins.json b/QuestPaths/Endwalker/MSQ/I-6.2/4594_Where Everything Begins.json new file mode 100644 index 00000000..ffcd8b48 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4594_Where Everything Begins.json @@ -0,0 +1,94 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1043802, + "Position": { + "X": 103.4104, + "Y": -718.33905, + "Z": 207.87354 + }, + "StopDistance": 5, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1043804, + "Position": { + "X": 220.59961, + "Y": -699.9556, + "Z": 90.01294 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1043806, + "Position": { + "X": 217.39526, + "Y": -699.9557, + "Z": 91.17261 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2013112, + "Position": { + "X": 259.9318, + "Y": -706.408, + "Z": 90.01325 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + }, + { + "DataId": 1043808, + "Position": { + "X": -1.5107422, + "Y": -698.0104, + "Z": -150.83551 + }, + "TerritoryId": 1089, + "InteractionType": "SinglePlayerDuty", + "Comment": "Where Everything Begins" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1043812, + "Position": { + "X": -1.1750488, + "Y": -698.0104, + "Z": -135.63751 + }, + "StopDistance": 5, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4595_Groping in the Dark.json b/QuestPaths/Endwalker/MSQ/I-6.2/4595_Groping in the Dark.json new file mode 100644 index 00000000..f4c4b44a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4595_Groping in the Dark.json @@ -0,0 +1,138 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1043815, + "Position": { + "X": 1.7241821, + "Y": -698.0104, + "Z": -138.1095 + }, + "StopDistance": 5, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013114, + "Position": { + "X": 0.02930583, + "Y": -692.6403, + "Z": -232.4083 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + }, + { + "DataId": 1043792, + "Position": { + "X": 4.043579, + "Y": 350.57257, + "Z": -49.45453 + }, + "TerritoryId": 1089, + "InteractionType": "Interact", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 32" + }, + { + "DataId": 1043791, + "Position": { + "X": -9.87262, + "Y": 350.62988, + "Z": -61.539734 + }, + "TerritoryId": 1089, + "InteractionType": "Interact", + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 96" + }, + { + "DataId": 1043790, + "Position": { + "X": -10.360962, + "Y": 359.19916, + "Z": -106.70636 + }, + "TerritoryId": 1089, + "InteractionType": "Interact", + "$.0": "[3]" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2013115, + "Position": { + "X": 14.236633, + "Y": 351.27795, + "Z": 14.389221 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + }, + { + "DataId": 1043814, + "Position": { + "X": 0.6866455, + "Y": -698.0104, + "Z": -139.75745 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2013114, + "Position": { + "X": 0.015197754, + "Y": -692.65283, + "Z": -232.41016 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + }, + { + "DataId": 1043816, + "Position": { + "X": 13.595764, + "Y": 359.19916, + "Z": -110.12439 + }, + "TerritoryId": 1089, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1043822, + "Position": { + "X": -30.045044, + "Y": -0.50953794, + "Z": 33.798706 + }, + "StopDistance": 5, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4596_Nowhere to Run.json b/QuestPaths/Endwalker/MSQ/I-6.2/4596_Nowhere to Run.json new file mode 100644 index 00000000..d9c09fc8 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4596_Nowhere to Run.json @@ -0,0 +1,183 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1043822, + "Position": { + "X": -30.045044, + "Y": -0.50953794, + "Z": 33.798706 + }, + "StopDistance": 5, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1043822, + "Position": { + "X": -30.045044, + "Y": -0.50953794, + "Z": 33.798706 + }, + "StopDistance": 5, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1043829, + "Position": { + "X": -47.257202, + "Y": -0.509538, + "Z": -22.568176 + }, + "TerritoryId": 1077, + "InteractionType": "Interact", + "$.0": "[1]" + }, + { + "DataId": 1043831, + "Position": { + "X": -12.710815, + "Y": -0.50953794, + "Z": -49.45453 + }, + "TerritoryId": 1077, + "InteractionType": "Interact", + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 160" + }, + { + "DataId": 1043830, + "Position": { + "X": 35.14148, + "Y": -0.50953794, + "Z": -38.651123 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1043822, + "Position": { + "X": 27.317875, + "Y": -0.43000424, + "Z": -13.701547 + }, + "StopDistance": 0.25, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1043822, + "Position": { + "X": 28.591307, + "Y": -0.43000418, + "Z": -12.1619835 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1043832, + "Position": { + "X": 104.234375, + "Y": -0.50953794, + "Z": -22.62915 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1043833, + "Position": { + "X": 61.69214, + "Y": -0.40188107, + "Z": 46.463623 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1043834, + "Position": { + "X": 56.198975, + "Y": 16.517479, + "Z": 82.20032 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 8, + "Steps": [ + { + "DataId": 1043835, + "Position": { + "X": 134.41675, + "Y": 24.30001, + "Z": 60.501953 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1043836, + "Position": { + "X": 1.0223389, + "Y": -0.4, + "Z": -68.223145 + }, + "StopDistance": 5, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4597_The Wind Rises.json b/QuestPaths/Endwalker/MSQ/I-6.2/4597_The Wind Rises.json new file mode 100644 index 00000000..4410c0f0 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4597_The Wind Rises.json @@ -0,0 +1,63 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1043839, + "Position": { + "X": -0.25946045, + "Y": -0.4, + "Z": -70.72565 + }, + "StopDistance": 7, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013053, + "Position": { + "X": -0.16790771, + "Y": -0.16790771, + "Z": -74.87604 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "TerritoryId": 1092, + "InteractionType": "Duty", + "ContentFinderConditionId": 870 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1043840, + "Position": { + "X": -29.434692, + "Y": -0.21963555, + "Z": 52.506226 + }, + "StopDistance": 5, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4598_Return from the Void.json b/QuestPaths/Endwalker/MSQ/I-6.2/4598_Return from the Void.json new file mode 100644 index 00000000..90d21c5e --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4598_Return from the Void.json @@ -0,0 +1,67 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1043841, + "Position": { + "X": -27.145874, + "Y": -0.21963556, + "Z": 50.492065 + }, + "StopDistance": 5, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1043844, + "Position": { + "X": -50.736267, + "Y": -0.4300005, + "Z": -11.795227 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1043846, + "Position": { + "X": -31.99823, + "Y": -0.21963498, + "Z": 51.499146 + }, + "TerritoryId": 1077, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1043847, + "Position": { + "X": -350.24036, + "Y": 55, + "Z": -81.28485 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4599_A World with Light and Life.json b/QuestPaths/Endwalker/MSQ/I-6.2/4599_A World with Light and Life.json new file mode 100644 index 00000000..d43ea26d --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4599_A World with Light and Life.json @@ -0,0 +1,172 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1043848, + "Position": { + "X": -1.5717163, + "Y": 0.008460393, + "Z": -1.8463745 + }, + "StopDistance": 7, + "TerritoryId": 1078, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013077, + "Position": { + "X": -0.015319824, + "Y": 1.2359009, + "Z": 5.3864136 + }, + "StopDistance": 4, + "TerritoryId": 1078, + "InteractionType": "Interact" + }, + { + "DataId": 1037381, + "Position": { + "X": -23.697266, + "Y": 1.7999947, + "Z": -180.07172 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Meghaduta", + "[Radz-at-Han] Mehryde's Meyhane" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1043847, + "Position": { + "X": -350.24036, + "Y": 55, + "Z": -81.28485 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Mehryde's Meyhane", + "[Radz-at-Han] Meghaduta" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1043852, + "Position": { + "X": -353.3227, + "Y": 54.999992, + "Z": -79.60632 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1037318, + "Position": { + "X": -4.1047363, + "Y": 2.9999943, + "Z": -203.8758 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Meghaduta", + "[Radz-at-Han] Mehryde's Meyhane" + ] + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1043852, + "Position": { + "X": -33.52105, + "Y": 0.59983087, + "Z": -74.57541 + }, + "StopDistance": 0.25, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1037354, + "Position": { + "X": 109.33081, + "Y": 1.8631814, + "Z": -100.1145 + }, + "StopDistance": 7, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "DataId": 1043852, + "Position": { + "X": -159.23143, + "Y": 36.051323, + "Z": 70.24 + }, + "StopDistance": 0.25, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Ruveydah Fibers" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1043857, + "Position": { + "X": -158.15979, + "Y": 36.051323, + "Z": 67.36853 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/I-6.2/4600_Buried Memory.json b/QuestPaths/Endwalker/MSQ/I-6.2/4600_Buried Memory.json new file mode 100644 index 00000000..3b0bf453 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/I-6.2/4600_Buried Memory.json @@ -0,0 +1,56 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1043858, + "Position": { + "X": -159.89929, + "Y": 36.051323, + "Z": 67.27698 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1043847, + "Position": { + "X": -350.24036, + "Y": 55, + "Z": -81.28485 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Ruveydah Fibers", + "[Radz-at-Han] Meghaduta" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "StopDistance": 5, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4670_Once More unto the Void.json b/QuestPaths/Endwalker/MSQ/J-6.3/4670_Once More unto the Void.json new file mode 100644 index 00000000..5e8ec06d --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4670_Once More unto the Void.json @@ -0,0 +1,80 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "StopDistance": 5, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1043821, + "Position": { + "X": 3.3721924, + "Y": 26.999998, + "Z": 37.216675 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Meghaduta", + "[Radz-at-Han] Kama" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1044293, + "Position": { + "X": -346.12042, + "Y": 55, + "Z": -66.17847 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Kama", + "[Radz-at-Han] Meghaduta" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1044293, + "Position": { + "X": -346.12042, + "Y": 55, + "Z": -66.17847 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AetheryteShortcut": "Radz-at-Han", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4671_A Cold Reunion.json b/QuestPaths/Endwalker/MSQ/J-6.3/4671_A Cold Reunion.json new file mode 100644 index 00000000..390ef84c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4671_A Cold Reunion.json @@ -0,0 +1,117 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1044229, + "Position": { + "X": -345.99835, + "Y": 55, + "Z": -63.645386 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1044231, + "Position": { + "X": 535.7289, + "Y": -36.65, + "Z": -185.87018 + }, + "StopDistance": 6, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1044234, + "Position": { + "X": -368.15448, + "Y": 21.999998, + "Z": 485.37415 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "AetheryteShortcut": "Garlemald - Camp Broken Glass" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1044241, + "Position": { + "X": 55.161255, + "Y": -16.177, + "Z": 427.87805 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1045227, + "Position": { + "X": 150.04187, + "Y": -20.207552, + "Z": 509.88013 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1044243, + "Position": { + "X": 132.31091, + "Y": -12.950364, + "Z": 642.8473 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1044239, + "Position": { + "X": -369.2226, + "Y": 22, + "Z": 484.0619 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "AetheryteShortcut": "Garlemald - Camp Broken Glass" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4672_Kindled Spirit.json b/QuestPaths/Endwalker/MSQ/J-6.3/4672_Kindled Spirit.json new file mode 100644 index 00000000..56c68240 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4672_Kindled Spirit.json @@ -0,0 +1,113 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1044239, + "Position": { + "X": -369.2226, + "Y": 22, + "Z": 484.0619 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1044249, + "Position": { + "X": -89.89093, + "Y": -9.408967, + "Z": 416.3423 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2013226, + "Position": { + "X": 18.631226, + "Y": -12.314087, + "Z": 383.77966 + }, + "TerritoryId": 958, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 16028, + 16029 + ], + "$.0": "[1]", + "$.1": "QuestVariables if done first: 16 5(enemy kill count) 0 0 0 64" + }, + { + "DataId": 2013307, + "Position": { + "X": 23.025818, + "Y": -9.2317505, + "Z": 337.5448 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 33 5 0 0 0 96" + }, + { + "DataId": 2013308, + "Position": { + "X": 75.33374, + "Y": -12.527649, + "Z": 339.40637 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "$.0": "[3]", + "$.1": "QuestVariables if done after [1, 2]: 49 21 0 0 0 112" + }, + { + "DataId": 2013051, + "Position": { + "X": 62.333008, + "Y": -10.635559, + "Z": 308.73572 + }, + "TerritoryId": 958, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 16030 + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1044250, + "Position": { + "X": 23.23944, + "Y": 1.1781613, + "Z": 144.70117 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4673_An Unforeseen Bargain.json b/QuestPaths/Endwalker/MSQ/J-6.3/4673_An Unforeseen Bargain.json new file mode 100644 index 00000000..ab047982 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4673_An Unforeseen Bargain.json @@ -0,0 +1,53 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1044252, + "Position": { + "X": 510.1244, + "Y": -36.65, + "Z": -161.73041 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1044257, + "Position": { + "X": 485.06897, + "Y": 10.800001, + "Z": -427.75616 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "SinglePlayerDuty", + "Comment": "An Unforeseen Bargain" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1044259, + "Position": { + "X": 528.9845, + "Y": -36.65, + "Z": -246.44855 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4674_King of the Mountain.json b/QuestPaths/Endwalker/MSQ/J-6.3/4674_King of the Mountain.json new file mode 100644 index 00000000..6f0cf2d8 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4674_King of the Mountain.json @@ -0,0 +1,79 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1044260, + "Position": { + "X": 527.9469, + "Y": -36.65, + "Z": -242.90839 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013224, + "Position": { + "X": 529.7681, + "Y": -36.65, + "Z": -243.843 + }, + "StopDistance": 5, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1044263, + "Position": { + "X": 466.05627, + "Y": -18.123579, + "Z": 718.8982 + }, + "TerritoryId": 958, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "TerritoryId": 958, + "InteractionType": "Duty", + "Comment": "Lapis Manalis", + "ContentFinderConditionId": 896 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1044270, + "Position": { + "X": -247.21143, + "Y": -173, + "Z": 131.88367 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4675_A Dragons Resolve.json b/QuestPaths/Endwalker/MSQ/J-6.3/4675_A Dragons Resolve.json new file mode 100644 index 00000000..dba2d1f3 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4675_A Dragons Resolve.json @@ -0,0 +1,131 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1044271, + "Position": { + "X": -249.92749, + "Y": -173, + "Z": 126.35986 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013231, + "Position": { + "X": -408.83502, + "Y": -117.81494, + "Z": 371.96924 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + }, + { + "DataId": 1044274, + "Position": { + "X": 351.15576, + "Y": 33.99946, + "Z": -381.5824 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2013232, + "Position": { + "X": 393.698, + "Y": 40.360107, + "Z": -273.0907 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2013230, + "Position": { + "X": 350.08765, + "Y": 34.86682, + "Z": -433.95135 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + }, + { + "DataId": 2013233, + "Position": { + "X": -261.1582, + "Y": -165.36206, + "Z": 229.08362 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2013234, + "Position": { + "X": 40.57373, + "Y": 365.98767, + "Z": -585.41235 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2013235, + "Position": { + "X": -2.4262085, + "Y": 374.6853, + "Z": -601.0071 + }, + "TerritoryId": 1119, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1044284, + "Position": { + "X": 464.34717, + "Y": -17.202883, + "Z": 705.0431 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4676_Paths Barred.json b/QuestPaths/Endwalker/MSQ/J-6.3/4676_Paths Barred.json new file mode 100644 index 00000000..4fbfeeea --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4676_Paths Barred.json @@ -0,0 +1,95 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1044289, + "Position": { + "X": 465.81213, + "Y": -17.44166, + "Z": 707.3014 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013239, + "Position": { + "X": -347.40216, + "Y": 54.97815, + "Z": -64.89667 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1044290, + "Position": { + "X": -212.63446, + "Y": 15.260341, + "Z": 460.34937 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1037648, + "Position": { + "X": -562.005, + "Y": 9.817466, + "Z": -585.1987 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + }, + { + "DataId": 1037647, + "Position": { + "X": -588.83044, + "Y": 9.81748, + "Z": -590.08167 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1037646, + "Position": { + "X": -568.99365, + "Y": 9.817484, + "Z": -569.8787 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4677_Desires Untold.json b/QuestPaths/Endwalker/MSQ/J-6.3/4677_Desires Untold.json new file mode 100644 index 00000000..c86a52a2 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4677_Desires Untold.json @@ -0,0 +1,77 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1037646, + "Position": { + "X": -568.99365, + "Y": 9.817484, + "Z": -569.8787 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1041091, + "Position": { + "X": -89.89093, + "Y": 89.42026, + "Z": -616.14404 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1037697, + "Position": { + "X": -73.74689, + "Y": 99.94384, + "Z": -715.44977 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "TerritoryId": 1125, + "InteractionType": "Duty", + "ContentFinderConditionId": 886 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1044291, + "Position": { + "X": -40.024475, + "Y": 89.42017, + "Z": -636.86584 + }, + "TerritoryId": 957, + "InteractionType": "Interact", + "Comment": "Unsure if this is the right data id" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/J-6.3/4678_Gods Revel Lands Tremble.json b/QuestPaths/Endwalker/MSQ/J-6.3/4678_Gods Revel Lands Tremble.json new file mode 100644 index 00000000..f28d03f5 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/J-6.3/4678_Gods Revel Lands Tremble.json @@ -0,0 +1,55 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1044291, + "Position": { + "X": -40.024475, + "Y": 89.42017, + "Z": -636.86584 + }, + "TerritoryId": 957, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039649, + "Position": { + "X": -336.53772, + "Y": 55, + "Z": -69.47443 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4735_Currying Flavor.json b/QuestPaths/Endwalker/MSQ/K-6.4/4735_Currying Flavor.json new file mode 100644 index 00000000..43c8e26e --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4735_Currying Flavor.json @@ -0,0 +1,103 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1045392, + "Position": { + "X": -52.75049, + "Y": -1.5635975E-05, + "Z": -138.96393 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Meghaduta", + "[Radz-at-Han] Mehryde's Meyhane" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2013349, + "Position": { + "X": -53.87964, + "Y": 0.59503174, + "Z": -141.71057 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": -52.03956, + "Y": -5.209446E-05, + "Z": -140.01839 + }, + "TerritoryId": 963, + "InteractionType": "UseItem" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1045395, + "Position": { + "X": -21.713623, + "Y": 1.7999926, + "Z": -181.81128 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1043847, + "Position": { + "X": -350.24036, + "Y": 55, + "Z": -81.28485 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Mehryde's Meyhane", + "[Radz-at-Han] Meghaduta" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4736_Going Haam.json b/QuestPaths/Endwalker/MSQ/K-6.4/4736_Going Haam.json new file mode 100644 index 00000000..0d12835a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4736_Going Haam.json @@ -0,0 +1,157 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "TerritoryBlacklist": [ + 1126 + ], + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045397, + "Position": { + "X": 0.6560669, + "Y": 0.01927659, + "Z": 0.869751 + }, + "TerritoryId": 1161, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013358, + "Position": { + "X": -0.015319824, + "Y": 1.2359009, + "Z": 5.9662476 + }, + "TerritoryId": 1161, + "InteractionType": "Interact" + }, + { + "DataId": 1039602, + "Position": { + "X": 142.04614, + "Y": 4.783756, + "Z": -146.47144 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Meghaduta", + "[Radz-at-Han] Aetheryte Plaza" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1045401, + "Position": { + "X": -144.45721, + "Y": 28.05, + "Z": 219.1958 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Airship Landing" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1045407, + "Position": { + "X": -32.578064, + "Y": -29.530006, + "Z": -125.96332 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1045412, + "Position": { + "X": -6.57666, + "Y": -31.530346, + "Z": 54.276245 + }, + "TerritoryId": 956, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1045417, + "Position": { + "X": 135.9425, + "Y": -16.146997, + "Z": 236.22485 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 7, + "Steps": [ + { + "TerritoryId": 962, + "InteractionType": "Duty", + "ContentFinderConditionId": 822 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045420, + "Position": { + "X": 142.07666, + "Y": -16.147, + "Z": 235.70605 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4737_Like Fear to Flame.json b/QuestPaths/Endwalker/MSQ/K-6.4/4737_Like Fear to Flame.json new file mode 100644 index 00000000..5969b787 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4737_Like Fear to Flame.json @@ -0,0 +1,121 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045420, + "Position": { + "X": 142.07666, + "Y": -16.147, + "Z": 235.70605 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1040824, + "Position": { + "X": -334.4015, + "Y": 23.803606, + "Z": 404.9286 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1045425, + "Position": { + "X": 532.4635, + "Y": -36.65, + "Z": -191.48547 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1045490, + "Position": { + "X": 523.24695, + "Y": -36.65, + "Z": -156.02356 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + }, + { + "DataId": 1045491, + "Position": { + "X": 502.4032, + "Y": -36.65, + "Z": -178.27118 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + }, + { + "DataId": 1037774, + "Position": { + "X": 518.181, + "Y": -36.65, + "Z": -212.14618 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + }, + { + "DataId": 1045489, + "Position": { + "X": 549.2484, + "Y": -36.615707, + "Z": -213.18384 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + }, + { + "DataId": 1037766, + "Position": { + "X": 545.3115, + "Y": -36.616177, + "Z": -265.00348 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045430, + "Position": { + "X": 415.1521, + "Y": 15.558167, + "Z": -637.56775 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4738_The Fallen Empire.json b/QuestPaths/Endwalker/MSQ/K-6.4/4738_The Fallen Empire.json new file mode 100644 index 00000000..be4e80c0 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4738_The Fallen Empire.json @@ -0,0 +1,141 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045431, + "Position": { + "X": 413.4431, + "Y": 15.5581665, + "Z": -638.3002 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1045435, + "Position": { + "X": -366.29285, + "Y": 10.803238, + "Z": -620.08093 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1045769, + "Position": { + "X": 10.421875, + "Y": 2.9999998, + "Z": 65.2323 + }, + "TerritoryId": 1160, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2013351, + "Position": { + "X": 21.10321, + "Y": 3.8604736, + "Z": 67.063354 + }, + "TerritoryId": 1160, + "InteractionType": "Interact" + }, + { + "DataId": 1045493, + "Position": { + "X": -10.635559, + "Y": 3, + "Z": 42.435303 + }, + "TerritoryId": 1160, + "InteractionType": "Interact" + }, + { + "DataId": 2013350, + "Position": { + "X": 9.353699, + "Y": 3.5552979, + "Z": 26.382812 + }, + "TerritoryId": 1160, + "InteractionType": "Interact" + }, + { + "DataId": 1045492, + "Position": { + "X": 42.435303, + "Y": 3.1270661, + "Z": -9.353821 + }, + "TerritoryId": 1160, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1045439, + "Position": { + "X": 0.19836426, + "Y": 3, + "Z": -26.840637 + }, + "TerritoryId": 1160, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1040825, + "Position": { + "X": -333.27234, + "Y": 23.803606, + "Z": 406.05774 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045441, + "Position": { + "X": 507.43872, + "Y": -36.65, + "Z": -202.99078 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4739_Bonds of Trust.json b/QuestPaths/Endwalker/MSQ/K-6.4/4739_Bonds of Trust.json new file mode 100644 index 00000000..38097802 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4739_Bonds of Trust.json @@ -0,0 +1,68 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045445, + "Position": { + "X": 508.5984, + "Y": -36.65, + "Z": -206.74457 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -80.826256, + "Y": 10.8, + "Z": -663.8825 + }, + "TerritoryId": 958, + "InteractionType": "Combat", + "KillEnemyDataIds": [ + 16332 + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1045450, + "Position": { + "X": -80.73547, + "Y": 10.8, + "Z": -659.75433 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045452, + "Position": { + "X": 283.8025, + "Y": 10.8, + "Z": -231.61676 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4740_Lunar Rendezvous.json b/QuestPaths/Endwalker/MSQ/K-6.4/4740_Lunar Rendezvous.json new file mode 100644 index 00000000..d11cf33b --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4740_Lunar Rendezvous.json @@ -0,0 +1,145 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045448, + "Position": { + "X": 510.1244, + "Y": -36.65, + "Z": -204.97449 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1045456, + "Position": { + "X": -541.9242, + "Y": 128.67758, + "Z": 585.1072 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1045458, + "Position": { + "X": -197.49762, + "Y": 58.194954, + "Z": 407.27856 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1039686, + "Position": { + "X": -17.95996, + "Y": -47.192066, + "Z": -494.31604 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2013353, + "Position": { + "X": 164.23279, + "Y": -49.607117, + "Z": -620.3861 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1045471, + "Position": { + "X": 158.61743, + "Y": -49.589592, + "Z": -626.42865 + }, + "TerritoryId": 959, + "InteractionType": "Emote", + "Emote": "rally" + }, + { + "DataId": 1045470, + "Position": { + "X": 154.7417, + "Y": -49.589596, + "Z": -622.3087 + }, + "TerritoryId": 959, + "InteractionType": "Emote", + "Emote": "rally" + }, + { + "DataId": 1045473, + "Position": { + "X": 152.42236, + "Y": -49.589592, + "Z": -614.8623 + }, + "TerritoryId": 959, + "InteractionType": "Emote", + "Emote": "rally" + }, + { + "DataId": 1045472, + "Position": { + "X": 148.91272, + "Y": -49.589596, + "Z": -621.48474 + }, + "TerritoryId": 959, + "InteractionType": "Emote", + "Emote": "rally" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045474, + "Position": { + "X": 158.46484, + "Y": -49.589592, + "Z": -619.9894 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4741_The Red Side of the Moon.json b/QuestPaths/Endwalker/MSQ/K-6.4/4741_The Red Side of the Moon.json new file mode 100644 index 00000000..0c009695 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4741_The Red Side of the Moon.json @@ -0,0 +1,83 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "DataId": 1045611, + "Position": { + "X": 160.87585, + "Y": -49.589592, + "Z": -618.46344 + }, + "TerritoryId": 959, + "InteractionType": "Interact", + "Comment": "Unsure if correct id" + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1045919, + "Position": { + "X": -200.45782, + "Y": 59.021378, + "Z": 418.69226 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2013354, + "Position": { + "X": -2.7314453, + "Y": 73.8689, + "Z": 638.0254 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + }, + { + "DataId": 2013355, + "Position": { + "X": -44.87683, + "Y": 66.57507, + "Z": 547.6615 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + }, + { + "DataId": 2013356, + "Position": { + "X": 69.29114, + "Y": 56.71765, + "Z": 472.19043 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045479, + "Position": { + "X": 4.043579, + "Y": 58.561604, + "Z": 424.97888 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4742_Abyssal Dark.json b/QuestPaths/Endwalker/MSQ/K-6.4/4742_Abyssal Dark.json new file mode 100644 index 00000000..b43e4031 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4742_Abyssal Dark.json @@ -0,0 +1,61 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045482, + "Position": { + "X": 17.135864, + "Y": 56.573345, + "Z": 436.0265 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013357, + "Position": { + "X": 97.520386, + "Y": 74.08252, + "Z": 607.90405 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "TerritoryId": 1159, + "InteractionType": "Duty", + "ContentFinderConditionId": 949 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045757, + "Position": { + "X": -136.03424, + "Y": 54.608093, + "Z": 427.60352 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/K-6.4/4743_The Dark Throne.json b/QuestPaths/Endwalker/MSQ/K-6.4/4743_The Dark Throne.json new file mode 100644 index 00000000..c07ccc87 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/K-6.4/4743_The Dark Throne.json @@ -0,0 +1,70 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045758, + "Position": { + "X": -135.85114, + "Y": 54.977272, + "Z": 432.02856 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1045466, + "Position": { + "X": -20.126648, + "Y": -47.54357, + "Z": -491.99664 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1039649, + "Position": { + "X": -336.53772, + "Y": 55, + "Z": -69.47443 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/L-6.5/4744_Seeking the Light.json b/QuestPaths/Endwalker/MSQ/L-6.5/4744_Seeking the Light.json new file mode 100644 index 00000000..1a6c04a2 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/L-6.5/4744_Seeking the Light.json @@ -0,0 +1,85 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1039607, + "Position": { + "X": -342.58032, + "Y": 55, + "Z": -68.61987 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1033908, + "Position": { + "X": -63.61493, + "Y": -17.722, + "Z": -264.75934 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Cabinet of Curiosity" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1045690, + "Position": { + "X": -168.9021, + "Y": -45.720856, + "Z": -167.83398 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045628, + "Position": { + "X": 24.2771, + "Y": 0, + "Z": 1.083313 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/L-6.5/4745_Appealing the Masses.json b/QuestPaths/Endwalker/MSQ/L-6.5/4745_Appealing the Masses.json new file mode 100644 index 00000000..a307df34 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/L-6.5/4745_Appealing the Masses.json @@ -0,0 +1,128 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033887, + "Position": { + "X": 24.2771, + "Y": -5.234193E-13, + "Z": -0.7477417 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1045636, + "Position": { + "X": 27.939209, + "Y": 82.05, + "Z": -8.255188 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1045639, + "Position": { + "X": 21.957703, + "Y": 82.05, + "Z": 18.478638 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1045635, + "Position": { + "X": 39.261353, + "Y": 83.001076, + "Z": -61.387024 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + }, + { + "DataId": 1045633, + "Position": { + "X": 14.755432, + "Y": 23.099987, + "Z": 11.520508 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Eulmore] Aetheryte Plaza", + "[Eulmore] The Mainstay" + ] + }, + { + "DataId": 1045634, + "Position": { + "X": -93.40051, + "Y": -0.82003593, + "Z": 28.54956 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Eulmore] The Mainstay", + "[Eulmore] Nightsoil Pots" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1045636, + "Position": { + "X": 27.939209, + "Y": 82.05, + "Z": -8.255188 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Eulmore] Nightsoil Pots", + "[Eulmore] Aetheryte Plaza" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045631, + "Position": { + "X": 29.709229, + "Y": 82.05, + "Z": -5.661133 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/L-6.5/4746_In Defiance of Fate.json b/QuestPaths/Endwalker/MSQ/L-6.5/4746_In Defiance of Fate.json new file mode 100644 index 00000000..88414169 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/L-6.5/4746_In Defiance of Fate.json @@ -0,0 +1,112 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045631, + "Position": { + "X": 29.709229, + "Y": 82.05, + "Z": -5.661133 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1029197, + "Position": { + "X": -87.87671, + "Y": -19.022131, + "Z": 298.20703 + }, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1029197, + "Position": { + "X": -87.87671, + "Y": -19.022131, + "Z": 298.20703 + }, + "TerritoryId": 817, + "InteractionType": "Say", + "ChatMessage": "allin tuta" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1027754, + "Position": { + "X": -108.20172, + "Y": -19.684433, + "Z": 380.2395 + }, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1045642, + "Position": { + "X": -90.28766, + "Y": -19.118582, + "Z": 298.02393 + }, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1045647, + "Position": { + "X": -488.88385, + "Y": 45.58085, + "Z": -224.5976 + }, + "TerritoryId": 815, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045648, + "Position": { + "X": -205.95105, + "Y": -3.1999996, + "Z": -9.597961 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/L-6.5/4747_Back to Action.json b/QuestPaths/Endwalker/MSQ/L-6.5/4747_Back to Action.json new file mode 100644 index 00000000..720f488c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/L-6.5/4747_Back to Action.json @@ -0,0 +1,99 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045649, + "Position": { + "X": -205.95105, + "Y": -3.1999998, + "Z": -11.490112 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1033863, + "Position": { + "X": 118.02844, + "Y": 14.649026, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Dossal Gate" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1033888, + "Position": { + "X": 1.3580322, + "Y": 0, + "Z": -5.081299 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + }, + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1045652, + "Position": { + "X": -109.91083, + "Y": 52.705315, + "Z": 401.26636 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045658, + "Position": { + "X": 40.634766, + "Y": 56.721893, + "Z": 465.7815 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/L-6.5/4748_Down in the Dark.json b/QuestPaths/Endwalker/MSQ/L-6.5/4748_Down in the Dark.json new file mode 100644 index 00000000..6fd4500a --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/L-6.5/4748_Down in the Dark.json @@ -0,0 +1,71 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045662, + "Position": { + "X": 32.913696, + "Y": 56.682667, + "Z": 468.162 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "TerritoryId": 1162, + "InteractionType": "Duty", + "ContentFinderConditionId": 823 + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1045667, + "Position": { + "X": -374.19702, + "Y": -567.3385, + "Z": -440.63483 + }, + "TerritoryId": 1184, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "TerritoryId": 1181, + "InteractionType": "Duty", + "ContentFinderConditionId": 964 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045671, + "Position": { + "X": 27.237305, + "Y": 56.635868, + "Z": 480.3081 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/L-6.5/4749_Reunited at Last.json b/QuestPaths/Endwalker/MSQ/L-6.5/4749_Reunited at Last.json new file mode 100644 index 00000000..2e891614 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/L-6.5/4749_Reunited at Last.json @@ -0,0 +1,70 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045674, + "Position": { + "X": 45.853394, + "Y": 56.66061, + "Z": 467.39905 + }, + "TerritoryId": 1162, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1045676, + "Position": { + "X": -130.99878, + "Y": 54.110245, + "Z": 424.73486 + }, + "TerritoryId": 959, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1042201, + "Position": { + "X": 536.2782, + "Y": -36.65, + "Z": -191.51605 + }, + "TerritoryId": 958, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1037106, + "Position": { + "X": 4.0131226, + "Y": 41.530136, + "Z": -164.41602 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Rostra" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/L-6.5/4750_Growing Light.json b/QuestPaths/Endwalker/MSQ/L-6.5/4750_Growing Light.json new file mode 100644 index 00000000..2ca6af02 --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/L-6.5/4750_Growing Light.json @@ -0,0 +1,108 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045681, + "Position": { + "X": 5.8136597, + "Y": 41.530136, + "Z": -165.27051 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1030533, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Dossal Gate" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1045684, + "Position": { + "X": -0.96136475, + "Y": 0, + "Z": -3.3417358 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1039649, + "Position": { + "X": -336.53772, + "Y": 55, + "Z": -69.47443 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta" + ] + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1045688, + "Position": { + "X": -2.456726, + "Y": 3.0299988, + "Z": -212.84814 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 196, + "Position": { + "X": -42.61847, + "Y": -0.015319824, + "Z": -197.61963 + }, + "TerritoryId": 963, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Radz-at-Han] Mehryde's Meyhane", + "[Radz-at-Han] Aetheryte Plaza" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/M-6.55/4751_When One Door Closes.json b/QuestPaths/Endwalker/MSQ/M-6.55/4751_When One Door Closes.json new file mode 100644 index 00000000..93d122de --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/M-6.55/4751_When One Door Closes.json @@ -0,0 +1,59 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1039645, + "Position": { + "X": -338.33832, + "Y": 55, + "Z": -68.40625 + }, + "TerritoryId": 963, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045691, + "Position": { + "X": -257.0993, + "Y": 19.165915, + "Z": -44.327515 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Baldesion Annex", + "[Old Sharlayan] The Studium" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/M-6.55/4752_The Game Is Afoot.json b/QuestPaths/Endwalker/MSQ/M-6.55/4752_The Game Is Afoot.json new file mode 100644 index 00000000..0e40c9db --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/M-6.55/4752_The Game Is Afoot.json @@ -0,0 +1,86 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045692, + "Position": { + "X": -256.67206, + "Y": 19.26994, + "Z": -46.28064 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1045695, + "Position": { + "X": 135.57642, + "Y": -16.147, + "Z": 243.42712 + }, + "TerritoryId": 962, + "InteractionType": "SinglePlayerDuty", + "Comment": "The Game Is Afoot", + "AethernetShortcut": [ + "[Old Sharlayan] The Studium", + "[Old Sharlayan] Scholar's Harbor" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1045696, + "Position": { + "X": 135.729, + "Y": -16.146997, + "Z": 241.50452 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1037077, + "Position": { + "X": -38.07129, + "Y": -14.169313, + "Z": 105.30249 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1045699, + "Position": { + "X": -60.41046, + "Y": -15.127002, + "Z": 139.42163 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Endwalker/MSQ/M-6.55/4753_The Coming Dawn.json b/QuestPaths/Endwalker/MSQ/M-6.55/4753_The Coming Dawn.json new file mode 100644 index 00000000..9c8d733c --- /dev/null +++ b/QuestPaths/Endwalker/MSQ/M-6.55/4753_The Coming Dawn.json @@ -0,0 +1,159 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1045700, + "Position": { + "X": -58.54895, + "Y": -15.127001, + "Z": 139.45215 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2013419, + "Position": { + "X": -308.49164, + "Y": 20.248657, + "Z": 48.142212 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] Scholar's Harbor", + "[Old Sharlayan] The Studium" + ] + }, + { + "DataId": 2013418, + "Position": { + "X": -396.23108, + "Y": 20.2182, + "Z": 103.28821 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + }, + { + "DataId": 2013417, + "Position": { + "X": -404.25726, + "Y": 20.248657, + "Z": 59.00659 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + }, + { + "DataId": 2013416, + "Position": { + "X": -358.38867, + "Y": 20.309753, + "Z": 20.523315 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1045701, + "Position": { + "X": -343.8316, + "Y": 18.999998, + "Z": 15.152161 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1045702, + "Position": { + "X": -131.15137, + "Y": 5.64997, + "Z": 44.663086 + }, + "TerritoryId": 962, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Old Sharlayan] The Studium", + "[Old Sharlayan] The Baldesion Annex" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2011936, + "Position": { + "X": -108.5617, + "Y": 5.0504, + "Z": 4.55803 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + }, + { + "DataId": 2013420, + "Position": { + "X": -0.10687256, + "Y": -0.015319824, + "Z": -7.614319 + }, + "TerritoryId": 987, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1038588, + "Position": { + "X": -101.76245, + "Y": 4.357494, + "Z": 0.7476196 + }, + "TerritoryId": 962, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/QuestPaths.csproj b/QuestPaths/QuestPaths.csproj new file mode 100644 index 00000000..0520512d --- /dev/null +++ b/QuestPaths/QuestPaths.csproj @@ -0,0 +1,29 @@ + + + net8.0-windows + 12 + enable + Questionable.QuestPaths + true + true + none + $(SolutionDir)=X:\ + + + + + + + + + + + + + + + diff --git a/QuestPaths/Shadowbringers/MSQ/F-Tempest/3654_Shadowbringers.json b/QuestPaths/Shadowbringers/MSQ/F-Tempest/3654_Shadowbringers.json new file mode 100644 index 00000000..9deff6a9 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/F-Tempest/3654_Shadowbringers.json @@ -0,0 +1,68 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Comment": "TODO Missing Quest Start", + "QuestSequence": [ + { + "Sequence": 7, + "Steps": [ + { + "TerritoryId": 818, + "InteractionType": "Duty", + "ContentFinderConditionId": 652 + } + ] + }, + { + "Sequence": 9, + "Steps": [ + { + "TerritoryId": 881, + "InteractionType": "Duty", + "ContentFinderConditionId": 687 + } + ] + }, + { + "Sequence": 11, + "Steps": [ + { + "DataId": 1030576, + "Position": { + "X": -0.015319824, + "Y": -1.0530548E-13, + "Z": -6.0273438 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2002881, + "Position": { + "X": 21.133728, + "Y": 22.323914, + "Z": -631.281 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "AetheryteShortcut": "Mor Dhona" + }, + { + "DataId": 1031257, + "Position": { + "X": -2.4262085, + "Y": 0, + "Z": -9.10968 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3673_Shaken Resolve.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3673_Shaken Resolve.json new file mode 100644 index 00000000..3181b209 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3673_Shaken Resolve.json @@ -0,0 +1,121 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031257, + "Position": { + "X": -2.4262085, + "Y": 0, + "Z": -9.10968 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2002879, + "Position": { + "X": 0, + "Y": 3, + "Z": 27.5 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + }, + { + "Position": { + "X": 30.917934, + "Y": 20.495003, + "Z": -656.1909 + }, + "TerritoryId": 156, + "InteractionType": "WalkTo" + }, + { + "DataId": 1018433, + "Position": { + "X": 50.766724, + "Y": 50, + "Z": -772.3964 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": 30.917934, + "Y": 20.495003, + "Z": -656.1909 + }, + "TerritoryId": 156, + "InteractionType": "WalkTo", + "Fly": true + }, + { + "DataId": 2002881, + "Position": { + "X": 21.133728, + "Y": 22.323914, + "Z": -631.281 + }, + "TerritoryId": 156, + "InteractionType": "Interact" + }, + { + "DataId": 1032081, + "Position": { + "X": -2.4262085, + "Y": 0, + "Z": -9.10968 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1027230, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Dossal Gate" + ] + }, + { + "DataId": 1032121, + "Position": { + "X": 0.045776367, + "Y": -5.996435E-14, + "Z": -5.5390625 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3674_A Grand Adventure.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3674_A Grand Adventure.json new file mode 100644 index 00000000..b6a47fc7 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3674_A Grand Adventure.json @@ -0,0 +1,73 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032121, + "Position": { + "X": 0.045776367, + "Y": -5.996435E-14, + "Z": -5.5390625 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -115.65658, + "Y": -0.67464465, + "Z": 653.1527 + }, + "TerritoryId": 813, + "InteractionType": "WalkTo", + "AetheryteShortcut": "Lakeland - Fort Jobb", + "Fly": true + }, + { + "DataId": 1031726, + "Position": { + "X": -116.80786, + "Y": -0.6811354, + "Z": 651.026 + }, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "TerritoryId": 813, + "InteractionType": "Duty", + "ContentFinderConditionId": 692 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1032451, + "Position": { + "X": -113.359314, + "Y": -0.6671539, + "Z": 656.79407 + }, + "StopDistance": 5, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3675_A Welcome Guest.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3675_A Welcome Guest.json new file mode 100644 index 00000000..7a3fa514 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3675_A Welcome Guest.json @@ -0,0 +1,128 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032451, + "Position": { + "X": -113.359314, + "Y": -0.6671539, + "Z": 656.79407 + }, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1027230, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Dossal Gate" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1032122, + "Position": { + "X": 2.1820068, + "Y": 0, + "Z": -5.142395 + }, + "StopDistance": 7, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1031732, + "Position": { + "X": 366.68945, + "Y": -27.966003, + "Z": 305.19568 + }, + "TerritoryId": 815, + "InteractionType": "Interact", + "AetheryteShortcut": "Amh Araeng - Inn at Journey's Head" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1027910, + "Position": { + "X": 356.71008, + "Y": -27.8172, + "Z": 310.04797 + }, + "TerritoryId": 815, + "InteractionType": "UseItem", + "ItemId": 2002904, + "$.1": "QuestVariables if done first: 1 32 0 0 0 64" + }, + { + "DataId": 1027909, + "Position": { + "X": 357.47314, + "Y": -27.145874, + "Z": 317.28076 + }, + "TerritoryId": 815, + "InteractionType": "UseItem", + "ItemId": 2002904, + "$.1": "QuestVariables if done after [1]: 2 16 0 0 0 96" + }, + { + "DataId": 1027939, + "Position": { + "X": 415.854, + "Y": -28.357805, + "Z": 335.4391 + }, + "TerritoryId": 815, + "InteractionType": "UseItem", + "ItemId": 2002904 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031732, + "Position": { + "X": 366.68945, + "Y": -27.966003, + "Z": 305.19568 + }, + "TerritoryId": 815, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3676_Good for the Soul.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3676_Good for the Soul.json new file mode 100644 index 00000000..89b81b1d --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3676_Good for the Soul.json @@ -0,0 +1,123 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031732, + "Position": { + "X": 366.68945, + "Y": -27.966003, + "Z": 305.19568 + }, + "TerritoryId": 815, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1031732, + "Position": { + "X": 366.68945, + "Y": -27.966003, + "Z": 305.19568 + }, + "TerritoryId": 815, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1031792, + "Position": { + "X": -483.7873, + "Y": 45.58319, + "Z": -235.46198 + }, + "TerritoryId": 815, + "InteractionType": "Interact", + "AetheryteShortcut": "Amh Araeng - Twine" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2010811, + "Position": { + "X": -16.922302, + "Y": 42.282715, + "Z": -470.48145 + }, + "StopDistance": 1, + "TerritoryId": 815, + "InteractionType": "Interact", + "$.1": "QuestVariables if done first: 16 16 16 0 0 32" + }, + { + "DataId": 2010810, + "Position": { + "X": 8.682312, + "Y": 42.130127, + "Z": -471.9463 + }, + "TerritoryId": 815, + "InteractionType": "Interact", + "$.1": "QuestVariables if done after [1]: 33 16 32 0 0 96" + }, + { + "DataId": 2010809, + "Position": { + "X": 19.760376, + "Y": 42.130127, + "Z": -463.3402 + }, + "TerritoryId": 815, + "InteractionType": "Interact", + "Comment": "Combat not necessary to progress quest" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1031732, + "Position": { + "X": 366.68945, + "Y": -27.966003, + "Z": 305.19568 + }, + "TerritoryId": 815, + "InteractionType": "Interact", + "AetheryteShortcut": "Amh Araeng - Inn at Journey's Head" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031734, + "Position": { + "X": 364.58374, + "Y": -27.966003, + "Z": 304.12744 + }, + "StopDistance": 6, + "TerritoryId": 815, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3677_Nowhere to Turn.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3677_Nowhere to Turn.json new file mode 100644 index 00000000..365d00bd --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3677_Nowhere to Turn.json @@ -0,0 +1,53 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031736, + "Position": { + "X": 368.1848, + "Y": -27.966003, + "Z": 302.3269 + }, + "StopDistance": 5, + "TerritoryId": 815, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1031737, + "Position": { + "X": 20.950623, + "Y": 82.05, + "Z": 17.837708 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "AetheryteShortcut": "Eulmore" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031739, + "Position": { + "X": -19.36377, + "Y": 82.83509, + "Z": -50.55316 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3678_A Notable Absence.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3678_A Notable Absence.json new file mode 100644 index 00000000..02b98cb5 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3678_A Notable Absence.json @@ -0,0 +1,81 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031742, + "Position": { + "X": -18.60083, + "Y": 82.84981, + "Z": -48.29486 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1027544, + "Position": { + "X": 12.985352, + "Y": 82.05, + "Z": -25.223206 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "$.1": "QuestValues if done first: 16 1 16 0 0 128" + }, + { + "DataId": 1027602, + "Position": { + "X": 74.35718, + "Y": -10.320814, + "Z": 4.8981323 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Eulmore] Aetheryte Plaza", + "[Eulmore] Southeast Derelicts" + ], + "$.1": "QuestValues if done after [1]: 32 17 16 16 0 160" + }, + { + "DataId": 1029990, + "Position": { + "X": 11.36792, + "Y": 5.999995, + "Z": -38.651123 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Eulmore] Southeast Derelicts", + "[Eulmore] The Glory Gate" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031746, + "Position": { + "X": -4.043701, + "Y": -5.091193, + "Z": -98.19183 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3679_For the People.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3679_For the People.json new file mode 100644 index 00000000..ddde6de6 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3679_For the People.json @@ -0,0 +1,115 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031746, + "Position": { + "X": -4.043701, + "Y": -5.091193, + "Z": -98.19183 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1027306, + "Position": { + "X": -294.94165, + "Y": 18.10139, + "Z": 403.5553 + }, + "TerritoryId": 814, + "InteractionType": "Interact", + "AetheryteShortcut": "Kholusia - Wright" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1031751, + "Position": { + "X": -468.77246, + "Y": 334.0526, + "Z": -35.05005 + }, + "TerritoryId": 814, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1031753, + "Position": { + "X": -159.19745, + "Y": 352.35825, + "Z": -212.51245 + }, + "TerritoryId": 814, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1027462, + "Position": { + "X": -121.87384, + "Y": 352.35822, + "Z": -191.08875 + }, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1031748, + "Position": { + "X": -61.417603, + "Y": 378.34897, + "Z": -454.03223 + }, + "TerritoryId": 814, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031760, + "Position": { + "X": -60.04431, + "Y": 377.92743, + "Z": -451.6518 + }, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3680_Finding Good Help.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3680_Finding Good Help.json new file mode 100644 index 00000000..5897ea95 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3680_Finding Good Help.json @@ -0,0 +1,85 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031760, + "Position": { + "X": -60.04431, + "Y": 377.92743, + "Z": -451.6518 + }, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1031761, + "Position": { + "X": -423.78882, + "Y": 334.0526, + "Z": -26.199768 + }, + "TerritoryId": 814, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2010813, + "Position": { + "X": -421.71362, + "Y": 339.62, + "Z": -161.45575 + }, + "TerritoryId": 814, + "InteractionType": "SinglePlayerDuty", + "Comment": "Help Master Chai dodge enemies" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1031765, + "Position": { + "X": -418.90594, + "Y": 339.968, + "Z": -162.03558 + }, + "StopDistance": 7, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031769, + "Position": { + "X": 168.5968, + "Y": 39.939266, + "Z": 585.90063 + }, + "StopDistance": 7, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3681_Moving Forward.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3681_Moving Forward.json new file mode 100644 index 00000000..00241208 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3681_Moving Forward.json @@ -0,0 +1,68 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031770, + "Position": { + "X": 170.4585, + "Y": 39.973778, + "Z": 586.1753 + }, + "StopDistance": 7, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1027549, + "Position": { + "X": 2.029419, + "Y": 83.195244, + "Z": 57.846924 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "AetheryteShortcut": "Eulmore" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1031777, + "Position": { + "X": 25.864014, + "Y": 82.78213, + "Z": 24.734863 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031781, + "Position": { + "X": 24.246582, + "Y": 82.78206, + "Z": 25.77246 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/G-5.1/3682_Vows of Virtue, Deeds of Cruelty.json b/QuestPaths/Shadowbringers/MSQ/G-5.1/3682_Vows of Virtue, Deeds of Cruelty.json new file mode 100644 index 00000000..a04c528b --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/G-5.1/3682_Vows of Virtue, Deeds of Cruelty.json @@ -0,0 +1,94 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031777, + "Position": { + "X": 25.864014, + "Y": 82.78213, + "Z": 24.734863 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1027230, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Dossal Gate" + ] + }, + { + "DataId": 1032121, + "Position": { + "X": 0.045776367, + "Y": -5.996435E-14, + "Z": -5.5390625 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2002881, + "Position": { + "X": 21.133728, + "Y": 22.323914, + "Z": -631.281 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "AetheryteShortcut": "Mor Dhona" + }, + { + "DataId": 1032081, + "Position": { + "X": -2.4262085, + "Y": 0, + "Z": -9.10968 + }, + "TerritoryId": 351, + "InteractionType": "SinglePlayerDuty", + "Comment": "Estinien vs. Arch Ultima" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1032081, + "Position": { + "X": -2.4262085, + "Y": 0, + "Z": -9.10968 + }, + "StopDistance": 5, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3761_Old Enemies, New Threats.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3761_Old Enemies, New Threats.json new file mode 100644 index 00000000..c77978b6 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3761_Old Enemies, New Threats.json @@ -0,0 +1,54 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031783, + "Position": { + "X": -3.03656, + "Y": 0.01804012, + "Z": -8.1026 + }, + "StopDistance": 5, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1032495, + "Position": { + "X": 737.63635, + "Y": 70, + "Z": 515.0072 + }, + "TerritoryId": 621, + "InteractionType": "Interact", + "AetheryteShortcut": "Lochs - Ala Mhigan Quarter", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1032494, + "Position": { + "X": 739.6504, + "Y": 70, + "Z": 514.21375 + }, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3762_The Way Home.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3762_The Way Home.json new file mode 100644 index 00000000..e60b9f08 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3762_The Way Home.json @@ -0,0 +1,51 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032494, + "Position": { + "X": 739.6504, + "Y": 70, + "Z": 514.21375 + }, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1027230, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Dossal Gate" + ] + }, + { + "DataId": 1032121, + "Position": { + "X": 0.045776367, + "Y": -5.996435E-14, + "Z": -5.5390625 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3763_Seeking Council.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3763_Seeking Council.json new file mode 100644 index 00000000..cee81551 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3763_Seeking Council.json @@ -0,0 +1,93 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031722, + "Position": { + "X": -1.7853394, + "Y": 0, + "Z": -1.8158569 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2009758, + "Position": { + "X": -0.009940993, + "Y": 1.036532, + "Z": 14.22064 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + }, + { + "DataId": 1030370, + "Position": { + "X": 66.84973, + "Y": -2.9802322E-07, + "Z": 13.321045 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1032648, + "Position": { + "X": 768.6426, + "Y": 21.38111, + "Z": -8.46875 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "AetheryteShortcut": "Lakeland - Fort Jobb" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1032498, + "Position": { + "X": 628.6869, + "Y": 94.385544, + "Z": -645.9297 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1032502, + "Position": { + "X": 629.0836, + "Y": 94.39156, + "Z": -644.98364 + }, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3764_Facing the Truth.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3764_Facing the Truth.json new file mode 100644 index 00000000..166a609d --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3764_Facing the Truth.json @@ -0,0 +1,154 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032502, + "Position": { + "X": 629.0836, + "Y": 94.39156, + "Z": -644.98364 + }, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1027230, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Dossal Gate" + ] + }, + { + "DataId": 1031722, + "Position": { + "X": -1.7853394, + "Y": 0, + "Z": -1.8158569 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2009758, + "Position": { + "X": -0.015319824, + "Y": 1.0223389, + "Z": 14.206055 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + }, + { + "DataId": 1027248, + "Position": { + "X": -30.807983, + "Y": -0.64999914, + "Z": -51.438232 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "Comment": "Chessamile", + "$.0": "[1]", + "$.1": "QuestVariables if done first: 1 0 0 0 0 64" + }, + { + "DataId": 1027224, + "Position": { + "X": -57.358704, + "Y": -7.4820004, + "Z": 118.08948 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "Comment": "Bragi", + "$.0": "[2]", + "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 192" + }, + { + "DataId": 1027322, + "Position": { + "X": -20.126648, + "Y": 3.9998171, + "Z": 204.24194 + }, + "StopDistance": 4, + "TerritoryId": 819, + "InteractionType": "Interact", + "Comment": "Glynard", + "$.0": "[3]", + "$.1": "QuestVariables if done after [1, 2]: 3 0 0 0 0 200" + }, + { + "DataId": 1027232, + "Position": { + "X": -9.323303, + "Y": 20.1973, + "Z": -136.52252 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "Comment": "Katliss", + "AethernetShortcut": [ + "[Crystarium] The Pendants", + "[Crystarium] The Crystalline Mean" + ], + "$.0": "[4]", + "$.1": "QuestVariables if done after [1, 2, 3]: 4 0 0 0 0 216" + }, + { + "DataId": 1027226, + "Position": { + "X": -61.84485, + "Y": -17.72202, + "Z": -266.2547 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "Comment": "Moren", + "AethernetShortcut": [ + "[Crystarium] The Crystalline Mean", + "[Crystarium] The Cabinet of Curiosity" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1032503, + "Position": { + "X": 29.709229, + "Y": -6.088685E-13, + "Z": -0.869812 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3765_A Sleep Disturbed.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3765_A Sleep Disturbed.json new file mode 100644 index 00000000..a97b039a --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3765_A Sleep Disturbed.json @@ -0,0 +1,71 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032121, + "Position": { + "X": 0.045776367, + "Y": -5.996435E-14, + "Z": -5.5390625 + }, + "StopDistance": 7, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1032506, + "Position": { + "X": 453.05554, + "Y": 33.66181, + "Z": -156.9696 + }, + "TerritoryId": 817, + "InteractionType": "Interact", + "AetheryteShortcut": "Rak'tika - Fanow" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1032509, + "Position": { + "X": 843.25916, + "Y": -65.313614, + "Z": -387.10614 + }, + "TerritoryId": 817, + "InteractionType": "SinglePlayerDuty", + "Fly": true, + "Comment": "Duty - A Sleep Disturbed (Opo-Opo, Wolf, Serpent)" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1032506, + "Position": { + "X": 453.05554, + "Y": 33.66181, + "Z": -156.9696 + }, + "StopDistance": 5, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3766_An Old Friend.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3766_An Old Friend.json new file mode 100644 index 00000000..878fb82a --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3766_An Old Friend.json @@ -0,0 +1,84 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1029234, + "Position": { + "X": 449.0271, + "Y": 33.66181, + "Z": -157.94617 + }, + "StopDistance": 5, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1032263, + "Position": { + "X": -87.87671, + "Y": -19.022131, + "Z": 298.20703 + }, + "TerritoryId": 817, + "InteractionType": "Interact", + "AetheryteShortcut": "Rak'tika - Slitherbough" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1027750, + "Position": { + "X": -24.734924, + "Y": -25.324257, + "Z": 305.5924 + }, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1032513, + "Position": { + "X": -37.06427, + "Y": -18.91939, + "Z": 334.21826 + }, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1032515, + "Position": { + "X": -642.2064, + "Y": 3.1136527, + "Z": 16.861145 + }, + "TerritoryId": 817, + "InteractionType": "Interact", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3767_Deep Designs.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3767_Deep Designs.json new file mode 100644 index 00000000..0cef105f --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3767_Deep Designs.json @@ -0,0 +1,78 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032518, + "Position": { + "X": -641.8402, + "Y": 3.1716232, + "Z": 19.69934 + }, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1027757, + "Position": { + "X": 609.7047, + "Y": 350.3518, + "Z": -197.95532 + }, + "TerritoryId": 818, + "InteractionType": "Interact", + "AetheryteShortcut": "Tempest - Ondo Cups" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": -423.6145, + "Y": 393.0597, + "Z": -823.20044 + }, + "TerritoryId": 818, + "InteractionType": "WalkTo", + "Fly": true + }, + { + "DataId": 2010814, + "Position": { + "X": -422.47656, + "Y": 393.9115, + "Z": -824.094 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1027757, + "Position": { + "X": 609.7047, + "Y": 350.3518, + "Z": -197.95532 + }, + "TerritoryId": 818, + "InteractionType": "Interact", + "AetheryteShortcut": "Tempest - Ondo Cups" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3768_A Whale's Tale.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3768_A Whale's Tale.json new file mode 100644 index 00000000..e58e654e --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3768_A Whale's Tale.json @@ -0,0 +1,184 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032526, + "Position": { + "X": 606.1035, + "Y": 350.3518, + "Z": -200 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -269.44116, + "Y": -0.82486916, + "Z": 724.67255 + }, + "TerritoryId": 813, + "InteractionType": "WalkTo", + "AetheryteShortcut": "Lakeland - Ostall Imperative", + "Fly": true + }, + { + "DataId": 1032528, + "Position": { + "X": -270.98505, + "Y": -0.82573783, + "Z": 723.96423 + }, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1030333, + "Position": { + "X": -612.23773, + "Y": 27.728632, + "Z": 817.65466 + }, + "StopDistance": 5, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "Position": { + "X": -591.3982, + "Y": 26.347507, + "Z": 773.5695 + }, + "TerritoryId": 813, + "InteractionType": "WalkTo", + "Mount": true, + "Fly": true, + "DisableNavmesh": true + }, + { + "Position": { + "X": -610.2863, + "Y": -2.1544409, + "Z": 734.7734 + }, + "TerritoryId": 813, + "InteractionType": "WalkTo", + "Fly": true, + "DisableNavmesh": true + }, + { + "DataId": 2010280, + "Position": { + "X": -630.4265, + "Y": -29.862, + "Z": 752.5597 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "DisableNavmesh": true, + "$.1": "QuestVariables if done first: 1 0 0 0 0 64" + }, + { + "DataId": 2010278, + "Position": { + "X": -655.5123, + "Y": -40.299072, + "Z": 743.22107 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "DisableNavmesh": true + }, + { + "DataId": 2010282, + "Position": { + "X": -663.14185, + "Y": -25.711487, + "Z": 738.82654 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": -643.2488, + "Y": 4.133975, + "Z": 714.8211 + }, + "TerritoryId": 813, + "InteractionType": "WalkTo", + "Mount": true, + "Fly": true, + "DisableNavmesh": true + }, + { + "DataId": 1030333, + "Position": { + "X": -612.23773, + "Y": 27.728632, + "Z": 817.65466 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1032531, + "Position": { + "X": -130.90723, + "Y": 9.572956, + "Z": 697.68823 + }, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1032554, + "Position": { + "X": 237.72021, + "Y": 5.6935816, + "Z": 552.1781 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3769_Beneath the Surface.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3769_Beneath the Surface.json new file mode 100644 index 00000000..0f4dc39b --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3769_Beneath the Surface.json @@ -0,0 +1,48 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Comment": "TODO Missing quest end", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032555, + "Position": { + "X": 235.40088, + "Y": 5.733457, + "Z": 552.3612 + }, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1032539, + "Position": { + "X": -534.1726, + "Y": 63.559536, + "Z": 735.1339 + }, + "TerritoryId": 814, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "TerritoryId": 814, + "InteractionType": "Duty", + "ContentFinderConditionId": 714 + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/H-5.2/3770_Echoes of a Fallen Star.json b/QuestPaths/Shadowbringers/MSQ/H-5.2/3770_Echoes of a Fallen Star.json new file mode 100644 index 00000000..9b72bf47 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/H-5.2/3770_Echoes of a Fallen Star.json @@ -0,0 +1,115 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032539, + "Position": { + "X": -534.1726, + "Y": 63.559536, + "Z": 735.1339 + }, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Comment": "TODO verify this is the correct sequence and/or where sequence 2 went", + "Steps": [ + { + "DataId": 1032529, + "Position": { + "X": 5.5389404, + "Y": 0.019417249, + "Z": -0.5036011 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1032558, + "Position": { + "X": 56.90088, + "Y": 36.19769, + "Z": -169.23785 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] The Dossal Gate", + "[Crystarium] The Amaro Launch" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1027230, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] The Amaro Launch", + "[Crystarium] The Dossal Gate" + ] + }, + { + "DataId": 1032121, + "Position": { + "X": 0.045776367, + "Y": -5.996435E-14, + "Z": -5.5390625 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2009758, + "Position": { + "X": -0.015319824, + "Y": 1.0223389, + "Z": 14.206055 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + }, + { + "DataId": 1030610, + "Position": { + "X": 65.11023, + "Y": 1.7160122, + "Z": 249.7749 + }, + "StopDistance": 5, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] The Dossal Gate", + "[Crystarium] The Pendants" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3771_In the Name of the Light.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3771_In the Name of the Light.json new file mode 100644 index 00000000..f90d3afd --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3771_In the Name of the Light.json @@ -0,0 +1,167 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1027231, + "Position": { + "X": 65.35437, + "Y": 1.7160122, + "Z": 249.83594 + }, + "StopDistance": 5, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1027226, + "Position": { + "X": -61.84485, + "Y": -17.72202, + "Z": -266.2547 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] The Pendants", + "[Crystarium] The Cabinet of Curiosity" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1033794, + "Position": { + "X": -81.28485, + "Y": -36.750004, + "Z": -277.7906 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1027248, + "Position": { + "X": -30.807983, + "Y": -0.64999914, + "Z": -51.438232 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] The Cabinet of Curiosity", + "[Crystarium] The Dossal Gate" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1028335, + "Position": { + "X": -146.65448, + "Y": 1.490116E-08, + "Z": 132.61609 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2011072, + "Position": { + "X": -137.4685, + "Y": 1.2664795, + "Z": 166.67432 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "$.1": "QuestVariables if done first: 1 16 0 0 0 64" + }, + { + "DataId": 2011071, + "Position": { + "X": -139.3302, + "Y": 0.99176025, + "Z": 167.65088 + }, + "StopDistance": 5, + "TerritoryId": 819, + "InteractionType": "Interact", + "$.1": "QuestVariables if done after [1]: 2 32 0 0 0 192" + }, + { + "DataId": 2011073, + "Position": { + "X": -142.2904, + "Y": 1.0527954, + "Z": 173.38818 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1033805, + "Position": { + "X": -141.71057, + "Y": 1.4901161E-08, + "Z": 160.6012 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "Position": { + "X": -140.22343, + "Y": 0.05337119, + "Z": 34.20123 + }, + "TerritoryId": 819, + "InteractionType": "WalkTo" + }, + { + "DataId": 1027248, + "Position": { + "X": -30.807983, + "Y": -0.64999914, + "Z": -51.438232 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3772_Heroic Dreams.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3772_Heroic Dreams.json new file mode 100644 index 00000000..1afed5cf --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3772_Heroic Dreams.json @@ -0,0 +1,154 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033800, + "Position": { + "X": -27.878296, + "Y": -0.65, + "Z": -51.285645 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1033807, + "Position": { + "X": 761.2573, + "Y": 25.95656, + "Z": 417.99023 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Crystarium] The Dossal Gate", + "[Crystarium] Tessellation (Lakeland)" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011078, + "Position": { + "X": 754.45166, + "Y": 15.8845825, + "Z": 273.88416 + }, + "StopDistance": 1, + "TerritoryId": 813, + "InteractionType": "Combat", + "EnemySpawnType": "AfterItemUse", + "ItemId": 2003001, + "KillEnemyDataIds": [ + 12168 + ], + "Fly": true, + "$.0": "[1]", + "$.1": "QuestVariables if done first: 0 0 0 3 0 0 during fight; 16 1 0 2 16 8 after" + }, + { + "DataId": 2011076, + "Position": { + "X": 495.4756, + "Y": 10.299805, + "Z": 290.547 + }, + "TerritoryId": 813, + "InteractionType": "Combat", + "EnemySpawnType": "AfterItemUse", + "ItemId": 2003001, + "KillEnemyDataIds": [], + "Comment": "TODO Missing enemy ids", + "Fly": true, + "$.1": "QuestVariables if done after [1]: 34 1 0 1 48 40" + }, + { + "DataId": 2011079, + "Position": { + "X": 685.5725, + "Y": 6.881775, + "Z": 497.12354 + }, + "TerritoryId": 813, + "InteractionType": "Combat", + "EnemySpawnType": "AfterItemUse", + "ItemId": 2003001, + "KillEnemyDataIds": [ + ], + "Comment": "TODO Missing enemy ids", + "Fly": true, + "$.2": "QuestVariables if done after [1, 2]: 0 64 0 0 0 0" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1033808, + "Position": { + "X": 763.9734, + "Y": 25.874697, + "Z": 419.51624 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Comment": "TODO Verify Area Transition", + "Position": { + "X": 837.8474, + "Y": 37.845993, + "Z": 408.60828 + }, + "TerritoryId": 813, + "InteractionType": "WalkTo", + "Fly": true + }, + { + "DataId": 2011107, + "Position": { + "X": -223.13275, + "Y": 38.590088, + "Z": -86.80859 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033811, + "Position": { + "X": -208.11786, + "Y": 38.64859, + "Z": -82.65814 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3773_Fraying Threads.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3773_Fraying Threads.json new file mode 100644 index 00000000..0551275f --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3773_Fraying Threads.json @@ -0,0 +1,93 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033812, + "Position": { + "X": -205.8595, + "Y": 38.614662, + "Z": -82.81073 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1034900, + "Position": { + "X": -32.791687, + "Y": -0.6250627, + "Z": -44.663208 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2002881, + "Position": { + "X": 21.133728, + "Y": 22.323914, + "Z": -631.281 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "AetheryteShortcut": "Mor Dhona" + }, + { + "DataId": 1032081, + "Position": { + "X": -2.4262085, + "Y": 0, + "Z": -9.10968 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2011080, + "Position": { + "X": -11.39856, + "Y": 1.449585, + "Z": -6.942932 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033817, + "Position": { + "X": -3.03656, + "Y": 0.01804012, + "Z": -8.1026 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3774_Food for the Soul.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3774_Food for the Soul.json new file mode 100644 index 00000000..be1bcded --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3774_Food for the Soul.json @@ -0,0 +1,112 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032081, + "Position": { + "X": -2.4262085, + "Y": 0, + "Z": -9.10968 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2002879, + "Position": { + "X": 0, + "Y": 3, + "Z": 27.5 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + }, + { + "Position": { + "X": 29.958076, + "Y": 21.232033, + "Z": -653.85443 + }, + "TerritoryId": 156, + "InteractionType": "WalkTo" + }, + { + "Position": { + "X": 26.789001, + "Y": 54.865185, + "Z": -770.47614 + }, + "TerritoryId": 156, + "InteractionType": "WalkTo", + "Fly": true + }, + { + "Comment": "TODO Verify", + "DataId": 1033818, + "Position": { + "X": 24.551636, + "Y": 50.99997, + "Z": -815.18274 + }, + "TerritoryId": 156, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1027230, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact", + "AetheryteShortcut": "Crystarium", + "AethernetShortcut": [ + "[Crystarium] Aetheryte Plaza", + "[Crystarium] The Dossal Gate" + ] + }, + { + "DataId": 1033819, + "Position": { + "X": -0.015319824, + "Y": 0, + "Z": -4.043701 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033822, + "Position": { + "X": 39.6886, + "Y": -6.9874797E-13, + "Z": -0.83929443 + }, + "StopDistance": 5, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3775_Faded Memories.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3775_Faded Memories.json new file mode 100644 index 00000000..f9aa5e01 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3775_Faded Memories.json @@ -0,0 +1,79 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033823, + "Position": { + "X": 40.329468, + "Y": -2.0168546E-08, + "Z": 1.9378662 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "Position": { + "X": -496.10434, + "Y": 8.986935, + "Z": 603.11676 + }, + "TerritoryId": 814, + "InteractionType": "WalkTo", + "AetheryteShortcut": "Kholusia - Wright", + "Fly": true + }, + { + "DataId": 1033827, + "Position": { + "X": -495.079, + "Y": 8.986954, + "Z": 604.27246 + }, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2011085, + "Position": { + "X": 1.822433, + "Y": -200.0001, + "Z": -448.3325 + }, + "TerritoryId": 918, + "InteractionType": "SinglePlayerDuty", + "Comment": "Fight NPCs, then Elidibus" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033828, + "Position": { + "X": -396.2005, + "Y": -229.06482, + "Z": 782.9861 + }, + "StopDistance": 5, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3776_Etched in the Stars.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3776_Etched in the Stars.json new file mode 100644 index 00000000..0df53deb --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3776_Etched in the Stars.json @@ -0,0 +1,126 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 2011087, + "Position": { + "X": -382.8231, + "Y": -229.0648, + "Z": 755.3434 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011089, + "Position": { + "X": -372.0399, + "Y": -229.0648, + "Z": 712.4863 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011091, + "Position": { + "X": -251.9112, + "Y": -229.20581, + "Z": 657.3739 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2011093, + "Position": { + "X": -196.1242, + "Y": -244.89203, + "Z": 679.9878 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2011095, + "Position": { + "X": -132.1889, + "Y": -244.89203, + "Z": 687.9529 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 2011097, + "Position": { + "X": -70.78668, + "Y": -263.9353, + "Z": 710.2921 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 2011099, + "Position": { + "X": -29.221008, + "Y": -263.9353, + "Z": 717.28076 + }, + "TerritoryId": 818, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033829, + "Position": { + "X": -497.94766, + "Y": 8.986913, + "Z": 584.1915 + }, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3777_The Converging Light.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3777_The Converging Light.json new file mode 100644 index 00000000..1e3ca335 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3777_The Converging Light.json @@ -0,0 +1,109 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033829, + "Position": { + "X": -497.94766, + "Y": 8.986913, + "Z": 584.1915 + }, + "TerritoryId": 814, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1033838, + "Position": { + "X": 12.954895, + "Y": 82.05, + "Z": 7.095398 + }, + "TerritoryId": 820, + "InteractionType": "Interact", + "AetheryteShortcut": "Eulmore" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1033830, + "Position": { + "X": 23.819275, + "Y": 82.049995, + "Z": 16.342407 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "TerritoryId": 820, + "InteractionType": "Duty", + "ContentFinderConditionId": 737 + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1033850, + "Position": { + "X": 291.49304, + "Y": 9.905235, + "Z": 153.2157 + }, + "TerritoryId": 813, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 6, + "Steps": [ + { + "DataId": 1033852, + "Position": { + "X": 574.9751, + "Y": 8.563855, + "Z": 336.8734 + }, + "TerritoryId": 813, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033854, + "Position": { + "X": 59.983154, + "Y": -3.0654925E-07, + "Z": 1.6021729 + }, + "StopDistance": 5, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3778_Hope's Confluence.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3778_Hope's Confluence.json new file mode 100644 index 00000000..2b8055a3 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3778_Hope's Confluence.json @@ -0,0 +1,46 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033854, + "Position": { + "X": 59.983154, + "Y": -3.0654925E-07, + "Z": 1.6021729 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "TerritoryId": 931, + "InteractionType": "Duty", + "ContentFinderConditionId": 738 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033856, + "Position": { + "X": 53.421753, + "Y": 0.019417252, + "Z": -0.045776367 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3779_Nothing Unsaid.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3779_Nothing Unsaid.json new file mode 100644 index 00000000..fc6d4f27 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3779_Nothing Unsaid.json @@ -0,0 +1,110 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033860, + "Position": { + "X": 53.269165, + "Y": -2.8964132E-07, + "Z": 1.4190674 + }, + "StopDistance": 5, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1034902, + "Position": { + "X": 51.285522, + "Y": -2.59839E-07, + "Z": -1.4801636 + }, + "StopDistance": 5, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1033864, + "Position": { + "X": 384.60352, + "Y": -28.36043, + "Z": 322.56042 + }, + "TerritoryId": 815, + "InteractionType": "Interact", + "AetheryteShortcut": "Amh Araeng - Inn at Journey's Head" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1033865, + "Position": { + "X": 251.8501, + "Y": -46.667526, + "Z": 336.90393 + }, + "TerritoryId": 815, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1033867, + "Position": { + "X": 253.28442, + "Y": -46.571102, + "Z": 337.02588 + }, + "TerritoryId": 815, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "TerritoryId": 820, + "InteractionType": "Interact", + "AetheryteShortcut": "Eulmore" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033868, + "Position": { + "X": 19.57727, + "Y": 82.78207, + "Z": 48.53894 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3780_The Journey Continues.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3780_The Journey Continues.json new file mode 100644 index 00000000..ee7ae5a5 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3780_The Journey Continues.json @@ -0,0 +1,71 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033868, + "Position": { + "X": 19.57727, + "Y": 82.78207, + "Z": 48.53894 + }, + "TerritoryId": 820, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1033872, + "Position": { + "X": -634.2717, + "Y": 35.86156, + "Z": -234.21082 + }, + "TerritoryId": 816, + "InteractionType": "Interact", + "AetheryteShortcut": "Il Mheg - Lydha Lran", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1027690, + "Position": { + "X": 452.9945, + "Y": 87.48282, + "Z": -691.9814 + }, + "StopDistance": 5, + "TerritoryId": 816, + "InteractionType": "Interact", + "AetheryteShortcut": "Il Mheg - Wolekdorf" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033872, + "Position": { + "X": -634.2717, + "Y": 35.86156, + "Z": -234.21082 + }, + "TerritoryId": 816, + "InteractionType": "Interact", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3781_Unto the Morrow.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3781_Unto the Morrow.json new file mode 100644 index 00000000..3afcc490 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3781_Unto the Morrow.json @@ -0,0 +1,98 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033872, + "Position": { + "X": -634.2717, + "Y": 35.86156, + "Z": -234.21082 + }, + "TerritoryId": 816, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1032532, + "Position": { + "X": -88.33453, + "Y": -19.033354, + "Z": 296.31494 + }, + "TerritoryId": 817, + "InteractionType": "Interact", + "AetheryteShortcut": "Rak'tika - Slitherbough" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1032532, + "Position": { + "X": -88.33453, + "Y": -19.033354, + "Z": 296.31494 + }, + "TerritoryId": 817, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1033878, + "Position": { + "X": -483.8178, + "Y": 45.586155, + "Z": -236.68274 + }, + "TerritoryId": 815, + "InteractionType": "Interact", + "AetheryteShortcut": "Amh Araeng - Twine" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1033881, + "Position": { + "X": -37.43042, + "Y": 4.583, + "Z": 3.982544 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033884, + "Position": { + "X": 26.230225, + "Y": 0, + "Z": 1.4190674 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/I-5.3/3782_Reflections in Crystal.json b/QuestPaths/Shadowbringers/MSQ/I-5.3/3782_Reflections in Crystal.json new file mode 100644 index 00000000..2d9b6055 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/I-5.3/3782_Reflections in Crystal.json @@ -0,0 +1,62 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1033887, + "Position": { + "X": 24.2771, + "Y": -5.234193E-13, + "Z": -0.7477417 + }, + "StopDistance": 5, + "TerritoryId": 819, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1030533, + "Position": { + "X": 117.997925, + "Y": 14.649025, + "Z": 7.156433 + }, + "TerritoryId": 819, + "InteractionType": "Interact" + }, + { + "DataId": 1033888, + "Position": { + "X": 1.3580322, + "Y": 0, + "Z": -5.081299 + }, + "TerritoryId": 844, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1033896, + "Position": { + "X": 1.5106201, + "Y": 0, + "Z": -3.1586914 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4007_Alisaie's Quest.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4007_Alisaie's Quest.json new file mode 100644 index 00000000..73f61c20 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4007_Alisaie's Quest.json @@ -0,0 +1,68 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1032694, + "Position": { + "X": -3.03656, + "Y": 0.01804012, + "Z": -8.133057 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1035339, + "Position": { + "X": -54.8562, + "Y": 2.0050092, + "Z": 11.276367 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1035342, + "Position": { + "X": 125.50537, + "Y": -15.184305, + "Z": -424.21613 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "AetheryteShortcut": "Mor Dhona", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1035344, + "Position": { + "X": -894.5907, + "Y": -184.29301, + "Z": -639.33777 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4008_The Wisdom of Allag.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4008_The Wisdom of Allag.json new file mode 100644 index 00000000..e483792b --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4008_The Wisdom of Allag.json @@ -0,0 +1,104 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035345, + "Position": { + "X": -894.52966, + "Y": -184.293, + "Z": -637.6593 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1035348, + "Position": { + "X": -639.33777, + "Y": -176.4502, + "Z": -577.2335 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1035350, + "Position": { + "X": 641.3214, + "Y": -2.8402345, + "Z": -350.3319 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 2011330, + "Position": { + "X": 585.1072, + "Y": -64.83563, + "Z": -692.19507 + }, + "TerritoryId": 402, + "InteractionType": "Combat", + "EnemySpawnType": "AfterInteraction", + "KillEnemyDataIds": [ + 12661 + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2011331, + "Position": { + "X": 585.1072, + "Y": -64.83563, + "Z": -692.19507 + }, + "StopDistance": 5, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1035350, + "Position": { + "X": 641.3214, + "Y": -2.8402345, + "Z": -350.3319 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4009_Reviving the Legacy.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4009_Reviving the Legacy.json new file mode 100644 index 00000000..d8a1ea8b --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4009_Reviving the Legacy.json @@ -0,0 +1,136 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035350, + "Position": { + "X": 641.3214, + "Y": -2.8402345, + "Z": -350.3319 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2002881, + "Position": { + "X": 21.133728, + "Y": 22.323914, + "Z": -631.281 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "AetheryteShortcut": "Mor Dhona" + }, + { + "DataId": 1035355, + "Position": { + "X": -0.35101318, + "Y": 0, + "Z": -6.9123535 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 2011104, + "Position": { + "X": -11.001831, + "Y": 1.4800415, + "Z": -6.9733887 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + }, + { + "DataId": 2011332, + "Position": { + "X": -56.717834, + "Y": 1.9989014, + "Z": 14.633362 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1035360, + "Position": { + "X": -58.15222, + "Y": 2.0050092, + "Z": 14.541748 + }, + "StopDistance": 5, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "Position": { + "X": -150.08533, + "Y": 16.999998, + "Z": -48.293888 + }, + "TerritoryId": 418, + "InteractionType": "WalkTo", + "AetheryteShortcut": "Ishgard", + "AethernetShortcut": [ + "[Ishgard] Aetheryte Plaza", + "[Ishgard] Skysteel Manufactory" + ] + }, + { + "DataId": 1014578, + "Position": { + "X": -148.02783, + "Y": 16.999998, + "Z": -48.844177 + }, + "TerritoryId": 418, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1035363, + "Position": { + "X": 164.47693, + "Y": -12.634913, + "Z": -13.290649 + }, + "TerritoryId": 419, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Ishgard] Skysteel Manufactory", + "[Ishgard] Athenaeum Astrologicum" + ] + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4010_Forget Us Not.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4010_Forget Us Not.json new file mode 100644 index 00000000..1c639a06 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4010_Forget Us Not.json @@ -0,0 +1,58 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035354, + "Position": { + "X": -1.0223389, + "Y": 0, + "Z": -8.529846 + }, + "StopDistance": 5, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1035364, + "Position": { + "X": 68.558716, + "Y": 40, + "Z": 69.90149 + }, + "TerritoryId": 128, + "InteractionType": "Interact", + "AetheryteShortcut": "Limsa Lominsa", + "AethernetShortcut": [ + "[Limsa Lominsa] Aetheryte Plaza", + "[Limsa Lominsa] The Aftcastle" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1035366, + "Position": { + "X": -110.09387, + "Y": 39.999992, + "Z": 116.990845 + }, + "StopDistance": 5, + "TerritoryId": 128, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4011_Like Master, Like Pupil.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4011_Like Master, Like Pupil.json new file mode 100644 index 00000000..cd78e370 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4011_Like Master, Like Pupil.json @@ -0,0 +1,105 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035367, + "Position": { + "X": -108.72058, + "Y": 39.999996, + "Z": 117.17395 + }, + "StopDistance": 5, + "TerritoryId": 128, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1035374, + "Position": { + "X": -481.80365, + "Y": 137.42972, + "Z": 698.63416 + }, + "TerritoryId": 399, + "InteractionType": "Interact", + "AetheryteShortcut": "Idyllshire", + "AethernetShortcut": [ + "[Idyllshire] Aetheryte Plaza", + "[Idyllshire] Prologue Gate" + ], + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1012138, + "Position": { + "X": 19.272095, + "Y": 38.43, + "Z": 15.854065 + }, + "StopDistance": 5, + "TerritoryId": 463, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1035380, + "Position": { + "X": 382.77246, + "Y": 75.28701, + "Z": -222.03406 + }, + "TerritoryId": 399, + "InteractionType": "Interact", + "AetheryteShortcut": "Idyllshire", + "AethernetShortcut": [ + "[Idyllshire] Aetheryte Plaza", + "[Idyllshire] Epilogue Gate" + ], + "Fly": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "TerritoryId": 399, + "InteractionType": "Duty", + "ContentFinderConditionId": 746 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1035381, + "Position": { + "X": 382.25366, + "Y": 75.22071, + "Z": -223.40735 + }, + "TerritoryId": 399, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4012_The Admiral's Resolve.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4012_The Admiral's Resolve.json new file mode 100644 index 00000000..4bd241a9 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4012_The Admiral's Resolve.json @@ -0,0 +1,103 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035381, + "Position": { + "X": 382.25366, + "Y": 75.22071, + "Z": -223.40735 + }, + "TerritoryId": 399, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1001029, + "Position": { + "X": 9.170593, + "Y": 20.999403, + "Z": -15.213318 + }, + "TerritoryId": 129, + "InteractionType": "Interact", + "AetheryteShortcut": "Limsa Lominsa" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1035386, + "Position": { + "X": -0.4730835, + "Y": 19.999977, + "Z": -13.839966 + }, + "TerritoryId": 129, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1000915, + "Position": { + "X": 18.387085, + "Y": 47.600006, + "Z": -162.12714 + }, + "TerritoryId": 128, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Limsa Lominsa] Aetheryte Plaza", + "[Limsa Lominsa] Marauder's Guild" + ], + "$.1": "QuestVariables if done first: 1 0 0 0 0 128" + }, + { + "DataId": 1000918, + "Position": { + "X": 84.09241, + "Y": 44.399914, + "Z": 132.34143 + }, + "StopDistance": 5, + "TerritoryId": 128, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Limsa Lominsa] Marauder's Guild", + "[Limsa Lominsa] The Aftcastle" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1035386, + "Position": { + "X": -0.4730835, + "Y": 19.999977, + "Z": -13.839966 + }, + "TerritoryId": 129, + "InteractionType": "Interact", + "AetheryteShortcut": "Limsa Lominsa" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4013_The Search for Sicard.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4013_The Search for Sicard.json new file mode 100644 index 00000000..b9baa466 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4013_The Search for Sicard.json @@ -0,0 +1,55 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035386, + "Position": { + "X": -0.4730835, + "Y": 19.999977, + "Z": -13.839966 + }, + "StopDistance": 5, + "TerritoryId": 129, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1035389, + "Position": { + "X": 85.09949, + "Y": 68.15523, + "Z": 341.90894 + }, + "TerritoryId": 135, + "InteractionType": "Interact", + "AetheryteShortcut": "Lower La Noscea - Moraby Drydocks", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1035391, + "Position": { + "X": 296.86414, + "Y": 69.333755, + "Z": -147.32587 + }, + "TerritoryId": 135, + "InteractionType": "Interact", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4014_On Rough Seas.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4014_On Rough Seas.json new file mode 100644 index 00000000..a80047d3 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4014_On Rough Seas.json @@ -0,0 +1,62 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035391, + "Position": { + "X": 296.86414, + "Y": 69.333755, + "Z": -147.32587 + }, + "TerritoryId": 135, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1001029, + "Position": { + "X": 9.170593, + "Y": 20.999403, + "Z": -15.213318 + }, + "TerritoryId": 129, + "InteractionType": "Interact", + "AetheryteShortcut": "Limsa Lominsa" + }, + { + "DataId": 1002694, + "Position": { + "X": -0.045776367, + "Y": 1.6001425, + "Z": -7.0039062 + }, + "TerritoryId": 198, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1002694, + "Position": { + "X": -0.045776367, + "Y": 1.6001425, + "Z": -7.0039062 + }, + "TerritoryId": 198, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4015_The Great Ship Vylbrand.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4015_The Great Ship Vylbrand.json new file mode 100644 index 00000000..73340762 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4015_The Great Ship Vylbrand.json @@ -0,0 +1,88 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1002694, + "Position": { + "X": -0.045776367, + "Y": 1.6001425, + "Z": -7.0039062 + }, + "TerritoryId": 198, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1035399, + "Position": { + "X": -105.21106, + "Y": 64.43899, + "Z": -243.15253 + }, + "TerritoryId": 180, + "InteractionType": "Interact", + "AetheryteShortcut": "Outer La Noscea - Camp Overlook" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "Position": { + "X": 82.19566, + "Y": 25.922153, + "Z": -711.6839 + }, + "TerritoryId": 180, + "InteractionType": "WalkTo", + "Fly": true + }, + { + "Position": { + "X": 129.6921, + "Y": 23.33508, + "Z": -719.46643 + }, + "TerritoryId": 180, + "InteractionType": "WalkTo" + }, + { + "DataId": 1035401, + "Position": { + "X": 142.71753, + "Y": 24.40421, + "Z": -634.54645 + }, + "TerritoryId": 180, + "InteractionType": "SinglePlayerDuty", + "Comment": "Great Ship Vylbrand" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1035407, + "Position": { + "X": -103.71564, + "Y": 64.39152, + "Z": -241.32147 + }, + "StopDistance": 5, + "TerritoryId": 180, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/J-5.4/4016_Futures Rewritten.json b/QuestPaths/Shadowbringers/MSQ/J-5.4/4016_Futures Rewritten.json new file mode 100644 index 00000000..570bf1a4 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/J-5.4/4016_Futures Rewritten.json @@ -0,0 +1,80 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035398, + "Position": { + "X": -106.126526, + "Y": 64.45569, + "Z": -242.66425 + }, + "StopDistance": 5, + "TerritoryId": 180, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1035409, + "Position": { + "X": 581.62805, + "Y": 80, + "Z": 621.7898 + }, + "TerritoryId": 621, + "InteractionType": "Interact", + "AetheryteShortcut": "Lochs - Ala Mhigan Quarter" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1035414, + "Position": { + "X": 739.4979, + "Y": 70, + "Z": 526.48206 + }, + "StopDistance": 5, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 2002881, + "Position": { + "X": 21.133728, + "Y": 22.323914, + "Z": -631.281 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "AetheryteShortcut": "Mor Dhona" + }, + { + "DataId": 1032694, + "Position": { + "X": -3.03656, + "Y": 0.01804012, + "Z": -8.133057 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/K-5.5/4058_Unto the Breach.json b/QuestPaths/Shadowbringers/MSQ/K-5.5/4058_Unto the Breach.json new file mode 100644 index 00000000..9b27e664 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/K-5.5/4058_Unto the Breach.json @@ -0,0 +1,54 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1035613, + "Position": { + "X": -2.456726, + "Y": 0, + "Z": -9.720032 + }, + "StopDistance": 5, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1036324, + "Position": { + "X": 739.681, + "Y": 70, + "Z": 535.4237 + }, + "TerritoryId": 621, + "InteractionType": "Interact", + "AetheryteShortcut": "Lochs - Ala Mhigan Quarter", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036329, + "Position": { + "X": 741.1155, + "Y": 70, + "Z": 527.7333 + }, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/K-5.5/4059_Here Be Dragons.json b/QuestPaths/Shadowbringers/MSQ/K-5.5/4059_Here Be Dragons.json new file mode 100644 index 00000000..927a14f9 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/K-5.5/4059_Here Be Dragons.json @@ -0,0 +1,90 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1036330, + "Position": { + "X": 742.1836, + "Y": 70, + "Z": 529.0454 + }, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1036334, + "Position": { + "X": -73.56378, + "Y": 8.05915, + "Z": 29.3125 + }, + "TerritoryId": 418, + "InteractionType": "Interact", + "AetheryteShortcut": "Ishgard" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1013167, + "Position": { + "X": 125.68848, + "Y": 24.458836, + "Z": 2.456604 + }, + "TerritoryId": 418, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Ishgard] Aetheryte Plaza", + "[Ishgard] The Forgotten Knight" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1036342, + "Position": { + "X": 161.91345, + "Y": -15.134371, + "Z": 33.279907 + }, + "TerritoryId": 419, + "InteractionType": "Interact", + "AethernetShortcut": [ + "[Ishgard] The Forgotten Knight", + "[Ishgard] Athenaeum Astrologicum" + ] + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036344, + "Position": { + "X": -521.5991, + "Y": -103.946754, + "Z": 143.63306 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/K-5.5/4060_Righteous Indignation.json b/QuestPaths/Shadowbringers/MSQ/K-5.5/4060_Righteous Indignation.json new file mode 100644 index 00000000..7f7336b7 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/K-5.5/4060_Righteous Indignation.json @@ -0,0 +1,143 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1036346, + "Position": { + "X": -520.531, + "Y": -103.99243, + "Z": 144.24353 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011483, + "Position": { + "X": -681.5442, + "Y": -41.153625, + "Z": 424.58215 + }, + "StopDistance": 1, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1036588, + "Position": { + "X": -683.3448, + "Y": -41.403988, + "Z": 426.44385 + }, + "StopDistance": 5, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1036353, + "Position": { + "X": -229.38892, + "Y": 246.3967, + "Z": 96.75745 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1036358, + "Position": { + "X": -215.16754, + "Y": 253.81813, + "Z": -13.16864 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true, + "$.1": "QuestVariables if done first: 1 16 0 0 0 64" + }, + { + "DataId": 1036359, + "Position": { + "X": -244.55634, + "Y": 263.18918, + "Z": -24.521301 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Mount": true, + "Fly": true, + "$.1": "QuestVariables if done after [1]: 2 16 0 0 0 96" + }, + { + "DataId": 1036357, + "Position": { + "X": -275.4406, + "Y": 252, + "Z": -20.981201 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "DisableNavmesh": true + } + ] + }, + { + "Sequence": 5, + "Steps": [ + { + "DataId": 1036353, + "Position": { + "X": -229.38892, + "Y": 246.3967, + "Z": 96.75745 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036357, + "Position": { + "X": -275.4406, + "Y": 252, + "Z": -20.981201 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/K-5.5/4061_For Vengeance.json b/QuestPaths/Shadowbringers/MSQ/K-5.5/4061_For Vengeance.json new file mode 100644 index 00000000..9ebc1ea9 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/K-5.5/4061_For Vengeance.json @@ -0,0 +1,83 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1036953, + "Position": { + "X": -275.4406, + "Y": 252, + "Z": -20.981201 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 2011484, + "Position": { + "X": 28.366455, + "Y": 271.229, + "Z": -35.355164 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1036351, + "Position": { + "X": -681.33057, + "Y": -41.32259, + "Z": 427.66455 + }, + "TerritoryId": 402, + "InteractionType": "Interact", + "Fly": true + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1036351, + "Position": { + "X": -681.33057, + "Y": -41.32259, + "Z": 427.66455 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036352, + "Position": { + "X": -679.92676, + "Y": -41.30151, + "Z": 429.00732 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/K-5.5/4062_The Flames of War.json b/QuestPaths/Shadowbringers/MSQ/K-5.5/4062_The Flames of War.json new file mode 100644 index 00000000..266b8732 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/K-5.5/4062_The Flames of War.json @@ -0,0 +1,83 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1036352, + "Position": { + "X": -679.92676, + "Y": -41.30151, + "Z": 429.00732 + }, + "TerritoryId": 402, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1036368, + "Position": { + "X": -137.56012, + "Y": 4.1, + "Z": -109.819214 + }, + "StopDistance": 5, + "TerritoryId": 130, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1036374, + "Position": { + "X": -25.0401, + "Y": 83.19998, + "Z": 10.452393 + }, + "TerritoryId": 130, + "InteractionType": "Interact", + "AetheryteShortcut": "Ul'dah", + "AethernetShortcut": [ + "[Ul'dah] Aetheryte Plaza", + "[Ul'dah] Airship Landing" + ] + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "TerritoryId": 130, + "InteractionType": "Duty", + "ContentFinderConditionId": 777 + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036376, + "Position": { + "X": -20.065674, + "Y": 83.2, + "Z": 15.121643 + }, + "StopDistance": 5, + "TerritoryId": 130, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/K-5.5/4063_When the Dust Settles.json b/QuestPaths/Shadowbringers/MSQ/K-5.5/4063_When the Dust Settles.json new file mode 100644 index 00000000..43ac6e17 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/K-5.5/4063_When the Dust Settles.json @@ -0,0 +1,102 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1036376, + "Position": { + "X": -20.065674, + "Y": 83.2, + "Z": 15.121643 + }, + "TerritoryId": 130, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1036388, + "Position": { + "X": -76.46301, + "Y": 42, + "Z": 58.243652 + }, + "TerritoryId": 131, + "InteractionType": "Interact", + "AetheryteShortcut": "Ul'dah", + "AethernetShortcut": [ + "[Ul'dah] Aetheryte Plaza", + "[Ul'dah] Alchemists' Guild" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1036391, + "Position": { + "X": -77.71423, + "Y": 42, + "Z": 58.854004 + }, + "TerritoryId": 131, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1036392, + "Position": { + "X": -14.328308, + "Y": 36.01278, + "Z": 61.08191 + }, + "TerritoryId": 131, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 2002881, + "Position": { + "X": 21.133728, + "Y": 22.323914, + "Z": -631.281 + }, + "TerritoryId": 156, + "InteractionType": "Interact", + "AetheryteShortcut": "Mor Dhona" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036399, + "Position": { + "X": -3.402832, + "Y": 0.01804012, + "Z": -8.499329 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/L-5.55/4064_The Company We Keep.json b/QuestPaths/Shadowbringers/MSQ/L-5.55/4064_The Company We Keep.json new file mode 100644 index 00000000..50298d10 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/L-5.55/4064_The Company We Keep.json @@ -0,0 +1,84 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1036400, + "Position": { + "X": -2.5177612, + "Y": 0, + "Z": -9.170715 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1024065, + "Position": { + "X": 749.9961, + "Y": 70.139626, + "Z": 522.88086 + }, + "TerritoryId": 621, + "InteractionType": "Interact", + "AetheryteShortcut": "Lochs - Ala Mhigan Quarter", + "Fly": true + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1036325, + "Position": { + "X": 740.0167, + "Y": 70, + "Z": 534.02 + }, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1037011, + "Position": { + "X": 741.7257, + "Y": 70, + "Z": 534.63025 + }, + "TerritoryId": 621, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036424, + "Position": { + "X": -641.93176, + "Y": 130, + "Z": -503.19678 + }, + "TerritoryId": 612, + "InteractionType": "Interact", + "AetheryteShortcut": "Fringes - Castrum Oriens" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/L-5.55/4065_On Official Business.json b/QuestPaths/Shadowbringers/MSQ/L-5.55/4065_On Official Business.json new file mode 100644 index 00000000..6376d9a4 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/L-5.55/4065_On Official Business.json @@ -0,0 +1,109 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1036426, + "Position": { + "X": -642.3591, + "Y": 130, + "Z": -504.63113 + }, + "StopDistance": 5, + "TerritoryId": 612, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1036428, + "Position": { + "X": 125.993774, + "Y": 12.9667015, + "Z": -249.37823 + }, + "TerritoryId": 133, + "InteractionType": "Interact", + "AetheryteShortcut": "Gridania", + "AethernetShortcut": [ + "[Gridania] Aetheryte Plaza", + "[Gridania] Lancer's Guild" + ] + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1005577, + "Position": { + "X": 28.488525, + "Y": -3.6319542, + "Z": 210.62024 + }, + "TerritoryId": 152, + "InteractionType": "Interact", + "AetheryteShortcut": "East Shroud - Hawthorne Hut", + "Fly": true + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "DataId": 1000460, + "Position": { + "X": -159.41101, + "Y": 4.054107, + "Z": -4.1047363 + }, + "TerritoryId": 133, + "InteractionType": "Interact", + "AetheryteShortcut": "Gridania", + "AethernetShortcut": [ + "[Gridania] Aetheryte Plaza", + "[Gridania] Conjurer's Guild" + ] + } + ] + }, + { + "Sequence": 4, + "Steps": [ + { + "DataId": 1003027, + "Position": { + "X": 4.8981323, + "Y": -1.92944, + "Z": -0.19836426 + }, + "TerritoryId": 205, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036436, + "Position": { + "X": 4.2266846, + "Y": -1.858, + "Z": 2.7922974 + }, + "TerritoryId": 205, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/Shadowbringers/MSQ/L-5.55/4066_Death Unto Dawn.json b/QuestPaths/Shadowbringers/MSQ/L-5.55/4066_Death Unto Dawn.json new file mode 100644 index 00000000..62c25689 --- /dev/null +++ b/QuestPaths/Shadowbringers/MSQ/L-5.55/4066_Death Unto Dawn.json @@ -0,0 +1,79 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1003027, + "Position": { + "X": 4.8981323, + "Y": -1.92944, + "Z": -0.19836426 + }, + "TerritoryId": 205, + "InteractionType": "Interact" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + { + "DataId": 1036439, + "Position": { + "X": 57.90796, + "Y": -8.556444, + "Z": 107.16406 + }, + "TerritoryId": 132, + "InteractionType": "Interact", + "AetheryteShortcut": "Gridania" + } + ] + }, + { + "Sequence": 2, + "Steps": [ + { + "DataId": 1036441, + "Position": { + "X": 32.60852, + "Y": -19.000002, + "Z": 103.34924 + }, + "StopDistance": 7, + "TerritoryId": 132, + "InteractionType": "SinglePlayerDuty", + "Comment": "Death Unto Dawn" + } + ] + }, + { + "Sequence": 3, + "Steps": [ + { + "TerritoryId": 351, + "InteractionType": "WaitForManualProgress", + "Comment": "Credits" + } + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1036444, + "Position": { + "X": -1.6937866, + "Y": 0, + "Z": -4.135254 + }, + "TerritoryId": 351, + "InteractionType": "Interact" + } + ] + } + ] +} diff --git a/QuestPaths/packages.lock.json b/QuestPaths/packages.lock.json new file mode 100644 index 00000000..f9ae1775 --- /dev/null +++ b/QuestPaths/packages.lock.json @@ -0,0 +1,6 @@ +{ + "version": 1, + "dependencies": { + "net8.0-windows7.0": {} + } +} \ No newline at end of file diff --git a/QuestPaths/quest-v1.json b/QuestPaths/quest-v1.json new file mode 100644 index 00000000..4af20ea0 --- /dev/null +++ b/QuestPaths/quest-v1.json @@ -0,0 +1,706 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://carvel.li/questionable/quest-1.0", + "title": "Questionable V1", + "description": "A series of quest sequences", + "type": "object", + "properties": { + "Author": { + "description": "Author of the quest sequence", + "type": "string" + }, + "Contributors": { + "type": "array", + "items": { + "type": "string" + } + }, + "Comment": { + "type": "string" + }, + "TerritoryBlacklist": { + "type": "array", + "items": { + "type": "integer" + } + }, + "QuestSequence": { + "type": "array", + "items": { + "type": "object", + "properties": { + "Sequence": { + "type": "integer", + "minimum": 0, + "maximum": 255 + }, + "Steps": { + "type": "array", + "items": { + "type": "object", + "properties": { + "DataId": { + "type": "integer", + "description": "The data id of the NPC/Object/Aetheryte/Aether Current", + "exclusiveMinimum": 0 + }, + "Position": { + "type": "object", + "description": "Position to (typically) walk to", + "properties": { + "X": { + "type": "number" + }, + "Y": { + "type": "number" + }, + "Z": { + "type": "number" + } + }, + "required": [ + "X", + "Y", + "Z" + ] + }, + "StopDistance": { + "type": [ + "number", + "null" + ], + "description": "Set if pathfinding should stop closer or further away from the default stop distance", + "exclusiveMinimum": 0 + }, + "TerritoryId": { + "type": "integer", + "description": "The territory id associated with the location", + "exclusiveMinimum": 0 + }, + "TargetTerritoryId": { + "type": "integer", + "description": "If set, this step is complete (movement-wise) if this territory id is reached", + "exclusiveMinimum": 0 + }, + "InteractionType": { + "type": "string", + "description": "What to do at the position", + "enum": [ + "Interact", + "WalkTo", + "AttuneAethernetShard", + "AttuneAetheryte", + "AttuneAetherCurrent", + "Combat", + "UseItem", + "Say", + "Emote", + "WaitForNpcAtPosition", + "WaitForManualProgress", + "Duty", + "SinglePlayerDuty", + "Jump", + "CutsceneSelectString", + "ShouldBeAJump", + "Instruction" + ] + }, + "Disabled": { + "description": "Whether this step is disabled (see SkipIf for more control)", + "type": "boolean" + }, + "DisableNavmesh": { + "description": "If true, will go to the position in a straight line instead of using pathfinding", + "type": "boolean" + }, + "Mount": { + "type": [ + "boolean", + "null" + ], + "description": "If true, will mount regardless of distance to position. If false, will unmount." + }, + "Fly": { + "type": "boolean", + "description": "If true and flying is unlocked in a zone, will use a flight path" + }, + "Sprint": { + "type": [ + "boolean", + "null" + ] + }, + "AetheryteShortcut": { + "type": "string", + "description": "The Aetheryte to teleport to (before moving)", + "enum": [ + "Gridania", + "Central Shroud - Bentbranch Meadows", + "East Shroud - Hawthorne Hut", + "South Shroud - Quarrymill", + "South Shroud - Camp Tranquil", + "North Shroud - Fallgourd Float", + "Ul'dah", + "Western Thanalan - Horizon", + "Central Thanalan - Black Brush Station", + "Eastern Thanalan - Camp Drybone", + "Southern Thanalan - Little Ala Mhigo", + "Southern Thanalan - Forgotten Springs", + "Northern Thanalan - Camp Bluefog", + "Northern Thanalan - Ceruleum Processing Plant", + "Limsa Lominsa", + "Middle La Noscea - Summerford Farms", + "Lower La Noscea - Moraby Drydocks", + "Eastern La Noscea - Costa Del Sol", + "Eastern La Noscea - Wineport", + "Western La Noscea - Swiftperch", + "Western La Noscea - Aleport", + "Upper La Noscea - Camp Bronze Lake", + "Outer La Noscea - Camp Overlook", + "Coerthas Central Highlands - Camp Dragonhead", + "Mor Dhona", + "Gold Saucer", + "Wolves' Den Pier", + "Ishgard", + "Idyllshire", + "Coerthas Western Highlands - Falcon's Nest", + "The Sea of Clouds - Camp Cloudtop", + "The Sea of Clouds - Ok' Zundu", + "Azys Lla - Helix", + "The Dravanian Forelands - Tailfeather", + "The Dravanian Forelands - Anyx Trine", + "The Churning Mists - Moghome", + "The Churning Mists - Zenith", + "Rhalgr's Reach", + "Fringes - Castrum Oriens", + "Fringes - Peering Stones", + "Peaks - Ala Gannha", + "Peaks - Ala Ghiri", + "Lochs - Porta Praetoria", + "Lochs - Ala Mhigan Quarter", + "Kugane", + "Ruby Sea - Tamamizu", + "Ruby Sea - Onokoro", + "Yanxia - Namai", + "Yanxia - House of the Fierce", + "Azim Steppe - Reunion", + "Azim Steppe - Dawn Throne", + "Azim Steppe - Dhoro Iloh", + "Doman Enclave", + "Crystarium", + "Eulmore", + "Lakeland - Fort Jobb", + "Lakeland - Ostall Imperative", + "Kholusia - Stilltide", + "Kholusia - Wright", + "Kholusia - Tomra", + "Amh Araeng - Mord Souq", + "Amh Araeng - Inn at Journey's Head", + "Amh Araeng - Twine", + "Rak'tika - Slitherbough", + "Rak'tika - Fanow", + "Il Mheg - Lydha Lran", + "Il Mheg - Pia Enni", + "Il Mheg - Wolekdorf", + "Tempest - Ondo Cups", + "Tempest - Macarenses Angle", + "Old Sharlayan", + "Radz-at-Han", + "Labyrinthos - Archeion", + "Labyrinthos - Sharlayan Hamlet", + "Labyrinthos - Aporia", + "Thavnair - Yedlihmad", + "Thavnair - Great Work", + "Thavnair - Palaka's Stand", + "Garlemald - Camp Broken Glass", + "Garlemald - Tertium", + "Mare Lamentorum - Sinus Lacrimarum", + "Mare Lamentorum - Bestways Burrow", + "Elpis - Anagnorisis", + "Elpis - Twelve Wonders", + "Elpis - Poieten Oikos", + "Ultima Thule - Reah Tahra", + "Ultima Thule - Abode of the Ea", + "Ultima Thule - Base Omicron" + ] + }, + "AethernetShortcut": { + "type": "array", + "description": "A pair of aethernet locations (from + to) to use as a shortcut", + "minItems": 1, + "maxItems": 2, + "items": { + "type": "string", + "enum": [ + "[Gridania] Aetheryte Plaza", + "[Gridania] Archer's Guild", + "[Gridania] Leatherworker's Guild & Shaded Bower", + "[Gridania] Lancer's Guild", + "[Gridania] Conjurer's Guild", + "[Gridania] Botanist's Guild", + "[Gridania] Mih Khetto's Amphitheatre", + "[Gridania] Blue Badger Gate (Central Shroud)", + "[Gridania] Yellow Serpent Gate (North Shroud)", + "[Gridania] White Wolf Gate (Central Shroud)", + "[Gridania] Airship Landing", + "[Ul'dah] Aetheryte Plaza", + "[Ul'dah] Adventurer's Guild", + "[Ul'dah] Thaumaturge's Guild", + "[Ul'dah] Gladiator's Guild", + "[Ul'dah] Miner's Guild", + "[Ul'dah] Weavers' Guild", + "[Ul'dah] Goldsmiths' Guild", + "[Ul'dah] Sapphire Avenue Exchange", + "[Ul'dah] Alchemists' Guild", + "[Ul'dah] Gate of the Sultana (Western Thanalan)", + "[Ul'dah] Gate of Nald (Central Thanalan)", + "[Ul'dah] Gate of Thal (Central Thanalan)", + "[Ul'dah] The Chamber of Rule", + "[Ul'dah] Airship Landing", + "[Limsa Lominsa] Aetheryte Plaza", + "[Limsa Lominsa] Arcanist's Guild", + "[Limsa Lominsa] Fishermen's Guild", + "[Limsa Lominsa] Hawker's Alley", + "[Limsa Lominsa] The Aftcastle", + "[Limsa Lominsa] Culinarian's Guild", + "[Limsa Lominsa] Marauder's Guild", + "[Limsa Lominsa] Zephyr Gate (Middle La Noscea)", + "[Limsa Lominsa] Tempest Gate (Lower La Noscea)", + "[Limsa Lominsa] Airship Landing", + "[Ishgard] Aetheryte Plaza", + "[Ishgard] The Forgotten Knight", + "[Ishgard] Skysteel Manufactory", + "[Ishgard] The Brume", + "[Ishgard] Athenaeum Astrologicum", + "[Ishgard] The Jeweled Crozier", + "[Ishgard] Saint Reymanaud's Cathedral", + "[Ishgard] The Tribunal", + "[Ishgard] The Last Vigil", + "[Ishgard] The Gates of Judgement (Coerthas Central Highlands)", + "[Idyllshire] Aetheryte Plaza", + "[Idyllshire] West Idyllshire", + "[Idyllshire] Prologue Gate", + "[Idyllshire] Epilogue Gate", + "[Rhalgr's Reach] Aetheryte Plaza", + "[Rhalgr's Reach] Western Rhalgr's Reach", + "[Rhalgr's Reach] Northeastern Rhalgr's Reach", + "[Rhalgr's Reach] Fringes Gate", + "[Rhalgr's Reach] Peaks Gate", + "[Kugane] Aetheryte Plaza", + "[Kugane] Shiokaze Hostelry", + "[Kugane] Pier #1", + "[Kugane] Thavnairian Consulate", + "[Kugane] Kogane Dori Markets", + "[Kugane] Bokairo Inn", + "[Kugane] The Ruby Bazaar", + "[Kugane] Sekiseigumi Barracks", + "[Kugane] Rakuza District", + "[Kugane] The Ruby Price", + "[Kugane] Airship Landing", + "[Crystarium] Aetheryte Plaza", + "[Crystarium] Musica Universalis Markets", + "[Crystarium] Themenos Rookery", + "[Crystarium] The Dossal Gate", + "[Crystarium] The Pendants", + "[Crystarium] The Amaro Launch", + "[Crystarium] The Crystalline Mean", + "[Crystarium] The Cabinet of Curiosity", + "[Crystarium] Tessellation (Lakeland)", + "[Eulmore] Aetheryte Plaza", + "[Eulmore] Southeast Derelicts", + "[Eulmore] Nightsoil Pots", + "[Eulmore] The Glory Gate", + "[Eulmore] The Mainstay", + "[Eulmore] The Path to Glory (Kholusia)", + "[Old Sharlayan] Aetheryte Plaza", + "[Old Sharlayan] The Studium", + "[Old Sharlayan] The Baldesion Annex", + "[Old Sharlayan] The Rostra", + "[Old Sharlayan] The Leveilleur Estate", + "[Old Sharlayan] Journey's End", + "[Old Sharlayan] Scholar's Harbor", + "[Old Sharlayan] The Hall of Artifice (Labyrinthos)", + "[Radz-at-Han] Aetheryte Plaza", + "[Radz-at-Han] Meghaduta", + "[Radz-at-Han] Ruveydah Fibers", + "[Radz-at-Han] Airship Landing", + "[Radz-at-Han] Alzadaal's Peace", + "[Radz-at-Han] Hall of the Radiant Host", + "[Radz-at-Han] Mehryde's Meyhane", + "[Radz-at-Han] Kama", + "[Radz-at-Han] The High Crucible of Al-Kimiya", + "[Radz-at-Han] The Gate of First Sight (Thavnair)" + ] + } + }, + "ItemId": { + "type": [ + "number", + "null" + ], + "description": "The Item to use", + "exclusiveMinimum": 0 + }, + "SkipIf": { + "type": "array", + "description": "TODO Not implemented", + "items": { + "type": "string", + "enum": [ + "Never", + "FlyingUnlocked" + ] + } + }, + "CompletionQuestVariablesFlags": { + "type": "array", + "description": "Quest Variables that dictate whether or not this step is skipped: null is don't check, positive values need to be set, negative values need to be unset", + "items": { + "type": [ + "integer", + "null" + ], + "enum": [ + null, + 1, + 2, + 4, + 8, + 16, + 32, + 64, + 128, + -1, + -2, + -4, + -8, + -16, + -32, + -64, + -128 + ] + }, + "minItems": 6, + "maxItems": 6 + }, + "Comment": { + "type": "string" + } + }, + "required": [ + "TerritoryId", + "InteractionType" + ], + "allOf": [ + { + "if": { + "properties": { + "InteractionType": { + "const": "Interact" + } + } + }, + "then": { + "required": [ + "DataId" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "WalkTo" + } + } + }, + "then": { + "required": [ + "Position" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "anyOf": [ + { + "const": "AttuneAethernetShard" + }, + { + "const": "AttuneAetheryte" + } + ] + } + } + }, + "then": { + "required": [ + "DataId", + "Position" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "AttuneAetherCurrent" + } + } + }, + "then": { + "properties": { + "AetherCurrentId": { + "type": "integer", + "description": "The aether current id, used to check if a given aetheryte is unlocked", + "exclusiveMinimum": 0 + } + }, + "required": [ + "DataId", + "Position", + "AetherCurrentId" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "Combat" + } + } + }, + "then": { + "properties": { + "EnemySpawnType": { + "type": "string", + "description": "Determines how enemy spawning is handled in combat locations", + "enum": [ + "AutoOnEnterArea", + "AfterInteraction", + "AfterItemUse", + "OverworldEnemies" + ] + }, + "KillEnemyDataIds": { + "description": "The enemy data ids which are supposed to be killed", + "type": "array", + "items": { + "type": "integer" + } + } + }, + "required": [ + "Position", + "EnemySpawnType", + "KillEnemyDataIds" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "UseItem" + } + } + }, + "then": { + "properties": { + "GroundTarget": { + "type": [ + "boolean", + "null" + ], + "default": false + } + }, + "required": [ + "Position", + "ItemId" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "Emote" + } + } + }, + "then": { + "properties": { + "Emote": { + "type": "string", + "description": "The emote to use", + "enum": [ + "stretch", + "wave", + "rally", + "deny", + "pray" + ] + } + }, + "required": [ + "Position", + "Emote" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "Say" + } + } + }, + "then": { + "properties": { + "ChatMessage": { + "type": "string", + "description": "The text to use with /say" + } + }, + "required": [ + "Position", + "ChatMessage" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "Jump" + } + } + }, + "then": { + "properties": { + "JumpDestination": { + "type": "object", + "properties": { + "Position": { + "type": "object", + "description": "Position to try reaching after the jump", + "properties": { + "X": { + "type": "number" + }, + "Y": { + "type": "number" + }, + "Z": { + "type": "number" + } + }, + "required": [ + "X", + "Y", + "Z" + ] + }, + "StopDistance": { + "type": [ + "number", + "null" + ], + "description": "Set if pathfinding should stop closer or further away from the default stop distance", + "exclusiveMinimum": 0 + }, + "DelaySeconds": { + "type": [ + "number", + "null" + ] + } + }, + "required": [ + "Position" + ] + } + }, + "required": [ + "Position", + "JumpDestination" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "CutsceneSelectString" + } + } + }, + "then": { + "properties": { + "DialogueChoices": { + "type": "array", + "items": { + "type": "object", + "properties": { + "ExcelSheet": { + "type": "string" + }, + "Answer": { + "type": "string" + } + }, + "required": [ + "ExcelSheet", + "Answer" + ] + } + } + }, + "required": [ + "DialogueChoices" + ] + } + }, + { + "if": { + "properties": { + "InteractionType": { + "const": "Duty" + } + } + }, + "then": { + "properties": { + "ContentFinderConditionId": { + "type": "integer", + "exclusiveMinimum": 0 + } + }, + "required": [ + "ContentFinderConditionId" + ] + } + } + ] + } + }, + "Comment": { + "type": "string" + } + }, + "required": [ + "Sequence" + ] + } + } + }, + "required": [ + "QuestSequence", + "Author" + ] +} diff --git a/Questionable.sln b/Questionable.sln index c14cc412..1ad54b6d 100644 --- a/Questionable.sln +++ b/Questionable.sln @@ -4,6 +4,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Questionable", "Questionabl EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LLib", "LLib\LLib.csproj", "{EEDE3BBE-E260-445E-8FB3-1264E0CBBE91}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuestPaths", "QuestPaths\QuestPaths.csproj", "{7A136F28-8D5C-478D-B993-0F39F1451A47}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -18,5 +20,9 @@ Global {EEDE3BBE-E260-445E-8FB3-1264E0CBBE91}.Debug|Any CPU.Build.0 = Debug|Any CPU {EEDE3BBE-E260-445E-8FB3-1264E0CBBE91}.Release|Any CPU.ActiveCfg = Release|Any CPU {EEDE3BBE-E260-445E-8FB3-1264E0CBBE91}.Release|Any CPU.Build.0 = Release|Any CPU + {7A136F28-8D5C-478D-B993-0F39F1451A47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7A136F28-8D5C-478D-B993-0F39F1451A47}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7A136F28-8D5C-478D-B993-0F39F1451A47}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7A136F28-8D5C-478D-B993-0F39F1451A47}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection EndGlobal diff --git a/Questionable/Controller/MovementController.cs b/Questionable/Controller/MovementController.cs index f4985002..f4fa2e04 100644 --- a/Questionable/Controller/MovementController.cs +++ b/Questionable/Controller/MovementController.cs @@ -12,6 +12,7 @@ using Dalamud.Game.ClientState.Objects.Types; using Dalamud.Plugin.Services; using FFXIVClientStructs.FFXIV.Client.Game; using Questionable.External; +using Questionable.Model; using Questionable.Model.V1; using Questionable.Model.V1.Converter; diff --git a/Questionable/Controller/QuestController.cs b/Questionable/Controller/QuestController.cs index a29c9180..54572dff 100644 --- a/Questionable/Controller/QuestController.cs +++ b/Questionable/Controller/QuestController.cs @@ -17,6 +17,7 @@ using LLib.GameUI; using Lumina.Excel.CustomSheets; using Questionable.Data; using Questionable.External; +using Questionable.Model; using Questionable.Model.V1; using Questionable.Model.V1.Converter; using ValueType = FFXIVClientStructs.FFXIV.Component.GUI.ValueType; @@ -75,11 +76,23 @@ internal sealed class QuestController CurrentQuest = null; DebugState = null; -#if false - LoadFromEmbeddedResources(); +#if RELEASE + _pluginLog.Information("Loading quests from assembly"); + QuestPaths.AssemblyQuestLoader.LoadQuestsFromEmbeddedResources(LoadQuestFromStream); +#else + DirectoryInfo? solutionDirectory = _pluginInterface.AssemblyLocation?.Directory?.Parent?.Parent; + if (solutionDirectory != null) + { + DirectoryInfo pathProjectDirectory = + new DirectoryInfo(Path.Combine(solutionDirectory.FullName, "QuestPaths")); + if (pathProjectDirectory.Exists) + { + LoadFromDirectory(new DirectoryInfo(Path.Combine(pathProjectDirectory.FullName, "Shadowbringers"))); + LoadFromDirectory(new DirectoryInfo(Path.Combine(pathProjectDirectory.FullName, "Endwalker"))); + } + } #endif - LoadFromDirectory(new DirectoryInfo(@"E:\ffxiv\Questionable\Questionable\QuestPaths")); - LoadFromDirectory(_pluginInterface.ConfigDirectory); + LoadFromDirectory(new DirectoryInfo(Path.Combine(_pluginInterface.ConfigDirectory.FullName, "Quests"))); foreach (var (questId, quest) in _quests) { @@ -92,45 +105,36 @@ internal sealed class QuestController } } -#if false - private void LoadFromEmbeddedResources() + private void LoadQuestFromStream(string fileName, Stream stream) { - foreach (string resourceName in typeof(Questionable).Assembly.GetManifestResourceNames()) + _pluginLog.Verbose($"Loading quest from '{fileName}'"); + var (questId, name) = ExtractQuestDataFromName(fileName); + Quest quest = new Quest { - if (resourceName.EndsWith(".json")) - { - var (questId, name) = ExtractQuestDataFromName(resourceName); - Quest quest = new Quest - { - QuestId = questId, - Name = name, - Data = JsonSerializer.Deserialize( - typeof(Questionable).Assembly.GetManifestResourceStream(resourceName)!)!, - }; - _quests[questId] = quest; - } - } + QuestId = questId, + Name = name, + Data = JsonSerializer.Deserialize(stream)!, + }; + _quests[questId] = quest; } -#endif public bool IsKnownQuest(ushort questId) => _quests.ContainsKey(questId); - private void LoadFromDirectory(DirectoryInfo configDirectory) + private void LoadFromDirectory(DirectoryInfo directory) { - foreach (FileInfo fileInfo in configDirectory.GetFiles("*.json")) + if (!directory.Exists) + { + _pluginLog.Information($"Not loading quests from {directory} (doesn't exist)"); + return; + } + + _pluginLog.Information($"Loading quests from {directory}"); + foreach (FileInfo fileInfo in directory.GetFiles("*.json")) { try { using FileStream stream = new FileStream(fileInfo.FullName, FileMode.Open, FileAccess.Read); - var (questId, name) = ExtractQuestDataFromName(fileInfo.Name); - Quest quest = new Quest - { - FilePath = fileInfo.FullName, - QuestId = questId, - Name = name, - Data = JsonSerializer.Deserialize(stream)!, - }; - _quests[questId] = quest; + LoadQuestFromStream(fileInfo.Name, stream); } catch (Exception e) { @@ -138,7 +142,7 @@ internal sealed class QuestController } } - foreach (DirectoryInfo childDirectory in configDirectory.GetDirectories()) + foreach (DirectoryInfo childDirectory in directory.GetDirectories()) LoadFromDirectory(childDirectory); } diff --git a/Questionable/DalamudPackager.targets b/Questionable/DalamudPackager.targets index d5ac924c..b29e6760 100644 --- a/Questionable/DalamudPackager.targets +++ b/Questionable/DalamudPackager.targets @@ -1,14 +1,5 @@  - - - - + Exclude="Questionable.json;Questionable.deps.json;LLib.pdb"/> + + + + diff --git a/Questionable/GameFunctions.cs b/Questionable/GameFunctions.cs index 8255a792..c6c540eb 100644 --- a/Questionable/GameFunctions.cs +++ b/Questionable/GameFunctions.cs @@ -75,7 +75,7 @@ internal sealed unsafe class GameFunctions .Where(x => x.Command != null && x.Command.StartsWith('/')) .ToDictionary(x => (EEmote)x.RowId, x => x.Command!) .AsReadOnly(); - _contentFinderConditionToContentId = dataManager.GetExcelSheet() + _contentFinderConditionToContentId = dataManager.GetExcelSheet()! .Where(x => x.RowId > 0 && x.Content > 0) .ToDictionary(x => x.RowId, x => x.Content) .AsReadOnly(); diff --git a/Questionable/Model/EMovementType.cs b/Questionable/Model/EMovementType.cs index c31e358a..eb645b03 100644 --- a/Questionable/Model/EMovementType.cs +++ b/Questionable/Model/EMovementType.cs @@ -1,4 +1,4 @@ -namespace Questionable; +namespace Questionable.Model; public enum EMovementType { diff --git a/Questionable/Model/Quest.cs b/Questionable/Model/Quest.cs index 511e5ef1..3944301a 100644 --- a/Questionable/Model/Quest.cs +++ b/Questionable/Model/Quest.cs @@ -1,12 +1,10 @@ using System.Linq; using Questionable.Model.V1; -namespace Questionable; +namespace Questionable.Model; internal sealed class Quest { - public required string FilePath { get; init; } - public required ushort QuestId { get; init; } public required string Name { get; set; } public required QuestData Data { get; init; } diff --git a/Questionable/Model/V1/QuestData.cs b/Questionable/Model/V1/QuestData.cs index 0787b0f8..3a1af260 100644 --- a/Questionable/Model/V1/QuestData.cs +++ b/Questionable/Model/V1/QuestData.cs @@ -4,7 +4,6 @@ namespace Questionable.Model.V1; public class QuestData { - public required int Version { get; set; } public required string Author { get; set; } public List Contributors { get; set; } = new(); public string? Comment { get; set; } diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4288_You and the Ailouros.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4288_You and the Ailouros.json deleted file mode 100644 index 57f31f08..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4288_You and the Ailouros.json +++ /dev/null @@ -1,96 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1037969, - "Position": { - "X": -611.90204, - "Y": -22.39482, - "Z": 510.42944 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041141, - "Position": { - "X": -614.313, - "Y": -22.39482, - "Z": 509.72766 - }, - "TerritoryId": 961, - "InteractionType": "WaitForManualProgress", - "Comment": "Follow" - }, - { - "Position": { - "X": -838.7837, - "Y": -39.605896, - "Z": 518.9479 - }, - "TerritoryId": 961, - "InteractionType": "WalkTo", - "Comment": "Unsure if this is sequence 1" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": -838.7837, - "Y": -39.605896, - "Z": 518.9479 - }, - "TerritoryId": 961, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14064, - 14065 - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1041137, - "Position": { - "X": -819.6994, - "Y": -38.65795, - "Z": 506.43152 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1037969, - "Position": { - "X": -611.90204, - "Y": -22.39482, - "Z": 510.42944 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4313_The Perks of Being a Lost Flower.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4313_The Perks of Being a Lost Flower.json deleted file mode 100644 index 6eff55ff..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4313_The Perks of Being a Lost Flower.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041847, - "Position": { - "X": -484.2146, - "Y": 141.86789, - "Z": -97.21527 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041848, - "Position": { - "X": 258.35046, - "Y": -10.140662, - "Z": -95.71985 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "AetheryteShortcut": "Elpis - Anagnorisis" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1041848, - "Position": { - "X": -175.03741, - "Y": 12.098856, - "Z": 6.8771067 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041847, - "Position": { - "X": -484.2146, - "Y": 141.86789, - "Z": -97.21527 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "AetheryteShortcut": "Elpis - Poieten Oikos" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4507_Touring Anagnorisis Part 1.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4507_Touring Anagnorisis Part 1.json deleted file mode 100644 index 43874793..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4507_Touring Anagnorisis Part 1.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041328, - "Position": { - "X": 166.39954, - "Y": 9.457411, - "Z": 236.34692 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041329, - "Position": { - "X": 233.99707, - "Y": 8.289929, - "Z": 270.71033 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1041329, - "Position": { - "X": 233.99707, - "Y": 8.289929, - "Z": 270.71033 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1037947, - "Position": { - "X": 115.28186, - "Y": 7.385857, - "Z": 306.11108 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 17 0 0 0 0 64" - }, - { - "DataId": 1037945, - "Position": { - "X": 144.79285, - "Y": 8.025643, - "Z": 202.47192 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "$.0": "[2]", - "$.2": "QuestVariables if done after [1]: 33 16 0 0 0 96", - "$.3": "QuestVariables if done after [3]: 32 17 0 0 0 160" - }, - { - "DataId": 1037962, - "Position": { - "X": 180.8346, - "Y": 10.385859, - "Z": 113.35925 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "$.0": 3, - "$.1": "QuestVariables if done first: 16 1 0 0 0 128" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041328, - "Position": { - "X": 166.39954, - "Y": 9.457411, - "Z": 236.34692 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4511_An Expected Guest.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4511_An Expected Guest.json deleted file mode 100644 index bc3a4f1e..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Elpis/4511_An Expected Guest.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041369, - "Position": { - "X": -639.85657, - "Y": 162.30406, - "Z": -189.47137 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -318.20203, - "Y": 147.32677, - "Z": -31.146088 - }, - "TerritoryId": 961, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14070 - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040888, - "Position": { - "X": -320.0885, - "Y": 147.4287, - "Z": -30.594421 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041369, - "Position": { - "X": -639.85657, - "Y": 162.30406, - "Z": -189.47137 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "AetheryteShortcut": "Elpis - Poieten Oikos" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4216_Best Delivered Cold.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4216_Best Delivered Cold.json deleted file mode 100644 index 1f2d90fe..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4216_Best Delivered Cold.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040898, - "Position": { - "X": -433.12738, - "Y": 22.221891, - "Z": 460.80713 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040899, - "Position": { - "X": -233.44781, - "Y": 22.17031, - "Z": 443.71704 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040899, - "Position": { - "X": 156.03712, - "Y": -19.711596, - "Z": 562.5593 - }, - "StopDistance": 1, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041122, - "Position": { - "X": 134.844, - "Y": -13.286316, - "Z": 649.8054 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4232_Children Are Our Future.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4232_Children Are Our Future.json deleted file mode 100644 index a1cae574..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4232_Children Are Our Future.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040633, - "Position": { - "X": 496.94043, - "Y": 10.887661, - "Z": -418.57025 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040634, - "Position": { - "X": 190.26465, - "Y": 10.5, - "Z": -630.2129 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012377, - "Position": { - "X": 189.10498, - "Y": 10.482849, - "Z": -668.9708 - }, - "TerritoryId": 958, - "InteractionType": "WaitForManualProgress", - "Comment": "Follow Azure-haired Boy" - }, - { - "DataId": 1040636, - "Position": { - "X": 21.744019, - "Y": 10.5, - "Z": -589.3187 - }, - "StopDistance": 1, - "TerritoryId": 958, - "InteractionType": "WalkTo" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": -18.56067, - "Y": 10.5, - "Z": -530.3922 - }, - "StopDistance": 1, - "TerritoryId": 958, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14101 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040637, - "Position": { - "X": -16.525574, - "Y": 10.5, - "Z": -532.15845 - }, - "StopDistance": 7, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040633, - "Position": { - "X": 496.94043, - "Y": 10.887661, - "Z": -418.57025 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "AetheryteShortcut": "Garlemald - Tertium" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4498_In Pursuit of Power.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4498_In Pursuit of Power.json deleted file mode 100644 index 4d3c6d48..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4498_In Pursuit of Power.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041753, - "Position": { - "X": -321.49237, - "Y": 22.009079, - "Z": 424.00232 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041754, - "Position": { - "X": -340.84082, - "Y": 22, - "Z": 500.57214 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1041754, - "Position": { - "X": -340.84082, - "Y": 22, - "Z": 500.57214 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012616, - "Position": { - "X": -332.3263, - "Y": 22.354431, - "Z": 457.7859 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 16 1 0 0 0 128" - }, - { - "DataId": 2012618, - "Position": { - "X": -338.03314, - "Y": 23.727722, - "Z": 394.88806 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "$.0": "[2]", - "$.1": "QuestVariables if done first: 16 16 0 0 0 32", - "$.2": "QuestVariables if done after [1]: 32 17 0 0 0 160" - }, - { - "DataId": 2012617, - "Position": { - "X": -434.8974, - "Y": 22.262878, - "Z": 425.58936 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "$.0": "[3]", - "$.1": "QuestVariables if done first: 17 0 0 0 0 64" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041755, - "Position": { - "X": -340.35254, - "Y": 22, - "Z": 502.037 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4502_Stranded at the Station.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4502_Stranded at the Station.json deleted file mode 100644 index 0f535400..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Garlemald/4502_Stranded at the Station.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041765, - "Position": { - "X": -323.4455, - "Y": 22, - "Z": 487.81555 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041766, - "Position": { - "X": 513.6339, - "Y": -19.82022, - "Z": -309.1936 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "AetheryteShortcut": "Garlemald - Tertium" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041767, - "Position": { - "X": 541.03906, - "Y": -36.65, - "Z": -132.46362 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4320_Gleaners Wish.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4320_Gleaners Wish.json deleted file mode 100644 index ae137fd2..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4320_Gleaners Wish.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041313, - "Position": { - "X": 89.28052, - "Y": -17.530382, - "Z": -74.906555 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041314, - "Position": { - "X": 78.3855, - "Y": -29.79994, - "Z": 159.5636 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012494, - "Position": { - "X": 78.96533, - "Y": -29.098999, - "Z": 161.02844 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Emote", - "Emote": "pray" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041313, - "Position": { - "X": 89.28052, - "Y": -17.530382, - "Z": -74.906555 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4329_Let the Good Times Troll.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4329_Let the Good Times Troll.json deleted file mode 100644 index bb4390ea..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4329_Let the Good Times Troll.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041129, - "Position": { - "X": -23.575256, - "Y": -31.53021, - "Z": 1.8463135 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 262.07907, - "Y": -18.527845, - "Z": 183.61182 - }, - "StopDistance": 1, - "TerritoryId": 956, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14123 - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1041128, - "Position": { - "X": 263.1112, - "Y": -18.597479, - "Z": 185.99219 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041129, - "Position": { - "X": -23.575256, - "Y": -31.53021, - "Z": 1.8463135 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4480_Lost Little Troll.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4480_Lost Little Troll.json deleted file mode 100644 index ff4153da..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4480_Lost Little Troll.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041667, - "Position": { - "X": 443.96118, - "Y": 65.162, - "Z": -105.4552 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012725, - "Position": { - "X": 693.1715, - "Y": 99.01575, - "Z": 123.52173 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012726, - "Position": { - "X": 806.79016, - "Y": 154.10083, - "Z": -149.64526 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1041681, - "Position": { - "X": 436.69788, - "Y": 166.19273, - "Z": -430.4723 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "AetheryteShortcut": "Labyrinthos - Archeion" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1041668, - "Position": { - "X": 394.12524, - "Y": 173.82095, - "Z": -646.75366 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1041670, - "Position": { - "X": 285.23682, - "Y": 185.65448, - "Z": -729.67114 - }, - "StopDistance": 1, - "TerritoryId": 956, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14069 - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041670, - "Position": { - "X": 285.23682, - "Y": 185.65448, - "Z": -729.67114 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4484_The Lad in Labyrinthos.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4484_The Lad in Labyrinthos.json deleted file mode 100644 index 84b3ed64..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Labyrinthos/4484_The Lad in Labyrinthos.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041683, - "Position": { - "X": -29.984009, - "Y": -31.53043, - "Z": -23.758362 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041684, - "Position": { - "X": 50.43103, - "Y": -29.530062, - "Z": 27.115234 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041685, - "Position": { - "X": 154.89429, - "Y": -17.530376, - "Z": -66.2395 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4240_True Carrot Crimes.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4240_True Carrot Crimes.json deleted file mode 100644 index c61cab8f..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4240_True Carrot Crimes.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1037867, - "Position": { - "X": -301.62512, - "Y": -144.00002, - "Z": -491.14215 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041132, - "Position": { - "X": -558.1293, - "Y": -168, - "Z": -475.3338 - }, - "TerritoryId": 959, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14053 - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "Position": { - "X": -719.5691, - "Y": -152.90369, - "Z": -807.82135 - }, - "TerritoryId": 959, - "InteractionType": "ShouldBeAJump", - "Comment": "Navmesh can't jump (TODO this is super out of the way)" - }, - { - "DataId": 2012018, - "Position": { - "X": -733.63855, - "Y": -139.6659, - "Z": -733.30286 - }, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818367 - }, - { - "DataId": 1037867, - "Position": { - "X": -301.62512, - "Y": -144.00002, - "Z": -491.14215 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4241_Carrots Its Whats for Dinner.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4241_Carrots Its Whats for Dinner.json deleted file mode 100644 index d620cb1c..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4241_Carrots Its Whats for Dinner.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039520, - "Position": { - "X": -287.8615, - "Y": -143.50005, - "Z": -520.28687 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -345.7338, - "Y": -161.8501, - "Z": -646.97064 - }, - "TerritoryId": 959, - "InteractionType": "ShouldBeAJump", - "Comment": "Navmesh can't jump" - }, - { - "DataId": 1041789, - "StopDistance": 3, - "TerritoryId": 959, - "InteractionType": "Say", - "ChatMessage": "carrot of happiness" - }, - { - "DataId": 1041790, - "Position": { - "X": -482.01727, - "Y": -167.50002, - "Z": -545.6169 - }, - "StopDistance": 3, - "TerritoryId": 959, - "InteractionType": "Say", - "ChatMessage": "carrot of happiness", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 192" - }, - { - "Position": { - "X": -438.33246, - "Y": -168.00002, - "Z": -420.43494 - }, - "TerritoryId": 959, - "InteractionType": "ShouldBeAJump", - "Comment": "Navmesh can't jump" - }, - { - "DataId": 1041791, - "StopDistance": 3, - "TerritoryId": 959, - "InteractionType": "Say", - "ChatMessage": "carrot of happiness" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "Position": { - "X": -376.5167, - "Y": -168, - "Z": -432.03497 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "DataId": 1039520, - "Position": { - "X": -287.8615, - "Y": -143.50005, - "Z": -520.28687 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4253_Alluring Allag.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4253_Alluring Allag.json deleted file mode 100644 index 0bc968ef..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4253_Alluring Allag.json +++ /dev/null @@ -1,153 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041123, - "Position": { - "X": -81.864685, - "Y": -132.74333, - "Z": -521.6602 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012015, - "Position": { - "X": 591.3633, - "Y": 149.33997, - "Z": 114.91565 - }, - "StopDistance": 4, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818364, - "Comment": "TODO Unsure if this can be reached via navmesh directly from Bestways Burrows" - }, - { - "DataId": 1041127, - "Position": { - "X": 537.3159, - "Y": 132.40395, - "Z": 233.81396 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012338, - "Position": { - "X": 700.19055, - "Y": 135.21008, - "Z": 229.48035 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "$.1": "QuestVariables if done first: 17 0 0 0 0 32" - }, - { - "DataId": 1041125, - "Position": { - "X": 735.5, - "Y": 151.08012, - "Z": 189.01343 - }, - "TerritoryId": 959, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14050 - ], - "$.1": "QuestVariables if done after [1]: 33 1 0 0 0 160" - }, - { - "DataId": 1041124, - "Position": { - "X": 663.6301, - "Y": 128.48961, - "Z": 188.18945 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1041127, - "Position": { - "X": 537.3159, - "Y": 132.40395, - "Z": 233.81396 - }, - "StopDistance": 1, - "TerritoryId": 959, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14049 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1041127, - "Position": { - "X": 537.3159, - "Y": 132.40395, - "Z": 233.81396 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2012016, - "Position": { - "X": 388.3573, - "Y": 99.90076, - "Z": 306.05017 - }, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818365 - }, - { - "DataId": 1041123, - "Position": { - "X": -81.864685, - "Y": -132.74333, - "Z": -521.6602 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4516_Name That Way.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4516_Name That Way.json deleted file mode 100644 index 38d7f401..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Mare Lamentorum/4516_Name That Way.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041555, - "Position": { - "X": 26.443848, - "Y": -129.20917, - "Z": -536.9497 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041556, - "Position": { - "X": 113.14563, - "Y": -133.07352, - "Z": -465.17133 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1041745, - "Position": { - "X": 66.23938, - "Y": -133.00002, - "Z": -432.8222 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "Comment": "Cheerful Loporrit", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 64" - }, - { - "DataId": 1041746, - "Position": { - "X": -85.83203, - "Y": -133.0356, - "Z": -507.1336 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "Comment": "Stern Loporrit", - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 96" - }, - { - "DataId": 1041744, - "Position": { - "X": -110.12439, - "Y": -133.07341, - "Z": -556.7865 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "Comment": "Easygoing Loporrit" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041556, - "Position": { - "X": 113.14563, - "Y": -133.07352, - "Z": -465.17133 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4203_Alchemist or Dancer.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4203_Alchemist or Dancer.json deleted file mode 100644 index 117f09a0..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4203_Alchemist or Dancer.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1037670, - "Position": { - "X": -508.84262, - "Y": -3.7109916E-05, - "Z": -20.767578 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039382, - "Position": { - "X": 17.07483, - "Y": 90.248795, - "Z": -133.34863 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011912, - "Position": { - "X": 65.293335, - "Y": 96.29968, - "Z": -130.23578 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "$": "QuestVariables after: 16 1 0 0 0 128" - }, - { - "Position": { - "X": 61.000668, - "Y": 94.60124, - "Z": -159.90234 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 2011914, - "TerritoryId": 957, - "InteractionType": "Interact", - "$": "QuestVariables after: 32 17 0 0 0 160" - }, - { - "DataId": 2011913, - "Position": { - "X": 79.51477, - "Y": 93.0647, - "Z": -157.09167 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039382, - "Position": { - "X": 17.07483, - "Y": 90.248795, - "Z": -133.34863 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1037670, - "Position": { - "X": -508.84262, - "Y": -3.7109916E-05, - "Z": -20.767578 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Great Work" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4257_In Agamas Footsteps.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4257_In Agamas Footsteps.json deleted file mode 100644 index e6170225..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4257_In Agamas Footsteps.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040864, - "Position": { - "X": 462.51624, - "Y": 14.320099, - "Z": -219.86731 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040862, - "Position": { - "X": -27.023743, - "Y": 26.58384, - "Z": -178.63745 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "Comment": "Unclear if this can be done automatically, enemies seem to despawn" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012261, - "Position": { - "X": 334.67603, - "Y": 13.076904, - "Z": -239.7956 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "Mount": false, - "Sprint": false - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040864, - "Position": { - "X": 462.51624, - "Y": 14.320099, - "Z": -219.86731 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4259_Radiant Patrol.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4259_Radiant Patrol.json deleted file mode 100644 index fc857101..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4259_Radiant Patrol.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040669, - "Position": { - "X": 381.64343, - "Y": 3.1891773, - "Z": -207.20227 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040670, - "Position": { - "X": 422.62903, - "Y": 7.427357, - "Z": -60.68518 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012232, - "Position": { - "X": 660.8529, - "Y": 36.423218, - "Z": 89.09741 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 64 - ], - "$": "QuestVariables after: 17 0 0 0 0 64" - }, - { - "DataId": 1040850, - "Position": { - "X": 411.0321, - "Y": 7.9535227, - "Z": 302.8152 - }, - "StopDistance": 1, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14111 - ], - "CompletionQuestVariablesFlags": [ - null, - 1, - null, - null, - null, - null - ], - "$": "QuestVariables after killing enemy: 17 1 0 0 0 64" - }, - { - "DataId": 1040850, - "Position": { - "X": 411.0321, - "Y": 7.9535227, - "Z": 302.8152 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 32 - ], - "$": "QuestVariables after: 33 2 0 0 0 96" - }, - { - "DataId": 2012231, - "Position": { - "X": 343.9536, - "Y": 6.362976, - "Z": 372.54907 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 128 - ], - "$": "QuestVariables if done first: 16 16 16 0 0 128" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040670, - "Position": { - "X": 422.62903, - "Y": 7.427357, - "Z": -60.68518 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040669, - "Position": { - "X": 381.64343, - "Y": 3.1891773, - "Z": -207.20227 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4489_Steppe Child.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4489_Steppe Child.json deleted file mode 100644 index a5d84e78..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Thavnair/4489_Steppe Child.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041331, - "Position": { - "X": 202.4414, - "Y": 1.769943, - "Z": 727.7484 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041333, - "Position": { - "X": 190.6919, - "Y": 14.1185875, - "Z": 489.4635 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1041334, - "Position": { - "X": 123.125, - "Y": 16.522793, - "Z": 537.8042 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": 167.34262, - "Y": 41.652294, - "Z": 409.31412 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14043 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1041338, - "Position": { - "X": 167.1626, - "Y": 41.614826, - "Z": 409.53687 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1041334, - "Position": { - "X": 123.125, - "Y": 16.522793, - "Z": 537.8042 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041332, - "Position": { - "X": 194.68982, - "Y": 14.118598, - "Z": 485.9845 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4342_Ending as One.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4342_Ending as One.json deleted file mode 100644 index 83d7f94c..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4342_Ending as One.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040876, - "Position": { - "X": 49.42395, - "Y": 269.25684, - "Z": -523.2472 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -41.26438, - "Y": 274.85336, - "Z": -523.8633 - }, - "TerritoryId": 960, - "InteractionType": "Combat", - "EnemySpawnType": "OverworldEnemies", - "Comment": "Kill 2 Drifting Ea, TODO: add data ids", - "$": "QuestVariables: 0 0-16-32 0 0 0 0" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040876, - "Position": { - "X": 49.42395, - "Y": 269.25684, - "Z": -523.2472 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4346_A Most Stimulating Discussion.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4346_A Most Stimulating Discussion.json deleted file mode 100644 index 6927c115..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4346_A Most Stimulating Discussion.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038016, - "Position": { - "X": 105.42456, - "Y": 269.29584, - "Z": -454.3069 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040880, - "Position": { - "X": -110.185425, - "Y": 269.2062, - "Z": -713.5271 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "AetheryteShortcut": "Ultima Thule - Abode of the Ea" - }, - { - "DataId": 1040881, - "Position": { - "X": -201.86163, - "Y": 288.6714, - "Z": -466.331 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "$.0": "[2]", - "$.1": "QuestVariables if done after [3]: 32 17 0 0 0 160" - }, - { - "DataId": 1040879, - "Position": { - "X": -184.52734, - "Y": 267.47086, - "Z": -292.65283 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "$.0": "[3]", - "$.1": "QuestVariables if done first: 16 1 0 0 0 128" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038016, - "Position": { - "X": 105.42456, - "Y": 269.29584, - "Z": -454.3069 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4354_Combat Evolved.json b/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4354_Combat Evolved.json deleted file mode 100644 index 563ff11c..00000000 --- a/Questionable/QuestPaths/Endwalker/AetherCurrents/Ultima Thule/4354_Combat Evolved.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038043, - "Position": { - "X": 470.4203, - "Y": 437.00183, - "Z": 315.81592 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 656.94653, - "Y": 437.98502, - "Z": 302.6322 - }, - "StopDistance": 0.5, - "TerritoryId": 960, - "InteractionType": "WaitForManualProgress", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14044 - ], - "Comment": "Can maybe be automated to use item depending on quest vars??" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038043, - "Position": { - "X": 470.4203, - "Y": 437.00183, - "Z": 315.81592 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4357_The Next Ship to Sail.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4357_The Next Ship to Sail.json deleted file mode 100644 index 033b9f99..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4357_The Next Ship to Sail.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1036452, - "Position": { - "X": -2.2736206, - "Y": 0, - "Z": -8.835022 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038570, - "Position": { - "X": -374.6853, - "Y": 7.999938, - "Z": 45.822754 - }, - "TerritoryId": 129, - "InteractionType": "Interact", - "AetheryteShortcut": "Limsa Lominsa", - "AethernetShortcut": [ - "[Limsa Lominsa] Aetheryte Plaza", - "[Limsa Lominsa] Arcanist's Guild" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038578, - "Position": { - "X": 49.69861, - "Y": -16.246998, - "Z": 145.2201 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4358_Old Sharlayan New to You.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4358_Old Sharlayan New to You.json deleted file mode 100644 index 06d2607f..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4358_Old Sharlayan New to You.json +++ /dev/null @@ -1,254 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038578, - "Position": { - "X": 49.69861, - "Y": -16.246998, - "Z": 145.2201 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038584, - "Position": { - "X": 47.68445, - "Y": -16.246998, - "Z": 147.02063 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038578, - "Position": { - "X": 49.69861, - "Y": -16.246998, - "Z": 145.2201 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 189, - "Position": { - "X": 16.49812, - "Y": -16.247, - "Z": 127.753 - }, - "TerritoryId": 962, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1038578, - "Position": { - "X": -56.737106, - "Y": -15.127001, - "Z": 130.76611 - }, - "StopDistance": 0.25, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": -8.38828, - "Y": 3.2249968, - "Z": 9.224017 - }, - "TerritoryId": 962, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038578, - "Position": { - "X": -0.03130532, - "Y": 3.2249997, - "Z": 8.909777 - }, - "StopDistance": 0.25, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 182, - "Position": { - "X": 0.08138847, - "Y": 4.818894, - "Z": -0.1004486 - }, - "StopDistance": 10, - "TerritoryId": 962, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1038578, - "Position": { - "X": 66.10567, - "Y": 5.0999994, - "Z": -63.37148 - }, - "StopDistance": 0.25, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": 93.30914, - "Y": 8.920153, - "Z": -89.12467 - }, - "TerritoryId": 962, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 96.67595, - "Y": 15.025446, - "Z": -134.08261 - }, - "TerritoryId": 962, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038578, - "Position": { - "X": -0.4629783, - "Y": 41.37599, - "Z": -142.5033 - }, - "StopDistance": 0.25, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 186, - "Position": { - "X": -36.94214, - "Y": 41.367188, - "Z": -156.6034 - }, - "TerritoryId": 962, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1038578, - "Position": { - "X": 149.26689, - "Y": 18.800978, - "Z": -142.65858 - }, - "StopDistance": 0.25, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 187, - "Position": { - "X": 204.79126, - "Y": 21.774597, - "Z": -118.73047 - }, - "TerritoryId": 962, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 188, - "Position": { - "X": 206.22559, - "Y": 1.8463135, - "Z": 13.77887 - }, - "TerritoryId": 962, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1038578, - "Position": { - "X": -82.642426, - "Y": 1.0594833, - "Z": 30.052902 - }, - "StopDistance": 0.25, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Journey's End", - "[Old Sharlayan] Aetheryte Plaza" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.56799, - "Y": 5.0201416, - "Z": 4.5318604 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - }, - { - "DataId": 1038586, - "Position": { - "X": -0.015319824, - "Y": 1.9073486E-06, - "Z": -0.77819824 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4359_Hitting the Books.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4359_Hitting the Books.json deleted file mode 100644 index 26d0912b..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4359_Hitting the Books.json +++ /dev/null @@ -1,182 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038670, - "Position": { - "X": -2.609314, - "Y": 1.9073486E-06, - "Z": 0.16778564 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011937, - "Position": { - "X": -0.009068698, - "Y": 1.151502, - "Z": 14.81335 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - }, - { - "DataId": 185, - "Position": { - "X": -92.21033, - "Y": 2.304016, - "Z": 29.709229 - }, - "TerritoryId": 962, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 184, - "Position": { - "X": -291.1574, - "Y": 20.004517, - "Z": -74.143616 - }, - "TerritoryId": 962, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1038675, - "Position": { - "X": -301.38098, - "Y": 18.47832, - "Z": 10.849121 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011828, - "Position": { - "X": -320.72937, - "Y": 20.248657, - "Z": 57.99951 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "$.0": "[1]", - "$.2": "QuestVariables if done after [3]: 2 0 0 0 0 96" - }, - { - "DataId": 2011825, - "Position": { - "X": -370.47382, - "Y": 20.248657, - "Z": 100.1449 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "$.0": "[2]" - }, - { - "DataId": 2011826, - "Position": { - "X": -385.36664, - "Y": 20.248657, - "Z": 43.289795 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "$.0": "[3]", - "$.2": "QuestVariables if used first: 1 0 0 0 0 64" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2011830, - "Position": { - "X": -276.0205, - "Y": 18.997375, - "Z": 18.936401 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2011830, - "Position": { - "X": -276.0205, - "Y": 18.997375, - "Z": 18.936401 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2011830, - "Position": { - "X": -276.0205, - "Y": 18.997375, - "Z": 18.936401 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1038679, - "Position": { - "X": -275.5932, - "Y": 19.003881, - "Z": 13.321045 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038679, - "Position": { - "X": -275.5932, - "Y": 19.003881, - "Z": 13.321045 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4360_A Seat at the Last Stand.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4360_A Seat at the Last Stand.json deleted file mode 100644 index 6ec1ab09..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4360_A Seat at the Last Stand.json +++ /dev/null @@ -1,166 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038681, - "Position": { - "X": -281.11694, - "Y": 19.003874, - "Z": 18.966919 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038682, - "Position": { - "X": -69.13867, - "Y": -15.127, - "Z": 113.572876 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Studium", - "[Old Sharlayan] Scholar's Harbor" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1037079, - "Position": { - "X": -81.04071, - "Y": -13.777, - "Z": 117.32654 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - }, - { - "DataId": 1037078, - "Position": { - "X": -42.557434, - "Y": -14.1693125, - "Z": 111.49768 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1037077, - "Position": { - "X": -38.066784, - "Y": -14.169313, - "Z": 107.68768 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2011831, - "Position": { - "X": -86.90015, - "Y": -12.985474, - "Z": 130.47986 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2011832, - "Position": { - "X": -74.57086, - "Y": -12.985474, - "Z": 141.1001 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 2011833, - "Position": { - "X": -74.57086, - "Y": -12.985474, - "Z": 148.11926 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1038683, - "Position": { - "X": -36.697998, - "Y": -14.169313, - "Z": 114.76306 - }, - "StopDistance": 7, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "Position": { - "X": 19.79008, - "Y": -16.247002, - "Z": 108.36692 - }, - "TerritoryId": 962, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038684, - "Position": { - "X": 29.007324, - "Y": -14.446999, - "Z": 76.46289 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4361_A Labyrinthine Descent.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4361_A Labyrinthine Descent.json deleted file mode 100644 index 4e8a1be2..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4361_A Labyrinthine Descent.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038684, - "Position": { - "X": 29.007324, - "Y": -14.446999, - "Z": 76.46289 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038679, - "Position": { - "X": -275.5932, - "Y": 19.003881, - "Z": 13.321045 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Scholar's Harbor", - "[Old Sharlayan] The Studium" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038753, - "Position": { - "X": -234.21082, - "Y": 12.969517, - "Z": -27.054321 - }, - "TerritoryId": 962, - "InteractionType": "WaitForManualProgress", - "Comment": "Follow Alisaie" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038688, - "Position": { - "X": -69.5354, - "Y": 18.043928, - "Z": -321.40082 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038692, - "Position": { - "X": -1.5411987, - "Y": 170.403, - "Z": -748.0125 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - }, - { - "DataId": 1037473, - "Position": { - "X": -27.17633, - "Y": 170.40298, - "Z": -722.46893 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - }, - { - "DataId": 1037472, - "Position": { - "X": -74.69299, - "Y": 170.403, - "Z": -755.67255 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038695, - "Position": { - "X": -52.384216, - "Y": 170.403, - "Z": -734.7677 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4362_Glorified Ratcatcher.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4362_Glorified Ratcatcher.json deleted file mode 100644 index 6c73776c..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4362_Glorified Ratcatcher.json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038695, - "Position": { - "X": -52.384216, - "Y": 170.403, - "Z": -734.7677 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038692, - "Position": { - "X": -1.5411987, - "Y": 170.403, - "Z": -748.0125 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038699, - "Position": { - "X": 128.00781, - "Y": 186.03699, - "Z": -740.9324 - }, - "StopDistance": 1, - "TerritoryId": 956, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14024 - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038699, - "Position": { - "X": 128.00781, - "Y": 186.03699, - "Z": -740.9324 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038700, - "Position": { - "X": 259.0829, - "Y": 166.40231, - "Z": -595.69696 - }, - "TerritoryId": 956, - "StopDistance": 1, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14023, - 14022 - ] - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038700, - "Position": { - "X": 259.0829, - "Y": 166.40231, - "Z": -595.69696 - }, - "TerritoryId": 956, - "InteractionType": "UseItem", - "ItemId": 2003129 - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": 222.61905, - "Y": 182.78828, - "Z": -704.0299 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo" - }, - { - "DataId": 2011980, - "Position": { - "X": 346.51697, - "Y": 209.3385, - "Z": -767.7577 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818314 - }, - { - "DataId": 1038701, - "Position": { - "X": 280.38452, - "Y": 216.34708, - "Z": -823.3921 - }, - "TerritoryId": 956, - "InteractionType": "UseItem", - "ItemId": 2003129 - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1038757, - "Position": { - "X": -1.9074707, - "Y": 170.403, - "Z": -751.5221 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "Position": { - "X": 254.80028, - "Y": 163.44171, - "Z": -626.4951 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038702, - "Position": { - "X": 394.27783, - "Y": 165.94997, - "Z": -521.294 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4363_Deeper into the Maze.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4363_Deeper into the Maze.json deleted file mode 100644 index 563f3961..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4363_Deeper into the Maze.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038702, - "Position": { - "X": 394.27783, - "Y": 165.94997, - "Z": -521.294 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 166, - "Position": { - "X": 443.5338, - "Y": 170.6416, - "Z": -476.18835 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1037475, - "Position": { - "X": 379.14087, - "Y": 170.1, - "Z": -410.97125 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038712, - "Position": { - "X": 415.8236, - "Y": 166.41167, - "Z": -451.10248 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038714, - "Position": { - "X": 383.01672, - "Y": 166.19273, - "Z": -464.7746 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - }, - { - "DataId": 1038716, - "Position": { - "X": 468.10095, - "Y": 166.2036, - "Z": -458.2132 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038717, - "Position": { - "X": 579.91907, - "Y": 168.84044, - "Z": -517.3572 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2011839, - "Position": { - "X": 576.8367, - "Y": 168.99365, - "Z": -519.18823 - }, - "TerritoryId": 956, - "InteractionType": "SinglePlayerDuty", - "Comment": "Duty - Shoot Large Green Bird" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038718, - "Position": { - "X": 644.9835, - "Y": 185.14716, - "Z": -130.23578 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4364_The Medial Circuit.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4364_The Medial Circuit.json deleted file mode 100644 index 585726f7..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4364_The Medial Circuit.json +++ /dev/null @@ -1,196 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038719, - "Position": { - "X": 646.3264, - "Y": 185.07715, - "Z": -131.97534 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011981, - "Position": { - "X": 748.53125, - "Y": 106.7063, - "Z": 66.75818 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818315 - }, - { - "Position": { - "X": 760.1999, - "Y": 145.74788, - "Z": -52.025288 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo" - }, - { - "DataId": 2011840, - "Position": { - "X": 828.33594, - "Y": 147.8446, - "Z": -72.22095 - }, - "TerritoryId": 956, - "EnemySpawnType": "AfterInteraction", - "InteractionType": "Combat", - "KillEnemyDataIds": [ - 14020 - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011841, - "Position": { - "X": 813.6262, - "Y": 158.64807, - "Z": 126.57361 - }, - "TerritoryId": 956, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14021 - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038722, - "Position": { - "X": 621.3015, - "Y": 97.13325, - "Z": 182.17737 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": 483.16574, - "Y": 83.132675, - "Z": 74.693695 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo", - "Comment": "Avoids aggroing some enemies on the hill" - }, - { - "DataId": 2011842, - "Position": { - "X": 492.1797, - "Y": 64.86609, - "Z": -44.571655 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1037985, - "Position": { - "X": 481.8036, - "Y": 66.16195, - "Z": -108.537415 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - }, - { - "DataId": 1038707, - "Position": { - "X": 455.80212, - "Y": 65.16199, - "Z": -150.04199 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - }, - { - "DataId": 1038708, - "Position": { - "X": 408.31604, - "Y": 65.3329, - "Z": -130.11371 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 2011984, - "Position": { - "X": 497.09314, - "Y": 73.41101, - "Z": -267.23126 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818320 - }, - { - "DataId": 2011843, - "Position": { - "X": 312.64197, - "Y": 97.3678, - "Z": -257.34344 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038732, - "Position": { - "X": 321.43127, - "Y": 97.50893, - "Z": -279.92682 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4365_The Full Reports Warts and All.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4365_The Full Reports Warts and All.json deleted file mode 100644 index 4c352a19..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4365_The Full Reports Warts and All.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038731, - "Position": { - "X": 324.84924, - "Y": 97.07327, - "Z": -282.21564 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 304.306, - "Y": 84.01365, - "Z": -292.01114 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo", - "DisableNavmesh": true, - "Mount": true - }, - { - "DataId": 1038736, - "Position": { - "X": 177.26404, - "Y": 56.63088, - "Z": -411.5511 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038738, - "Position": { - "X": 177.05042, - "Y": 56.567654, - "Z": -409.41486 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": -156.15488, - "Y": 81.17488, - "Z": -534.99316 - }, - "StopDistance": 0.25, - "TerritoryId": 956, - "InteractionType": "WalkTo" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038740, - "Position": { - "X": -256.27533, - "Y": 79.75535, - "Z": -502.12863 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4366_A Guide of Sorts.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4366_A Guide of Sorts.json deleted file mode 100644 index d15b6634..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4366_A Guide of Sorts.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038741, - "Position": { - "X": -257.9538, - "Y": 79.7362, - "Z": -502.06763 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -329.64972, - "Y": 77.91884, - "Z": -448.5044 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": -327.6718, - "Y": 79.535736, - "Z": -400.00397 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo" - }, - { - "DataId": 2011982, - "Position": { - "X": -316.30432, - "Y": 79.75891, - "Z": -395.31555 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818318 - }, - { - "Position": { - "X": -300.80545, - "Y": 59.384476, - "Z": -409.0928 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo", - "DisableNavmesh": true, - "Mount": true - }, - { - "DataId": 2011983, - "Position": { - "X": 32.303345, - "Y": 72.83118, - "Z": -286.27454 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818319 - }, - { - "DataId": 1038736, - "Position": { - "X": 177.26404, - "Y": 56.63088, - "Z": -411.5511 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": 253.34096, - "Y": 71.49686, - "Z": -241.08495 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo", - "Comment": "Needed for Navmesh" - }, - { - "DataId": 1038744, - "Position": { - "X": 315.4497, - "Y": 96.90322, - "Z": -259.23553 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038747, - "Position": { - "X": -1.6022339, - "Y": 41.37599, - "Z": -141.16125 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4367_Estate Visitor.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4367_Estate Visitor.json deleted file mode 100644 index 2884f8a8..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4367_Estate Visitor.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038746, - "Position": { - "X": 2.5481567, - "Y": 41.37599, - "Z": -142.1684 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038745, - "Position": { - "X": 1.663208, - "Y": 41.37599, - "Z": -141.00867 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038746, - "Position": { - "X": 2.5481567, - "Y": 41.37599, - "Z": -142.1684 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040284, - "Position": { - "X": 219.22632, - "Y": 25.041138, - "Z": -160.60126 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Rostra", - "[Old Sharlayan] The Leveilleur Estate" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040285, - "Position": { - "X": 222.03394, - "Y": 21.878136, - "Z": -120.43945 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.56799, - "Y": 5.0201416, - "Z": 4.5318604 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Leveilleur Estate", - "[Old Sharlayan] The Baldesion Annex" - ] - }, - { - "DataId": 1040291, - "Position": { - "X": -1.9379272, - "Y": 1.9073486E-06, - "Z": 1.5715942 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4368_For Thavnair Bound.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4368_For Thavnair Bound.json deleted file mode 100644 index eaaa25c9..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4368_For Thavnair Bound.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041250, - "Position": { - "X": 4.0740967, - "Y": 1.9073486E-06, - "Z": 2.029419 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011937, - "Position": { - "X": -0.015319824, - "Y": 1.1443481, - "Z": 14.785889 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - }, - { - "DataId": 1038592, - "Position": { - "X": -83.05487, - "Y": 6.6169996, - "Z": -39.383606 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011947, - "Position": { - "X": -15.4574585, - "Y": 2.7922974, - "Z": -8.98761 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038599, - "Position": { - "X": 168.87158, - "Y": 5.3451567, - "Z": 633.93604 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038599, - "Position": { - "X": 168.87158, - "Y": 5.3451567, - "Z": 633.93604 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038599, - "Position": { - "X": 168.87158, - "Y": 5.3451567, - "Z": 633.93604 - }, - "TerritoryId": 957, - "InteractionType": "Emote", - "Emote": "deny" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1038598, - "Position": { - "X": 187.42651, - "Y": 9.9744425, - "Z": 592.2178 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038597, - "Position": { - "X": 189.25769, - "Y": 9.9744425, - "Z": 590.0206 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4369_On Low Tide.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4369_On Low Tide.json deleted file mode 100644 index a828bbfa..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4369_On Low Tide.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038600, - "Position": { - "X": 189.92896, - "Y": 9.9744425, - "Z": 589.89844 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 169, - "Position": { - "X": 193.529, - "Y": 6.991216, - "Z": 629.2394 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 2011948, - "Position": { - "X": 204.66919, - "Y": 2.243042, - "Z": 715.4192 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1037622, - "Position": { - "X": 189.94562, - "Y": 0.8560083, - "Z": 702.7896 - }, - "StopDistance": 0.25, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 2011949, - "Position": { - "X": 200, - "Y": 1.7547607, - "Z": 768.9784 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1037623, - "Position": { - "X": 220.78271, - "Y": 1.8349868, - "Z": 759.4263 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": 200.24112, - "Y": 1.7700036, - "Z": 712.99384 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 240.97523, - "Y": 0.8542664, - "Z": 712.4415 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038606, - "Position": { - "X": 277.72937, - "Y": 2.9636285, - "Z": 703.7003 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038608, - "Position": { - "X": 197.55847, - "Y": 1.769943, - "Z": 737.97205 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4370_A Fishermans Friend.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4370_A Fishermans Friend.json deleted file mode 100644 index a306f320..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4370_A Fishermans Friend.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038608, - "Position": { - "X": 197.55847, - "Y": 1.769943, - "Z": 737.97205 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038608, - "Position": { - "X": 197.55847, - "Y": 1.769943, - "Z": 737.97205 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1037625, - "Position": { - "X": 176.47058, - "Y": 1.8742183, - "Z": 799.2217 - }, - "TerritoryId": 957, - "InteractionType": "CutsceneSelectString", - "DialogueChoices": [ - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A2_000_088" - }, - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A3_000_098" - }, - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A5_000_107" - } - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1037626, - "Position": { - "X": 166.61316, - "Y": 4.763736, - "Z": 681.7273 - }, - "TerritoryId": 957, - "InteractionType": "CutsceneSelectString", - "DialogueChoices": [ - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A6_000_149" - }, - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A7_000_158" - }, - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A8_000_164" - } - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1037624, - "Position": { - "X": 213.91614, - "Y": 15.136713, - "Z": 517.72327 - }, - "TerritoryId": 957, - "InteractionType": "CutsceneSelectString", - "DialogueChoices": [ - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A9_000_200" - }, - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A10_000_209" - }, - { - "ExcelSheet": "quest/043/AktKma114_04370", - "Answer": "TEXT_AKTKMA114_04370_A11_000_218" - } - ] - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "Position": { - "X": 232.93636, - "Y": 15.136732, - "Z": 526.6279 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "Mount": true - }, - { - "DataId": 2011992, - "Position": { - "X": 303.91382, - "Y": 0.25933838, - "Z": 473.65527 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818333, - "DisableNavmesh": true - }, - { - "Position": { - "X": 201.66586, - "Y": 1.7700036, - "Z": 712.9197 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 199.50157, - "Y": 1.769943, - "Z": 738.831 - }, - "StopDistance": 0.25, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038608, - "Position": { - "X": 199.48804, - "Y": 1.769943, - "Z": 738.9843 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "Mount": false - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038609, - "Position": { - "X": 199.35901, - "Y": 5.873753, - "Z": 612.787 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4371_House of Divinities.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4371_House of Divinities.json deleted file mode 100644 index 8ef23c2e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4371_House of Divinities.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038611, - "Position": { - "X": 201.86157, - "Y": 5.880045, - "Z": 612.02405 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011951, - "Position": { - "X": 105.1499, - "Y": 7.7667847, - "Z": 581.5061 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011952, - "Position": { - "X": -13.290649, - "Y": 32.333862, - "Z": 499.07666 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038612, - "Position": { - "X": 31.937134, - "Y": 37.463673, - "Z": 379.5985 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14006 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038612, - "Position": { - "X": 31.937134, - "Y": 37.463673, - "Z": 379.5985 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2011990, - "Position": { - "X": -176.10437, - "Y": 21.530457, - "Z": 537.8346 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818329 - }, - { - "DataId": 1038616, - "Position": { - "X": -278.88916, - "Y": 2.740889, - "Z": 532.03625 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1037644, - "Position": { - "X": -293.72095, - "Y": 1.4600283, - "Z": 551.0491 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1037645, - "Position": { - "X": -271.0155, - "Y": 0.7022661, - "Z": 588.8303 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038616, - "Position": { - "X": -278.88916, - "Y": 2.740889, - "Z": 532.03625 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4372_The Great Work.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4372_The Great Work.json deleted file mode 100644 index ad1ec68a..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4372_The Great Work.json +++ /dev/null @@ -1,298 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "Comment": "This is possibly the least polished quest so far, as the follow steps are awkward (need to move >10 units away to trigger the follow-up)", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038616, - "Position": { - "X": -278.88916, - "Y": 2.740889, - "Z": 532.03625 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038620, - "Position": { - "X": -477.68372, - "Y": 5.0817194, - "Z": 19.21106 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 170, - "Position": { - "X": -527.4888, - "Y": 4.785123, - "Z": 36.76496 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1038631, - "Position": { - "X": -510.7958, - "Y": 11.975282, - "Z": 117.69275 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038635, - "Position": { - "X": -487.1443, - "Y": 49.161343, - "Z": 153.42944 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038636, - "Position": { - "X": -485.70996, - "Y": 49.103825, - "Z": 152.91064 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1038636, - "Position": { - "X": -425.414, - "Y": 38.415024, - "Z": 160.1206 - }, - "StopDistance": 4, - "TerritoryId": 957, - "InteractionType": "WaitForNpcAtPosition" - }, - { - "Position": { - "X": -425.43683, - "Y": 38.413155, - "Z": 160.11292 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038636, - "Position": { - "X": -425.414, - "Y": 38.415024, - "Z": 160.1206 - }, - "StopDistance": 4, - "TerritoryId": 957, - "InteractionType": "WalkTo" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1041219, - "Position": { - "X": -425.43683, - "Y": 38.413155, - "Z": 160.11292 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1041219, - "Position": { - "X": -419.6078, - "Y": 43.950115, - "Z": 87.3025 - }, - "StopDistance": 4, - "TerritoryId": 957, - "InteractionType": "WaitForNpcAtPosition" - }, - { - "Position": { - "X": -430.35034, - "Y": 46.160213, - "Z": 93.2392 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 1041220, - "Position": { - "X": -419.60785, - "Y": 43.9499, - "Z": 87.296875 - }, - "StopDistance": 4, - "TerritoryId": 957, - "InteractionType": "WalkTo" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1041220, - "Position": { - "X": -419.60785, - "Y": 43.9499, - "Z": 87.296875 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1041220, - "Position": { - "X": -444.7032, - "Y": 49.551, - "Z": 97.1969 - }, - "StopDistance": 4, - "TerritoryId": 957, - "InteractionType": "WaitForNpcAtPosition" - }, - { - "Position": { - "X": -433.19608, - "Y": 46.94587, - "Z": 93.295135 - }, - "StopDistance": 0.35, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 1041221, - "Position": { - "X": -444.72424, - "Y": 49.55681, - "Z": 97.18469 - }, - "StopDistance": 4, - "TerritoryId": 957, - "InteractionType": "WalkTo" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1041221, - "Position": { - "X": -444.72424, - "Y": 49.55681, - "Z": 97.18469 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1041221, - "Position": { - "X": -484.5909, - "Y": 54.18516, - "Z": 128.3601 - }, - "StopDistance": 4, - "TerritoryId": 957, - "InteractionType": "WaitForNpcAtPosition" - }, - { - "Position": { - "X": -472.65085, - "Y": 53.779083, - "Z": 124.34451 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038637, - "Position": { - "X": -484.61133, - "Y": 54.187614, - "Z": 128.34363 - }, - "StopDistance": 4, - "TerritoryId": 957, - "InteractionType": "WalkTo" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 1038637, - "Position": { - "X": -484.61133, - "Y": 54.187614, - "Z": 128.34363 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038635, - "Position": { - "X": -487.1443, - "Y": 49.161343, - "Z": 153.42944 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4373_Shadowed Footsteps.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4373_Shadowed Footsteps.json deleted file mode 100644 index 135528e6..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4373_Shadowed Footsteps.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038635, - "Position": { - "X": -487.1443, - "Y": 49.161343, - "Z": 153.42944 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038638, - "Position": { - "X": -230.6402, - "Y": 27.619656, - "Z": 23.727722 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14004 - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038638, - "Position": { - "X": -230.6402, - "Y": 27.619656, - "Z": 23.727722 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038639, - "Position": { - "X": -15.030151, - "Y": 84.48873, - "Z": -71.000244 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2011954, - "Position": { - "X": 31.60144, - "Y": 90.22656, - "Z": -154.65027 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038641, - "Position": { - "X": 34.62268, - "Y": 90.26942, - "Z": -159.80774 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038631, - "Position": { - "X": -510.7958, - "Y": 11.975282, - "Z": 117.69275 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Great Work" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4374_A Boys Errand.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4374_A Boys Errand.json deleted file mode 100644 index 89133562..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4374_A Boys Errand.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038631, - "Position": { - "X": -510.7958, - "Y": 11.975282, - "Z": 117.69275 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038642, - "Position": { - "X": -384.1764, - "Y": 12.2027235, - "Z": 28.244385 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038642, - "Position": { - "X": -384.1764, - "Y": 12.2027235, - "Z": 28.244385 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1037646, - "Position": { - "X": -568.99365, - "Y": 9.817484, - "Z": -569.8787 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1037648, - "Position": { - "X": -562.005, - "Y": 9.817466, - "Z": -585.1987 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1037647, - "Position": { - "X": -588.83044, - "Y": 9.81748, - "Z": -590.08167 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038645, - "Position": { - "X": -549.24854, - "Y": 9.817465, - "Z": -563.04266 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038648, - "Position": { - "X": -557.641, - "Y": 9.672808, - "Z": -555.04694 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": -103.68971, - "Y": 88.84356, - "Z": -608.6588 - }, - "StopDistance": 0.25, - "TerritoryId": 957, - "InteractionType": "WalkTo" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1037649, - "Position": { - "X": -92.97333, - "Y": 89.5583, - "Z": -642.3591 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4375_Tipping the Scale.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4375_Tipping the Scale.json deleted file mode 100644 index 8d3327d7..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4375_Tipping the Scale.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1037649, - "Position": { - "X": -92.97333, - "Y": 89.5583, - "Z": -642.3591 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -82.02301, - "Y": 95.24942, - "Z": -697.3925 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": -78.47051, - "Y": 99.96379, - "Z": -711.17303 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 2011991, - "Position": { - "X": -49.271423, - "Y": 94.0719, - "Z": -710.7805 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818330, - "DisableNavmesh": true - }, - { - "DataId": 1038631, - "Position": { - "X": -510.7958, - "Y": 11.975282, - "Z": 117.69275 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Great Work" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011993, - "Position": { - "X": -479.45374, - "Y": 72.892334, - "Z": -561.82196 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818334 - }, - { - "Position": { - "X": -489.27457, - "Y": 72.74904, - "Z": -546.8438 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "Mount": true - }, - { - "Position": { - "X": -523.7225, - "Y": 9.401685, - "Z": -554.4276 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "DataId": 1038651, - "Position": { - "X": -699.67194, - "Y": -0.06901036, - "Z": -565.0569 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038652, - "Position": { - "X": -704.09705, - "Y": -0.090369135, - "Z": -562.4323 - }, - "StopDistance": 6, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038653, - "Position": { - "X": -492.0577, - "Y": 4.5676737, - "Z": 17.532532 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Great Work" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4376_The Satrap of Radz at Han.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4376_The Satrap of Radz at Han.json deleted file mode 100644 index 7c362e72..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4376_The Satrap of Radz at Han.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038653, - "Position": { - "X": -492.0577, - "Y": 4.5676737, - "Z": 17.532532 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -130.78743, - "Y": 86.83725, - "Z": -252.08578 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 2011994, - "Position": { - "X": -114.488464, - "Y": 87.08313, - "Z": -288.3192 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818335, - "DisableNavmesh": true - }, - { - "Position": { - "X": -156.25183, - "Y": 90.34184, - "Z": -399.8714 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": -126.149765, - "Y": 73.745605, - "Z": -427.64508 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "DataId": 1038656, - "Position": { - "X": 203.96729, - "Y": 60.34319, - "Z": -595.8496 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038657, - "Position": { - "X": 201.98364, - "Y": 60.34776, - "Z": -594.0185 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.56799, - "Y": 5.0201416, - "Z": 4.5318604 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AetheryteShortcut": "Old Sharlayan", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - }, - { - "DataId": 1038589, - "Position": { - "X": 4.0740967, - "Y": 1.9073486E-06, - "Z": 2.029419 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4377_In the Dark of the Tower.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4377_In the Dark of the Tower.json deleted file mode 100644 index 2750142d..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4377_In the Dark of the Tower.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040291, - "Position": { - "X": -1.9379272, - "Y": 1.9073486E-06, - "Z": 1.5715942 - }, - "StopDistance": 5, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1037646, - "Position": { - "X": -568.99365, - "Y": 9.817484, - "Z": -569.8787 - }, - "TerritoryId": 957, - "AetheryteShortcut": "Thavnair - Great Work", - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011956, - "Position": { - "X": -632.04395, - "Y": -0.015319824, - "Z": -659.6018 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "TerritoryId": 957, - "InteractionType": "Duty", - "ContentFinderConditionId": 783 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040252, - "Position": { - "X": -568.719, - "Y": 9.817484, - "Z": -581.323 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4378_The Jewel of Thavnair.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4378_The Jewel of Thavnair.json deleted file mode 100644 index b7f92b58..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4378_The Jewel of Thavnair.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040252, - "Position": { - "X": -568.719, - "Y": 9.817484, - "Z": -581.323 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040283, - "Position": { - "X": 210.31506, - "Y": 60.712387, - "Z": -600.76294 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040255, - "Position": { - "X": 57.26709, - "Y": -27.000013, - "Z": 177.5387 - }, - "StopDistance": 5, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 194, - "Position": { - "X": 6.6071167, - "Y": -2.02948, - "Z": 110.55151 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1040256, - "Position": { - "X": -4.135254, - "Y": -1.9999973, - "Z": 85.40466 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040257, - "Position": { - "X": -99.3515, - "Y": 20, - "Z": 110.52112 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040258, - "Position": { - "X": -149.43164, - "Y": 27.999998, - "Z": 171.12988 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 193, - "Position": { - "X": -144.33508, - "Y": 27.969727, - "Z": 202.2583 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 191, - "Position": { - "X": -365.95715, - "Y": 44.99878, - "Z": -31.815125 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1040259, - "Position": { - "X": -341.93945, - "Y": 55, - "Z": -70.603516 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040260, - "Position": { - "X": -377.27936, - "Y": 45.00252, - "Z": -28.610718 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4379_The Color of Joy.json b/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4379_The Color of Joy.json deleted file mode 100644 index d39b9f2a..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/A-Thavnair1-Labyrinthos1/4379_The Color of Joy.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040261, - "Position": { - "X": -377.61505, - "Y": 45.002518, - "Z": -29.922974 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040262, - "Position": { - "X": -237.01843, - "Y": 36, - "Z": 58.976074 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 192, - "Position": { - "X": -156.14563, - "Y": 35.99597, - "Z": 27.725586 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1040264, - "Position": { - "X": -106.49274, - "Y": 30.999998, - "Z": -14.54187 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040266, - "Position": { - "X": 3.982544, - "Y": -2.9207662E-05, - "Z": 0.99176025 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040268, - "Position": { - "X": 87.5105, - "Y": 1.8631812, - "Z": -121.41614 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040276, - "Position": { - "X": -99.076904, - "Y": 3.9334679, - "Z": 1.3884888 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AetheryteShortcut": "Old Sharlayan", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "StopDistance": 6, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4380_Sound the Bell, Schools in.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4380_Sound the Bell, Schools in.json deleted file mode 100644 index 02fa6fbf..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4380_Sound the Bell, Schools in.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038769, - "Position": { - "X": -88.700745, - "Y": 3.8989394, - "Z": 0.8086548 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038771, - "Position": { - "X": -107.49988, - "Y": 3.8006456, - "Z": 26.29126 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038773, - "Position": { - "X": -280.232, - "Y": 20, - "Z": -67.36859 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Baldesion Annex", - "[Old Sharlayan] The Studium" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038776, - "Position": { - "X": -310.78058, - "Y": 20.0375, - "Z": -92.82062 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038500, - "Position": { - "X": -357.83936, - "Y": 21.84602, - "Z": -91.32526 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038760, - "Position": { - "X": -298.5733, - "Y": 22.423145, - "Z": -149.67578 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038780, - "Position": { - "X": -394.91876, - "Y": 20.8, - "Z": -107.927124 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4381_A Capital Idea.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4381_A Capital Idea.json deleted file mode 100644 index 4f3bf29f..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4381_A Capital Idea.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038781, - "Position": { - "X": -393.2403, - "Y": 20.8, - "Z": -105.760315 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.56799, - "Y": 5.0201416, - "Z": 4.5318604 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Studium", - "[Old Sharlayan] The Baldesion Annex" - ] - }, - { - "DataId": 1038784, - "Position": { - "X": -0.22894287, - "Y": 1.9073486E-06, - "Z": -11.12384 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1001029, - "Position": { - "X": 9.170593, - "Y": 20.999403, - "Z": -15.213318 - }, - "TerritoryId": 129, - "InteractionType": "Interact", - "AetheryteShortcut": "Limsa Lominsa" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038796, - "Position": { - "X": 745.9678, - "Y": 69.999954, - "Z": 525.2003 - }, - "TerritoryId": 621, - "InteractionType": "Interact", - "AetheryteShortcut": "Lochs - Ala Mhigan Quarter", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4382_Best of the Best.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4382_Best of the Best.json deleted file mode 100644 index 0564a7e7..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4382_Best of the Best.json +++ /dev/null @@ -1,150 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038802, - "Position": { - "X": 746.63916, - "Y": 69.999954, - "Z": 523.39966 - }, - "StopDistance": 5, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1024065, - "Position": { - "X": 749.9961, - "Y": 70.139626, - "Z": 522.88086 - }, - "StopDistance": 7, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038804, - "Position": { - "X": 251.81958, - "Y": 121.999985, - "Z": -360.586 - }, - "TerritoryId": 737, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038811, - "Position": { - "X": 244.31213, - "Y": 122, - "Z": -362.96637 - }, - "StopDistance": 7, - "TerritoryId": 737, - "InteractionType": "Interact", - "Comment": "A-Ruhn-Senna" - }, - { - "DataId": 1038812, - "Position": { - "X": 245.77698, - "Y": 122, - "Z": -366.47595 - }, - "StopDistance": 7, - "TerritoryId": 737, - "InteractionType": "Interact", - "Comment": "Sicard" - }, - { - "DataId": 1038813, - "Position": { - "X": 250.78198, - "Y": 122, - "Z": -366.84216 - }, - "StopDistance": 7, - "TerritoryId": 737, - "InteractionType": "Interact", - "Comment": "Lyse" - }, - { - "DataId": 1038814, - "Position": { - "X": 251.23975, - "Y": 122, - "Z": -363.9124 - }, - "StopDistance": 7, - "TerritoryId": 737, - "InteractionType": "Interact", - "Comment": "Lucia" - }, - { - "DataId": 1038815, - "Position": { - "X": 250.17163, - "Y": 122, - "Z": -352.34613 - }, - "StopDistance": 7, - "TerritoryId": 737, - "InteractionType": "Interact", - "Comment": "Cirina" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038816, - "Position": { - "X": 254.23047, - "Y": 122, - "Z": -364.9806 - }, - "StopDistance": 7, - "TerritoryId": 737, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038817, - "Position": { - "X": 756.31335, - "Y": 69.9999, - "Z": 534.3251 - }, - "StopDistance": 7, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4383_A Frosty Reception.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4383_A Frosty Reception.json deleted file mode 100644 index 0e50c4fc..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4383_A Frosty Reception.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "TerritoryBlacklist": [ - 1010 - ], - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038824, - "Position": { - "X": 750.97266, - "Y": 69.99991, - "Z": 534.78296 - }, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038825, - "Position": { - "X": 742.5803, - "Y": 69.99999, - "Z": 539.6046 - }, - "TerritoryId": 621, - "InteractionType": "SinglePlayerDuty", - "Comment": "A Frosty Reception" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 172, - "Position": { - "X": -408.0791, - "Y": 24.18463, - "Z": 479.9764 - }, - "StopDistance": 7, - "TerritoryId": 958, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1038826, - "Position": { - "X": -399.31335, - "Y": 22.03761, - "Z": 454.45935 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038836, - "Position": { - "X": -439.9939, - "Y": 22.000002, - "Z": 497.79492 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038835, - "Position": { - "X": -366.17078, - "Y": 22, - "Z": 514.4884 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1038828, - "Position": { - "X": -334.5846, - "Y": 23.803606, - "Z": 404.65393 - }, - "StopDistance": 7, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038837, - "Position": { - "X": -353.41425, - "Y": 22.717295, - "Z": 435.62976 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4384_Tracks in the Snow.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4384_Tracks in the Snow.json deleted file mode 100644 index e301cb5e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4384_Tracks in the Snow.json +++ /dev/null @@ -1,181 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038839, - "Position": { - "X": -350.1488, - "Y": 22.738518, - "Z": 435.56873 - }, - "StopDistance": 7, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -210.6673, - "Y": 15.799101, - "Z": 451.78333 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo" - }, - { - "DataId": 2012000, - "Position": { - "X": -184.22223, - "Y": 31.937134, - "Z": 423.6056 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818344, - "DisableNavmesh": true - }, - { - "Position": { - "X": -188.58397, - "Y": 20.625948, - "Z": 408.3002 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo", - "DisableNavmesh": true, - "Mount": true - }, - { - "DataId": 1038840, - "Position": { - "X": -157.06122, - "Y": 18.316332, - "Z": 364.06494 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": -135.94785, - "Y": 3.426586, - "Z": 360.1115 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo", - "DisableNavmesh": true, - "Mount": true - }, - { - "Position": { - "X": -48.166317, - "Y": -0.8113563, - "Z": 374.09103 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo" - }, - { - "DataId": 2012076, - "Position": { - "X": -31.265808, - "Y": -0.25946045, - "Z": 362.81372 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012077, - "Position": { - "X": 36.942017, - "Y": -12.039368, - "Z": 362.2339 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038843, - "Position": { - "X": 66.84973, - "Y": -14.344919, - "Z": 385.7328 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012078, - "Position": { - "X": 117.81482, - "Y": -16.922302, - "Z": 390.46313 - }, - "TerritoryId": 958, - "InteractionType": "SinglePlayerDuty", - "Comment": "Follow Girl in Green" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1038846, - "Position": { - "X": 555.8098, - "Y": 32.30835, - "Z": 159.10571 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038846, - "Position": { - "X": 555.8098, - "Y": 32.30835, - "Z": 159.10571 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4385_How the Mighty Are Fallen.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4385_How the Mighty Are Fallen.json deleted file mode 100644 index f683e526..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4385_How the Mighty Are Fallen.json +++ /dev/null @@ -1,201 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038847, - "Position": { - "X": 563.9885, - "Y": 32.318867, - "Z": 150.04187 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038849, - "Position": { - "X": 588.464, - "Y": 38.372063, - "Z": 216.6018 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038850, - "Position": { - "X": 589.8069, - "Y": 38.372063, - "Z": 217.54773 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038851, - "Position": { - "X": 591.33276, - "Y": 38.372063, - "Z": 214.55713 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038852, - "Position": { - "X": 585.046, - "Y": 38.372063, - "Z": 216.05249 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038847, - "Position": { - "X": 563.9885, - "Y": 32.318867, - "Z": 150.04187 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": 398.44858, - "Y": 5.094846, - "Z": 231.72844 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 393.71204, - "Y": 4.142438, - "Z": 251.71986 - }, - "TerritoryId": 958, - "InteractionType": "ShouldBeAJump", - "DisableNavmesh": true, - "Comment": "Jump on Pipeline and move near the Aether Current" - }, - { - "DataId": 2012003, - "Position": { - "X": 405.2948, - "Y": -2.243164, - "Z": 520.31726 - }, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818347 - }, - { - "Position": { - "X": 379.2122, - "Y": -18.622318, - "Z": 530.3423 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 2012001, - "Position": { - "X": 194.81189, - "Y": -12.863403, - "Z": 644.28174 - }, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818345 - }, - { - "DataId": 1038853, - "Position": { - "X": 156.75586, - "Y": -14.955569, - "Z": 623.22424 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1037712, - "Position": { - "X": 136.5835, - "Y": -13.28456, - "Z": 650.26306 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Mount": false, - "Comment": "TODO Should cancel Navmesh on fade out" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038856, - "Position": { - "X": 137.65161, - "Y": -13.278784, - "Z": 648.249 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4386_At the End of the Trail.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4386_At the End of the Trail.json deleted file mode 100644 index 8b76e999..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4386_At the End of the Trail.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1037712, - "Position": { - "X": 136.5835, - "Y": -13.28456, - "Z": 650.26306 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038857, - "Position": { - "X": 559.0753, - "Y": 32.322315, - "Z": 159.4414 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038858, - "Position": { - "X": 596.5818, - "Y": 32.318665, - "Z": 138.8418 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038862, - "Position": { - "X": 504.96667, - "Y": 19.447378, - "Z": 175.73816 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038863, - "Position": { - "X": 310.71948, - "Y": -16.262552, - "Z": 357.01526 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012083, - "Position": { - "X": 429.86182, - "Y": -17.410583, - "Z": 543.6942 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1038865, - "Position": { - "X": 583.85596, - "Y": -15.842519, - "Z": 625.63513 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038867, - "Position": { - "X": 605.9509, - "Y": 34.7239, - "Z": 202.47192 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4387_A Way Forward.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4387_A Way Forward.json deleted file mode 100644 index f6fd793a..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4387_A Way Forward.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038868, - "Position": { - "X": 605.9204, - "Y": 34.7239, - "Z": 201.09851 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039864, - "Position": { - "X": -334.12683, - "Y": 23.803606, - "Z": 405.2644 - }, - "StopDistance": 7, - "TerritoryId": 958, - "InteractionType": "Interact", - "AetheryteShortcut": "Garlemald - Camp Broken Glass" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039870, - "Position": { - "X": -358.14453, - "Y": 22.554066, - "Z": 430.01453 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039878, - "Position": { - "X": -362.1729, - "Y": 22.071072, - "Z": 434.01233 - }, - "StopDistance": 7, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039880, - "Position": { - "X": -308.36963, - "Y": 22.468344, - "Z": 365.7129 - }, - "TerritoryId": 958, - "InteractionType": "WaitForManualProgress", - "Comment": "Follow Alphinaud and Alisaie" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039880, - "Position": { - "X": 66.50907, - "Y": 0.26087344, - "Z": 149.46323 - }, - "StopDistance": 1, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Follow Alphinaud and Alisaie" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039883, - "Position": { - "X": 64.65234, - "Y": 0.21427588, - "Z": 147.8446 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4388_The Last Bastion.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4388_The Last Bastion.json deleted file mode 100644 index 49fe062a..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4388_The Last Bastion.json +++ /dev/null @@ -1,213 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039883, - "Position": { - "X": 64.65234, - "Y": 0.21427588, - "Z": 147.8446 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012002, - "Position": { - "X": 83.08533, - "Y": 1.5106201, - "Z": 102.00659 - }, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818346 - }, - { - "Position": { - "X": 168.04597, - "Y": 0.96746624, - "Z": 103.04115 - }, - "StopDistance": 1, - "TerritoryId": 958, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14083, - 14084 - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038761, - "Position": { - "X": 169.2378, - "Y": 0.99992824, - "Z": 105.82129 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": 301.11044, - "Y": 5.506278, - "Z": 78.14653 - }, - "StopDistance": 1, - "TerritoryId": 958, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14082 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038766, - "Position": { - "X": 301.19775, - "Y": 5.5300293, - "Z": 76.67651 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040164, - "Position": { - "X": 387.28918, - "Y": 3.8935592, - "Z": 71.97681 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": 527.62775, - "Y": 14.620869, - "Z": -164.97536 - }, - "StopDistance": 1, - "TerritoryId": 958, - "EnemySpawnType": "AutoOnEnterArea", - "InteractionType": "Combat", - "KillEnemyDataIds": [ - 14081 - ] - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1040750, - "Position": { - "X": 526.9092, - "Y": 14.616225, - "Z": -162.85956 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 1039886, - "Position": { - "X": 520.8667, - "Y": 10.800001, - "Z": -352.49866 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 9, - "Steps": [ - { - "DataId": 1039889, - "Position": { - "X": 509.4834, - "Y": 10.800001, - "Z": -422.62915 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 10, - "Steps": [ - { - "DataId": 1039890, - "Position": { - "X": 528.2825, - "Y": -36.65, - "Z": -251.48401 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039892, - "Position": { - "X": 547.5393, - "Y": -35.24417, - "Z": -192.27899 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4389_Personae non Gratae.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4389_Personae non Gratae.json deleted file mode 100644 index 06f750fb..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4389_Personae non Gratae.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039896, - "Position": { - "X": 530.1747, - "Y": -36.65, - "Z": -175.86023 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1037716, - "Position": { - "X": 524.43726, - "Y": -36.65, - "Z": -186.69415 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Caeso", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 17 0 0 0 0 64" - }, - { - "DataId": 1037718, - "Position": { - "X": 512.62683, - "Y": -36.65, - "Z": -160.3266 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Octavia", - "$.0": "[2]", - "$.2": "QuestVariables if done after [1]: 33 1 0 0 0 80" - }, - { - "Position": { - "X": 502.34732, - "Y": -36.65, - "Z": -178.38684 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo" - }, - { - "DataId": 1037715, - "Position": { - "X": 500.57214, - "Y": -36.65, - "Z": -178.85101 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Sabinianus", - "$.0": "[3]", - "$.2": "QuestVariables if done after [1, 2]: 49 1 16 0 0 206" - }, - { - "DataId": 1037717, - "Position": { - "X": 495.35352, - "Y": -36.06746, - "Z": -205.1576 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Marcellinus", - "$.0": "[4]", - "$.2": "QuestVariables if done after [1, 2, 3]: 65 17 16 0 0 240" - }, - { - "DataId": 2012062, - "Position": { - "X": 512.1679, - "Y": -34.82775, - "Z": -201.7169 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Magitek Radio", - "$.0": "[5]" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039899, - "Position": { - "X": 549.6758, - "Y": -36.616077, - "Z": -216.84601 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": 548.01605, - "Y": -36.61611, - "Z": -237.499 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 547.66595, - "Y": -36.616203, - "Z": -244.51854 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "DataId": 1037719, - "Position": { - "X": 549.7977, - "Y": -36.61618, - "Z": -260.57837 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": 547.021, - "Y": -36.616203, - "Z": -244.6051 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo" - }, - { - "DataId": 1039899, - "Position": { - "X": 549.6758, - "Y": -36.616077, - "Z": -216.84601 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039896, - "Position": { - "X": 530.1747, - "Y": -36.65, - "Z": -175.86023 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4390_His Park Materials.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4390_His Park Materials.json deleted file mode 100644 index b649c413..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4390_His Park Materials.json +++ /dev/null @@ -1,165 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039896, - "Position": { - "X": 530.1747, - "Y": -36.65, - "Z": -175.86023 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 531.7644, - "Y": -36.650005, - "Z": -228.76685 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo" - }, - { - "DataId": 1039901, - "Position": { - "X": 408.65186, - "Y": 15.5581665, - "Z": -496.14713 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012093, - "Position": { - "X": 381.73486, - "Y": 15.548889, - "Z": -503.2578 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - }, - { - "DataId": 2012094, - "Position": { - "X": 381.64343, - "Y": 25.986084, - "Z": -503.19678 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Map", - "Mount": true - }, - { - "DataId": 2012005, - "Position": { - "X": 382.1621, - "Y": 25.894531, - "Z": -482.20038 - }, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818349 - }, - { - "DataId": 2012095, - "Position": { - "X": 423.1173, - "Y": 16.311829, - "Z": -570.3365 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Warmachine Wreckage" - }, - { - "DataId": 2012096, - "Position": { - "X": 381.9486, - "Y": 16.617004, - "Z": -635.33997 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Children's Slide" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039906, - "Position": { - "X": 432.2423, - "Y": 15.558166, - "Z": -611.90204 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012100, - "Position": { - "X": 445.76172, - "Y": 15.487854, - "Z": -648.61523 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039906, - "Position": { - "X": 432.2423, - "Y": 15.558166, - "Z": -611.90204 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039906, - "Position": { - "X": 432.2423, - "Y": 15.558166, - "Z": -611.90204 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4391_No Good Deed.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4391_No Good Deed.json deleted file mode 100644 index 6ec5ce22..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4391_No Good Deed.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038789, - "Position": { - "X": 413.13794, - "Y": 16.102577, - "Z": -578.4848 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039910, - "Position": { - "X": 340.59656, - "Y": 10.799996, - "Z": -529.9306 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012101, - "Position": { - "X": 270.25244, - "Y": 10.452393, - "Z": -579.7666 - }, - "TerritoryId": 958, - "InteractionType": "UseItem", - "ItemId": 2003229 - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039910, - "Position": { - "X": 340.59656, - "Y": 10.799996, - "Z": -529.9306 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012106, - "Position": { - "X": 339.1621, - "Y": 10.788086, - "Z": -530.54095 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039913, - "Position": { - "X": 526.3904, - "Y": -36.65, - "Z": -233.87512 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4392_Alea Iacta Est.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4392_Alea Iacta Est.json deleted file mode 100644 index 87ea3a3e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4392_Alea Iacta Est.json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039913, - "Position": { - "X": 526.3904, - "Y": -36.65, - "Z": -233.87512 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038790, - "Position": { - "X": 495.41467, - "Y": -36.06746, - "Z": -205.12708 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Marcellinus", - "$.1": "QuestVariables if done first: 16 16 0 0 0 128" - }, - { - "DataId": 1038791, - "Position": { - "X": 512.62683, - "Y": -36.65, - "Z": -160.3266 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "Octavia" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039889, - "Position": { - "X": 509.4834, - "Y": 10.800001, - "Z": -422.62915 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012107, - "Position": { - "X": 279.37744, - "Y": 10.8185425, - "Z": -232.98999 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039915, - "Position": { - "X": -399.80164, - "Y": 22.143175, - "Z": 422.8733 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4393_Strange Bedfellows.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4393_Strange Bedfellows.json deleted file mode 100644 index 5078202d..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4393_Strange Bedfellows.json +++ /dev/null @@ -1,304 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039915, - "Position": { - "X": -399.80164, - "Y": 22.143175, - "Z": 422.8733 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012008, - "Position": { - "X": 134.90503, - "Y": 14.389221, - "Z": -172.25916 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818352 - }, - { - "Position": { - "X": -141.20903, - "Y": 11.389334, - "Z": -399.3773 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": -153.54558, - "Y": 11.389343, - "Z": -402.64487 - }, - "TerritoryId": 958, - "InteractionType": "Instruction", - "Comment": "Jump to Aether Current" - }, - { - "DataId": 2012009, - "Position": { - "X": -144.9455, - "Y": 17.56311, - "Z": -420.52344 - }, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818353 - }, - { - "Position": { - "X": -145.6724, - "Y": 11.389343, - "Z": -398.82806 - }, - "TerritoryId": 958, - "InteractionType": "Instruction", - "Comment": "Leave the Aether Current location" - }, - { - "Position": { - "X": 78.52435, - "Y": 10.5, - "Z": -337.21478 - }, - "TerritoryId": 958, - "InteractionType": "Instruction", - "Comment": "Jump onto the Highway" - }, - { - "DataId": 2012007, - "Position": { - "X": 79.9115, - "Y": 37.857544, - "Z": -518.2117 - }, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818351 - }, - { - "Position": { - "X": 76.583664, - "Y": 10.5, - "Z": -538.34607 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 1039917, - "Position": { - "X": 495.50623, - "Y": 10.800001, - "Z": -425.2232 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1037715, - "Position": { - "X": 500.57214, - "Y": -36.65, - "Z": -178.85101 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 173, - "Position": { - "X": 518.9136, - "Y": -35.324707, - "Z": -178.36273 - }, - "StopDistance": 7, - "TerritoryId": 958, - "InteractionType": "AttuneAetheryte", - "DisableNavmesh": true - }, - { - "DataId": 1037716, - "Position": { - "X": 524.43726, - "Y": -36.65, - "Z": -186.69415 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1037719, - "Position": { - "X": 549.7977, - "Y": -36.61618, - "Z": -260.57837 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039924, - "Position": { - "X": 547.5089, - "Y": -35.24417, - "Z": -192.73676 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": 539.89374, - "Y": -36.65, - "Z": -193.11551 - }, - "TerritoryId": 958, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 2012111, - "Position": { - "X": 507.042, - "Y": 8.8654175, - "Z": 64.68298 - }, - "TerritoryId": 958, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14078 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done first: (before) 0 0 2 0 0 0 (after) 16 16 2 0 0 64" - }, - { - "DataId": 2012109, - "Position": { - "X": 338.49072, - "Y": 2.304016, - "Z": 94.77368 - }, - "TerritoryId": 958, - "InteractionType": "Instruction", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14079 - ], - "Comment": "TODO Needs item use?", - "ItemId": 2003231, - "ItemUseHealthMaxPercent": 10, - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 32 17 1 0 0 96" - }, - { - "DataId": 2012108, - "Position": { - "X": 79.42322, - "Y": 0.62561035, - "Z": 153.24634 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Comment": "TODO Maybe move the train station aether current interaction before this", - "$.0": "[3]", - "$.1": "QuestVariables if done after [1, 2]: 49 17 1 0 0 224" - }, - { - "DataId": 2012110, - "Position": { - "X": -25.558899, - "Y": -12.954956, - "Z": 396.96338 - }, - "TerritoryId": 958, - "InteractionType": "Instruction", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14080 - ], - "Comment": "TODO Needs item use?", - "ItemId": 2003231, - "ItemUseHealthMaxPercent": 10, - "$.0": "[4]" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1039930, - "Position": { - "X": -208.33148, - "Y": 15.486622, - "Z": 450.88867 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039931, - "Position": { - "X": -351.15588, - "Y": 23.742596, - "Z": 418.4176 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4394_In from the Cold.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4394_In from the Cold.json deleted file mode 100644 index ab772586..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4394_In from the Cold.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039931, - "Position": { - "X": -351.15588, - "Y": 23.742596, - "Z": 418.4176 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039932, - "Position": { - "X": -357.99194, - "Y": 22, - "Z": 488.3954 - }, - "TerritoryId": 958, - "InteractionType": "SinglePlayerDuty", - "Comment": "In from the Cold" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039933, - "Position": { - "X": -369.2531, - "Y": 22.20836, - "Z": 403.76892 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4395_Gateway of the Gods.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4395_Gateway of the Gods.json deleted file mode 100644 index 15624835..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4395_Gateway of the Gods.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039940, - "Position": { - "X": -371.29785, - "Y": 22.255, - "Z": 400.71716 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012004, - "Position": { - "X": -516.1059, - "Y": 42.46582, - "Z": 67.826294 - }, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818348 - }, - { - "DataId": 1039942, - "Position": { - "X": -462.57727, - "Y": 20.805109, - "Z": -340.68823 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012006, - "Position": { - "X": -602.04474, - "Y": 34.286987, - "Z": -325.85645 - }, - "TerritoryId": 958, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818350 - }, - { - "DataId": 1039946, - "Position": { - "X": -476.0052, - "Y": 10.889291, - "Z": -678.0652 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1042016, - "Position": { - "X": -483.299, - "Y": 10.889291, - "Z": -677.4243 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - }, - { - "DataId": 2012112, - "Position": { - "X": -516.7163, - "Y": -190.02063, - "Z": -675.288 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "TerritoryId": 958, - "InteractionType": "Duty", - "ContentFinderConditionId": 785 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039969, - "Position": { - "X": 2.029419, - "Y": 0, - "Z": 33.585083 - }, - "TerritoryId": 1024, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4396_A Trip to the Moon.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4396_A Trip to the Moon.json deleted file mode 100644 index 8b177429..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4396_A Trip to the Moon.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039974, - "Position": { - "X": 2.5177002, - "Y": 0, - "Z": 26.840576 - }, - "TerritoryId": 1024, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012116, - "Position": { - "X": 5.585561E-05, - "Y": 6.62077, - "Z": -0.00103838 - }, - "TerritoryId": 1024, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 174, - "Position": { - "X": -566.2438, - "Y": 134.6656, - "Z": 650.6459 - }, - "StopDistance": 10, - "TerritoryId": 959, - "InteractionType": "AttuneAetheryte", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 1039977, - "Position": { - "X": -627.49677, - "Y": 128.67758, - "Z": 632.41016 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14077 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039977, - "Position": { - "X": -627.49677, - "Y": 128.67758, - "Z": 632.41016 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012118, - "Position": { - "X": -423.9109, - "Y": 136.9497, - "Z": 573.47986 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1042050, - "Position": { - "X": -383.04724, - "Y": 169.00394, - "Z": 547.5393 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4397_Sea of Sorrow.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4397_Sea of Sorrow.json deleted file mode 100644 index 3a8be09a..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4397_Sea of Sorrow.json +++ /dev/null @@ -1,182 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039978, - "Position": { - "X": -383.04724, - "Y": 169.00394, - "Z": 547.5393 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039979, - "Position": { - "X": -351.97992, - "Y": 103.09564, - "Z": 514.4884 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039980, - "Position": { - "X": -262.3484, - "Y": 75.328064, - "Z": 500.08386 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039981, - "Position": { - "X": -258.56415, - "Y": 73.19127, - "Z": 455.49695 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039982, - "Position": { - "X": -193.13348, - "Y": 57.684105, - "Z": 410.849 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039985, - "Position": { - "X": -189.92908, - "Y": 58.229942, - "Z": 419.7605 - }, - "TerritoryId": 959, - "InteractionType": "Instruction", - "Comment": "Follow Argos" - }, - { - "DataId": 1039986, - "Position": { - "X": 43.9917, - "Y": 59.052986, - "Z": 523.5217 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1039983, - "Position": { - "X": 20.187622, - "Y": 59.184967, - "Z": 523.24695 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "KillEnemyDataIds": [ - 14076 - ] - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1039983, - "Position": { - "X": 20.187622, - "Y": 59.184967, - "Z": 523.24695 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 1039986, - "Position": { - "X": 43.9917, - "Y": 59.052986, - "Z": 523.5217 - }, - "TerritoryId": 959, - "InteractionType": "Instruction", - "Comment": "Follow Argos" - }, - { - "DataId": 1039987, - "Position": { - "X": 189.25769, - "Y": 63.36112, - "Z": 467.46008 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039984, - "Position": { - "X": 183.39807, - "Y": 58.834427, - "Z": 427.29822 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4398_The Martyr.json b/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4398_The Martyr.json deleted file mode 100644 index 2c879078..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/B-Garlemald/4398_The Martyr.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "TerritoryBlacklist": [ - 992 - ], - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039987, - "Position": { - "X": 189.25769, - "Y": 63.36112, - "Z": 467.46008 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039987, - "Position": { - "X": 189.25769, - "Y": 63.36112, - "Z": 467.46008 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "TerritoryId": 1028, - "InteractionType": "Duty", - "ContentFinderConditionId": 802, - "Comment": "The Dark Inside" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039989, - "Position": { - "X": -279.95728, - "Y": 76.14732, - "Z": 480.91858 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4399_In_Shadows_Wake.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4399_In_Shadows_Wake.json deleted file mode 100644 index f0d0277c..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4399_In_Shadows_Wake.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039989, - "Position": { - "X": -279.95728, - "Y": 76.14732, - "Z": 480.91858 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038872, - "Position": { - "X": -434.13446, - "Y": 136.0188, - "Z": 570.1228 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012173, - "Position": { - "X": -409.75055, - "Y": 172.25903, - "Z": 548.94324 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012174, - "Position": { - "X": -446.09753, - "Y": 163.31726, - "Z": 593.0419 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012175, - "Position": { - "X": -407.37012, - "Y": 156.8169, - "Z": 594.23206 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012176, - "Position": { - "X": -399.588, - "Y": 147.4784, - "Z": 566.1554 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038876, - "Position": { - "X": -445.54822, - "Y": 136.0188, - "Z": 552.5748 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4400_Helping Hands.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4400_Helping Hands.json deleted file mode 100644 index e838a1bf..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4400_Helping Hands.json +++ /dev/null @@ -1,160 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038880, - "Position": { - "X": -382.2843, - "Y": 169.00394, - "Z": 549.6758 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -326.42538, - "Y": 98.98749, - "Z": 526.5519 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "Position": { - "X": -50.482517, - "Y": 42.360725, - "Z": 466.64243 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 113.70272, - "Y": 45.552776, - "Z": 460.49585 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 129.9883, - "Y": 54.543076, - "Z": 468.93378 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 126.817184, - "Y": 55.823048, - "Z": 476.34058 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038884, - "Position": { - "X": 295.1858, - "Y": 87.78831, - "Z": 538.8723 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038888, - "Position": { - "X": 446.95203, - "Y": 69.15293, - "Z": 540.032 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012177, - "Position": { - "X": 486.71704, - "Y": 70.69495, - "Z": 538.90283 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040516, - "Position": { - "X": 205.52368, - "Y": 59.358307, - "Z": 405.87463 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040518, - "Position": { - "X": 205.06592, - "Y": 59.911327, - "Z": 411.42883 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038894, - "Position": { - "X": 2.670288, - "Y": -49.8925, - "Z": -366.0487 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4401_A Harey Situation.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4401_A Harey Situation.json deleted file mode 100644 index 885542cf..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4401_A Harey Situation.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038894, - "Position": { - "X": 2.670288, - "Y": -49.8925, - "Z": -366.0487 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 1.131261, - "Y": -114.92335, - "Z": -418.2727 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 1038897, - "Position": { - "X": 30.838379, - "Y": -132.94641, - "Z": -435.47723 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 175, - "Position": { - "X": -0.01531982, - "Y": -128.8109, - "Z": -512.0165 - }, - "StopDistance": 10, - "TerritoryId": 959, - "InteractionType": "AttuneAetheryte" - }, - { - "Position": { - "X": 36.500526, - "Y": -129.20917, - "Z": -521.85284 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038901, - "Position": { - "X": 120.531006, - "Y": -132.86647, - "Z": -555.0164 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038902, - "Position": { - "X": -124.864624, - "Y": -132.87448, - "Z": -471.91577 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "Position": { - "X": -72.39724, - "Y": -49.589592, - "Z": -336.63968 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": -105.34293, - "Y": -49.589592, - "Z": -367.6591 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "DataId": 1038903, - "Position": { - "X": -17.95996, - "Y": -47.192066, - "Z": -494.31604 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4402_A Taste of the Moon.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4402_A Taste of the Moon.json deleted file mode 100644 index 8a31337b..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4402_A Taste of the Moon.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039686, - "Position": { - "X": -17.95996, - "Y": -47.192066, - "Z": -494.31604 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012013, - "Position": { - "X": 29.1046, - "Y": -47.739, - "Z": -550.4077 - }, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818362 - }, - { - "Position": { - "X": 62.71022, - "Y": -46.99965, - "Z": -433.81802 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 47.394165, - "Y": -133.50012, - "Z": -397.90225 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "DataId": 2012019, - "Position": { - "X": 21.7081, - "Y": -133.5001, - "Z": -385.7313 - }, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818368, - "DisableNavmesh": true - }, - { - "DataId": 1038908, - "Position": { - "X": -456.10742, - "Y": -168, - "Z": -618.7686 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012178, - "TerritoryId": 959, - "InteractionType": "Interact", - "Comment": "Navmesh can't jump" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012011, - "Position": { - "X": -482.7497, - "Y": -154.95538, - "Z": -595.72754 - }, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818360 - }, - { - "DataId": 1038912, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact", - "Comment": "Navmesh can't jump" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": -455.40552, - "Y": -168, - "Z": -620.05035 - }, - "TerritoryId": 959, - "InteractionType": "UseItem", - "ItemId": 2003236 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038912, - "Position": { - "X": -455.40552, - "Y": -168, - "Z": -620.05035 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4403_Styled a Hero.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4403_Styled a Hero.json deleted file mode 100644 index 17e06b5e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4403_Styled a Hero.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038908, - "Position": { - "X": -456.10742, - "Y": -168, - "Z": -618.7686 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038919, - "Position": { - "X": -518.36426, - "Y": -161.84549, - "Z": -281.94098 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": -356.28064, - "Y": -161.84383, - "Z": -253.94832 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038923, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact", - "Comment": "Navmesh can't jump" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": -338.71045, - "Y": -161.84383, - "Z": -361.57114 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038924, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact", - "Comment": "Navmesh can't jump" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038919, - "Position": { - "X": -518.36426, - "Y": -161.84549, - "Z": -281.94098 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1038925, - "Position": { - "X": -506.52325, - "Y": -161.84383, - "Z": -258.68628 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1038926, - "Position": { - "X": -28.244446, - "Y": -131.29884, - "Z": -585.7481 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038927, - "Position": { - "X": 2.090454, - "Y": -49.589596, - "Z": -699.733 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4404_Alls Vale That Endsvale.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4404_Alls Vale That Endsvale.json deleted file mode 100644 index 09739dcb..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4404_Alls Vale That Endsvale.json +++ /dev/null @@ -1,210 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038927, - "Position": { - "X": 2.090454, - "Y": -49.589596, - "Z": -699.733 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 68.93551, - "Y": -48.912445, - "Z": -683.716 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "DisableNavmesh": true, - "Mount": true - }, - { - "Position": { - "X": 86.32549, - "Y": -137.4167, - "Z": -619.77936 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "DataId": 1038928, - "Position": { - "X": 146.37976, - "Y": -137.32071, - "Z": -504.26492 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038929, - "Position": { - "X": 681.45264, - "Y": -152, - "Z": -494.13293 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038929, - "Position": { - "X": 681.45264, - "Y": -152, - "Z": -494.13293 - }, - "TerritoryId": 959, - "InteractionType": "Emote", - "Emote": "stretch" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038929, - "Position": { - "X": 681.45264, - "Y": -152, - "Z": -494.13293 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012017, - "Position": { - "X": 652.9487, - "Y": -160.72333, - "Z": -405.08124 - }, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818366 - }, - { - "DataId": 1038929, - "Position": { - "X": 595.4731, - "Y": -167.50227, - "Z": -511.4072 - }, - "StopDistance": 0.25, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1038929, - "Position": { - "X": 547.8397, - "Y": -167.50174, - "Z": -526.3702 - }, - "StopDistance": 0.25, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1038929, - "Position": { - "X": 572.45984, - "Y": -167.50163, - "Z": -577.03906 - }, - "StopDistance": 0.25, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 1038929, - "Position": { - "X": 617.89886, - "Y": -167.50163, - "Z": -594.92847 - }, - "StopDistance": 0.25, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 9, - "Steps": [ - { - "DataId": 1038929, - "Position": { - "X": 622.8754, - "Y": -167.50217, - "Z": -659.45184 - }, - "StopDistance": 0.25, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038932, - "Position": { - "X": 617.05945, - "Y": -168.00002, - "Z": -656.58044 - }, - "StopDistance": 7, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4405_Back to Old Tricks.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4405_Back to Old Tricks.json deleted file mode 100644 index 3ac64fda..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4405_Back to Old Tricks.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038931, - "Position": { - "X": 615.8998, - "Y": -168, - "Z": -657.7402 - }, - "StopDistance": 7, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012184, - "Position": { - "X": 73.83838, - "Y": -133.07397, - "Z": -512.2606 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012185, - "Position": { - "X": -5.416992, - "Y": -49.05786, - "Z": -269.24548 - }, - "TerritoryId": 959, - "InteractionType": "SinglePlayerDuty", - "Comment": "Follow Urianger" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012185, - "Position": { - "X": -5.416992, - "Y": -49.05786, - "Z": -269.24548 - }, - "TerritoryId": 959, - "InteractionType": "SinglePlayerDuty", - "Comment": "Follow Urianger (but you failed the first time)" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038935, - "Position": { - "X": 68.5282, - "Y": 75.72459, - "Z": -23.51416 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4406_Settiing Things Straight.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4406_Settiing Things Straight.json deleted file mode 100644 index 031fb381..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4406_Settiing Things Straight.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038935, - "Position": { - "X": 68.5282, - "Y": 75.72459, - "Z": -23.51416 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -126.76068, - "Y": 61.04055, - "Z": -76.382324 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "DataId": 2012014, - "Position": { - "X": -128.008, - "Y": 66.33093, - "Z": -68.2536 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818363 - }, - { - "Position": { - "X": -116.83438, - "Y": 63.151585, - "Z": -71.81973 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "Mount": true - }, - { - "DataId": 2012010, - "Position": { - "X": 42.58789, - "Y": 124.01001, - "Z": -167.04059 - }, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818359 - }, - { - "DataId": 1038936, - "Position": { - "X": 191.48547, - "Y": 93.90228, - "Z": -54.306885 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012235, - "Position": { - "X": 183.30652, - "Y": 87.20532, - "Z": -30.47229 - }, - "TerritoryId": 959, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 13998, - 14093, - 13998 - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012433, - "Position": { - "X": 183.30652, - "Y": 87.17468, - "Z": -30.380737 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038936, - "Position": { - "X": 191.48547, - "Y": 93.90228, - "Z": -54.306885 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "Position": { - "X": 304.50522, - "Y": -144, - "Z": -558.8681 - }, - "TerritoryId": 959, - "InteractionType": "ShouldBeAJump", - "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow", - "Comment": "Navmesh can't jump" - }, - { - "DataId": 2012012, - "Position": { - "X": 316.39575, - "Y": -154.98596, - "Z": -595.5444 - }, - "StopDistance": 3, - "TerritoryId": 959, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818361 - }, - { - "Position": { - "X": 351.1467, - "Y": -167.87698, - "Z": -605.0467 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038937, - "Position": { - "X": 381.7959, - "Y": -168.00002, - "Z": -594.62885 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 2012337, - "Position": { - "X": 466.8496, - "Y": -168.01715, - "Z": -654.13904 - }, - "TerritoryId": 959, - "InteractionType": "SinglePlayerDuty", - "Comment": "Find \"Runninway?\"" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038944, - "Position": { - "X": 361.65405, - "Y": -168.00002, - "Z": -628.19867 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4407_Heart of the Matter.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4407_Heart of the Matter.json deleted file mode 100644 index b731c2a5..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4407_Heart of the Matter.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038946, - "Position": { - "X": 362.50854, - "Y": -168.00002, - "Z": -625.11633 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012664, - "Position": { - "X": -26.901672, - "Y": -130.47992, - "Z": -580.4685 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "AetheryteShortcut": "Mare Lamentorum - Bestways Burrow", - "Comment": "Teleporter" - }, - { - "Position": { - "X": 65.32143, - "Y": -49.589592, - "Z": -690.11676 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038947, - "Position": { - "X": 184.00854, - "Y": -49.589592, - "Z": -627.9545 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 13996, - "Position": { - "X": 166.0768, - "Y": -49.589592, - "Z": -641.8327 - }, - "TerritoryId": 959, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 13996, - 13997, - 13995 - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": 18.495846, - "Y": -49.589592, - "Z": -301.7225 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo" - }, - { - "DataId": 1038950, - "Position": { - "X": -2.7008667, - "Y": -27.758478, - "Z": -214.77081 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038952, - "Position": { - "X": -609.12494, - "Y": 128.67769, - "Z": 572.0454 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4408_Returning Home.json b/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4408_Returning Home.json deleted file mode 100644 index f308f0f3..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/C-MareLamentorum/4408_Returning Home.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038953, - "Position": { - "X": -611.1391, - "Y": 128.6778, - "Z": 566.8573 - }, - "StopDistance": 5, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -614.86835, - "Y": 128.67761, - "Z": 677.33923 - }, - "TerritoryId": 959, - "InteractionType": "WalkTo", - "Comment": "Avoids Combat" - }, - { - "DataId": 2012531, - "Position": { - "X": -663.29443, - "Y": 132.6466, - "Z": 728.96924 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - }, - { - "DataId": 1038960, - "Position": { - "X": 0.99176025, - "Y": 0, - "Z": 22.171326 - }, - "TerritoryId": 1024, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1038963, - "Position": { - "X": -338.2467, - "Y": 23.803604, - "Z": 407.79736 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "AetheryteShortcut": "Garlemald - Camp Broken Glass" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038965, - "Position": { - "X": -104.9668, - "Y": 3.8989396, - "Z": 9.262146 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AetheryteShortcut": "Old Sharlayan", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.56799, - "Y": 5.0201416, - "Z": 4.5318604 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - }, - { - "DataId": 2012188, - "Position": { - "X": -0.015319824, - "Y": -0.015319824, - "Z": -5.081299 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4409_Skies Aflame.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4409_Skies Aflame.json deleted file mode 100644 index 91560954..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4409_Skies Aflame.json +++ /dev/null @@ -1,89 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038969, - "Position": { - "X": -104.478516, - "Y": 3.8989394, - "Z": 7.003784 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.5617, - "Y": 5.0504, - "Z": 4.55803 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "TerritoryId": 957, - "AetheryteShortcut": "Thavnair - Yedlihmad", - "InteractionType": "WalkTo", - "Comment": "Quest automatically progresses once teleported to Yedlihmad" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038978, - "Position": { - "X": 202.34985, - "Y": 1.7699993, - "Z": 757.71716 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "TerritoryId": 957, - "InteractionType": "Duty", - "ContentFinderConditionId": 789 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038992, - "Position": { - "X": 4.6539917, - "Y": -1.9999963, - "Z": 93.492065 - }, - "StopDistance": 5, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4410_The Blasphemy Unmasked.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4410_The Blasphemy Unmasked.json deleted file mode 100644 index 916f3272..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4410_The Blasphemy Unmasked.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038992, - "Position": { - "X": 4.6539917, - "Y": -1.9999963, - "Z": 93.492065 - }, - "StopDistance": 5, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038997, - "Position": { - "X": 2.7618408, - "Y": -1.9999962, - "Z": 97.30664 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1037313, - "Position": { - "X": 137.71265, - "Y": 4.783756, - "Z": -153.9483 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1037314, - "Position": { - "X": 15.701477, - "Y": 0.9, - "Z": -115.22089 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "Comment": "Varsra" - }, - { - "DataId": 1037316, - "Position": { - "X": -47.04364, - "Y": 0.9199997, - "Z": -94.95697 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "Comment": "Zeytahnur" - }, - { - "DataId": 1037315, - "Position": { - "X": -19.60791, - "Y": 0.8999999, - "Z": -60.68518 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "Comment": "Rahdvira" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038997, - "Position": { - "X": -37.667046, - "Y": -0.00014948845, - "Z": -136.80333 - }, - "StopDistance": 0.25, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 196, - "Position": { - "X": -42.61847, - "Y": -0.015319824, - "Z": -197.61963 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1039001, - "Position": { - "X": -20.096191, - "Y": 3.0099998, - "Z": -226.79486 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - }, - { - "DataId": 1037317, - "Position": { - "X": -25.314758, - "Y": 1.7999934, - "Z": -185.96173 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1037318, - "Position": { - "X": -4.1047363, - "Y": 2.9999943, - "Z": -203.8758 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4411_Amidst the Apocalypse.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4411_Amidst the Apocalypse.json deleted file mode 100644 index ed89c42f..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4411_Amidst the Apocalypse.json +++ /dev/null @@ -1,230 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1037318, - "Position": { - "X": -4.1047363, - "Y": 2.9999943, - "Z": -203.8758 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039002, - "Position": { - "X": 57.04193, - "Y": 26.99999, - "Z": 46.383568 - }, - "StopDistance": 0.25, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Mehryde's Meyhane", - "[Radz-at-Han] Ruveydah Fibers" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039539, - "Position": { - "X": 87.662964, - "Y": 27.06, - "Z": 28.030762 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - }, - { - "DataId": 198, - "Position": { - "X": 129.59485, - "Y": 26.993164, - "Z": 13.473633 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1039540, - "Position": { - "X": 149.79773, - "Y": 27.049997, - "Z": 39.627686 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039003, - "Position": { - "X": -159.3805, - "Y": 23.999973, - "Z": 110.61267 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Kama", - "[Radz-at-Han] Ruveydah Fibers" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039542, - "Position": { - "X": -101.12158, - "Y": 24, - "Z": 79.48425 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012194, - "Position": { - "X": -103.83765, - "Y": 24.948364, - "Z": 87.57141 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1037321, - "Position": { - "X": -143.14496, - "Y": 24, - "Z": 93.003784 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 2012195, - "Position": { - "X": -104.57007, - "Y": 25.192627, - "Z": 87.63245 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 1037319, - "Position": { - "X": -123.49127, - "Y": 24, - "Z": 88.57861 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 9, - "Steps": [ - { - "DataId": 2012196, - "Position": { - "X": -104.234375, - "Y": 24.734863, - "Z": 87.57141 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 10, - "Steps": [ - { - "DataId": 1037320, - "Position": { - "X": -115.739685, - "Y": 24, - "Z": 97.0625 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 11, - "Steps": [ - { - "DataId": 1039542, - "Position": { - "X": -101.12158, - "Y": 24, - "Z": 79.48425 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039003, - "Position": { - "X": -159.3805, - "Y": 23.999973, - "Z": 110.61267 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4412_Beyond the Depths of Despair.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4412_Beyond the Depths of Despair.json deleted file mode 100644 index f6c492df..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4412_Beyond the Depths of Despair.json +++ /dev/null @@ -1,177 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039004, - "Position": { - "X": -158.80066, - "Y": 23.999973, - "Z": 112.291016 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039005, - "Position": { - "X": -207.7821, - "Y": 36, - "Z": 76.798584 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039007, - "Position": { - "X": 499.87024, - "Y": 51.57471, - "Z": -597.1924 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012197, - "Position": { - "X": 454.06262, - "Y": 29.251465, - "Z": -491.3253 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 13994 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012198, - "Position": { - "X": 391.07336, - "Y": 14.389221, - "Z": -444.29694 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 13992, - 13993 - ] - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039010, - "Position": { - "X": 382.71155, - "Y": 3.1168795, - "Z": -270.4662 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1039014, - "Position": { - "X": 367.33044, - "Y": 3.1168795, - "Z": -247.6997 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1039015, - "Position": { - "X": 369.10046, - "Y": 3.1168795, - "Z": -247.39453 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1039017, - "Position": { - "X": 391.77527, - "Y": 3.3857868, - "Z": -207.75165 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 171, - "Position": { - "X": 405.1422, - "Y": 5.2643433, - "Z": -244.4953 - }, - "StopDistance": 10, - "TerritoryId": 957, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1039016, - "Position": { - "X": 438.22375, - "Y": 3.1179183, - "Z": -224.10931 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039020, - "Position": { - "X": 430.8689, - "Y": 3.1168795, - "Z": -251.33142 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4413_That We Might Live.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4413_That We Might Live.json deleted file mode 100644 index 3a013475..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4413_That We Might Live.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039020, - "Position": { - "X": 430.8689, - "Y": 3.1168795, - "Z": -251.33142 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039022, - "Position": { - "X": 399.3744, - "Y": 3.1168792, - "Z": -272.84656 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011995, - "Position": { - "X": 118.45581, - "Y": 4.92865, - "Z": -343.89258 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818331 - }, - { - "DataId": 2011997, - "Position": { - "X": 93.095215, - "Y": 36.66736, - "Z": -447.8676 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818336 - }, - { - "DataId": 1039023, - "Position": { - "X": 55.77173, - "Y": 14.571876, - "Z": -330.46472 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039026, - "Position": { - "X": -29.404175, - "Y": 21.255978, - "Z": -224.04822 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 13991, - 13990 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039026, - "Position": { - "X": -29.404175, - "Y": 21.255978, - "Z": -224.04822 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012200, - "Position": { - "X": 53.72693, - "Y": 18.264954, - "Z": -291.58472 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 2012201, - "Position": { - "X": 237.62866, - "Y": 7.156433, - "Z": -273.33484 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 13989 - ] - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 2012202, - "Position": { - "X": 311.4519, - "Y": 7.7667847, - "Z": -198.23004 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039027, - "Position": { - "X": 381.33813, - "Y": 3.1168795, - "Z": -257.0688 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4414_When All Hope Seems Lost.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4414_When All Hope Seems Lost.json deleted file mode 100644 index 5007acbf..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4414_When All Hope Seems Lost.json +++ /dev/null @@ -1,196 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039028, - "Position": { - "X": 381.33813, - "Y": 3.1168795, - "Z": -257.0688 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1037630, - "Position": { - "X": 401.8158, - "Y": 3.1168792, - "Z": -273.76215 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039030, - "Position": { - "X": 408.65186, - "Y": 13.167275, - "Z": -184.37476 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": 543.0377, - "Y": 15.147404, - "Z": -147.8739 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "DataId": 2011996, - "Position": { - "X": 550.01135, - "Y": 25.467285, - "Z": -159.1059 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818332, - "DisableNavmesh": true - }, - { - "Position": { - "X": 536.3203, - "Y": 12.722106, - "Z": -95.65565 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 498.18472, - "Y": 4.909424, - "Z": 1.4510483 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 13988 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039034, - "Position": { - "X": 494.83484, - "Y": 5.376761, - "Z": 2.7313232 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039035, - "Position": { - "X": 573.5714, - "Y": 16.272768, - "Z": 130.11365 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": 521.0876, - "Y": 11.819632, - "Z": 266.03055 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 13987 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done first: 16 1 0 0 0 128" - }, - { - "Position": { - "X": 571.6434, - "Y": 32.12932, - "Z": 370.01733 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 13986 - ], - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 33 1 0 0 0 192", - "$.2": "QuestVariables if done after [3]: 33 32 0 0 0 96" - }, - { - "Position": { - "X": 660.18604, - "Y": 44.997604, - "Z": 196.7378 - }, - "TerritoryId": 957, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 13985, - 13984 - ], - "$.0": "[3]", - "$.2": "QuestVariables if done first: 16 32 0 0 0 32" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039036, - "Position": { - "X": 628.62585, - "Y": 37.497498, - "Z": 246.02112 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4415_Warm Hearts, Rekindled Hopes.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4415_Warm Hearts, Rekindled Hopes.json deleted file mode 100644 index 79180b25..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4415_Warm Hearts, Rekindled Hopes.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039047, - "Position": { - "X": 537.77356, - "Y": 10.226297, - "Z": 238.75781 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011998, - "Position": { - "X": 294.3922, - "Y": 4.0740967, - "Z": 425.10107 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818337 - }, - { - "DataId": 2011999, - "Position": { - "X": 53.177612, - "Y": 11.36792, - "Z": 187.396 - }, - "TerritoryId": 957, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818338 - }, - { - "DataId": 2012207, - "Position": { - "X": 270.0083, - "Y": 11.550964, - "Z": 147.6615 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039051, - "Position": { - "X": 153.33789, - "Y": -35.629883, - "Z": 141.25269 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012208, - "Position": { - "X": 163.80554, - "Y": -60.471558, - "Z": 133.25696 - }, - "StopDistance": 1, - "TerritoryId": 957, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": 235.94444, - "Y": -0.6, - "Z": 145.83025 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "DisableNavmesh": true, - "Mount": true - }, - { - "Position": { - "X": 252.0308, - "Y": 0.57823455, - "Z": 150.66217 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "DataId": 1039052, - "Position": { - "X": 155.2605, - "Y": 11.6644, - "Z": 217.85303 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039056, - "Position": { - "X": -36.484375, - "Y": 25.65825, - "Z": -319.87494 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4416_Simple Pleasures.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4416_Simple Pleasures.json deleted file mode 100644 index b822bc38..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4416_Simple Pleasures.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039058, - "Position": { - "X": -38.19336, - "Y": 25.818825, - "Z": -318.47113 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039059, - "Position": { - "X": 381.88745, - "Y": 3.1168795, - "Z": -262.0432 - }, - "StopDistance": 15, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Palaka's Stand" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039064, - "Position": { - "X": 428.85486, - "Y": 3.1168792, - "Z": -262.62305 - }, - "StopDistance": 7, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1037628, - "Position": { - "X": 432.9137, - "Y": 3.1168795, - "Z": -243.76288 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1040449, - "Position": { - "X": 368.64258, - "Y": 3.5858154, - "Z": -238.3612 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1037629, - "Position": { - "X": 430.01453, - "Y": 13.027412, - "Z": -200.85455 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "Position": { - "X": 425.544, - "Y": 3.1257756, - "Z": -218.32741 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 1039064, - "Position": { - "X": 428.85486, - "Y": 3.1168792, - "Z": -262.62305 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4417_Under His Wing.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4417_Under His Wing.json deleted file mode 100644 index 5f1f571c..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4417_Under His Wing.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039068, - "Position": { - "X": 425.10107, - "Y": 3.1168795, - "Z": -262.62305 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040351, - "Position": { - "X": 518.2726, - "Y": 54.344826, - "Z": -597.83325 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": 579.50446, - "Y": 55.259193, - "Z": -683.829 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "Comment": "Travel to Radz-at-Han", - "TargetTerritoryId": 963 - }, - { - "DataId": 1040354, - "Position": { - "X": 1.8157349, - "Y": -1.9999962, - "Z": 95.750244 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040358, - "Position": { - "X": -69.62695, - "Y": 25.000006, - "Z": -35.324707 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040359, - "Position": { - "X": -121.26343, - "Y": 31, - "Z": 9.109558 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012209, - "Position": { - "X": -206.65302, - "Y": 35.99597, - "Z": 67.46008 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040360, - "Position": { - "X": -207.17181, - "Y": 36, - "Z": 71.70203 - }, - "StopDistance": 7, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4418_At Worlds End.json b/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4418_At Worlds End.json deleted file mode 100644 index 01f6f3d8..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/D-Thavnair2/4418_At Worlds End.json +++ /dev/null @@ -1,153 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040372, - "Position": { - "X": -214.40454, - "Y": 36, - "Z": 64.86609 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040373, - "Position": { - "X": -0.3204956, - "Y": -2.514571E-07, - "Z": -2.1210327 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 183, - "Position": { - "X": 25.986084, - "Y": 3.250122, - "Z": -27.023743 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAetheryte", - "StopDistance": 10, - "DisableNavmesh": true - }, - { - "DataId": 195, - "Position": { - "X": -141.3616, - "Y": 3.999954, - "Z": -98.43509 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1040374, - "Position": { - "X": -145.80005, - "Y": 3.9999294, - "Z": -83.9704 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040375, - "Position": { - "X": -172.1676, - "Y": 4.061, - "Z": -87.90729 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040375, - "Position": { - "X": -172.1676, - "Y": 4.061, - "Z": -87.90729 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1037318, - "Position": { - "X": -4.1047363, - "Y": 2.9999943, - "Z": -203.8758 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Hall of the Radiant Host", - "[Radz-at-Han] Mehryde's Meyhane" - ] - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1040379, - "Position": { - "X": 8.010925, - "Y": 3.02, - "Z": -198.19946 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040382, - "Position": { - "X": 2.9450073, - "Y": -1.9999962, - "Z": 87.44946 - }, - "StopDistance": 5, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4419_Return to the Crystarium.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4419_Return to the Crystarium.json deleted file mode 100644 index c7dfbc99..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4419_Return to the Crystarium.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040386, - "Position": { - "X": 5.1116943, - "Y": -1.9999962, - "Z": 88.12085 - }, - "StopDistance": 5, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1030369, - "Position": { - "X": 614.4961, - "Y": 13.3097515, - "Z": 305.80603 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] Tessellation (Lakeland)" - ], - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012123, - "Position": { - "X": -64.042114, - "Y": -37.70508, - "Z": -210.52875 - }, - "TerritoryId": 819, - "InteractionType": "WaitForManualProgress", - "Comment": "Cutscene Interaction needed", - "AetheryteShortcut": "Crystarium", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Cabinet of Curiosity" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039992, - "Position": { - "X": -65.26294, - "Y": -37.7, - "Z": -208.85028 - }, - "StopDistance": 6, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4420_Hope Upon a Flower.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4420_Hope Upon a Flower.json deleted file mode 100644 index 3daa9fa5..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4420_Hope Upon a Flower.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039992, - "Position": { - "X": -65.26294, - "Y": -37.7, - "Z": -208.85028 - }, - "StopDistance": 6, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1030533, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] The Cabinet of Curiosity", - "[Crystarium] The Dossal Gate" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": -6.1157894, - "Y": 2.0849845, - "Z": -4.654831 - }, - "TerritoryId": 1031, - "InteractionType": "WalkTo" - }, - { - "DataId": 2012128, - "TerritoryId": 1031, - "InteractionType": "Interact", - "Comment": "Interact with Aetheryte (Navmesh can't jump)", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 16 0 16 0 0 16" - }, - { - "DataId": 1039993, - "Position": { - "X": 20.61493, - "Y": 0.2999945, - "Z": -9.353821 - }, - "TerritoryId": 1031, - "InteractionType": "Interact", - "$.0": "[2]", - "$": "QuestVariables after: 32 1 16 0 0 144" - }, - { - "DataId": 1039994, - "Position": { - "X": 51.163452, - "Y": 0.8999986, - "Z": 2.1209717 - }, - "TerritoryId": 1031, - "InteractionType": "Interact", - "$.0": "[3]", - "$.1": "QuestVariables after: 49 1 16 0 0 208" - }, - { - "DataId": 1039995, - "Position": { - "X": -37.003174, - "Y": 0.90000004, - "Z": -4.1657104 - }, - "TerritoryId": 1031, - "InteractionType": "Interact", - "$.0": "[4]", - "$.2": "QuestVariables if done first: 16 16 0 0 0 32" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012129, - "Position": { - "X": -0.07635498, - "Y": 2.2124634, - "Z": 61.600586 - }, - "TerritoryId": 1031, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039996, - "Position": { - "X": 262.53137, - "Y": 44.32154, - "Z": 771.4198 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4421_Petalouda Hunt.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4421_Petalouda Hunt.json deleted file mode 100644 index 080664c6..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4421_Petalouda Hunt.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039996, - "Position": { - "X": 262.53137, - "Y": 44.32154, - "Z": 771.4198 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039998, - "Position": { - "X": 206.0426, - "Y": 20.561113, - "Z": 629.14465 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039998, - "TerritoryId": 961, - "InteractionType": "WaitForManualProgress", - "Comment": "Capture Mobs with less than 50% HP" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039998, - "Position": { - "X": 206.0426, - "Y": 20.561113, - "Z": 629.14465 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4422_In Search of Hermes.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4422_In Search of Hermes.json deleted file mode 100644 index 9132a24e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4422_In Search of Hermes.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039998, - "Position": { - "X": 206.0426, - "Y": 20.561113, - "Z": 629.14465 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040000, - "Position": { - "X": 173.2356, - "Y": 7.4767504, - "Z": 325.64282 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040003, - "Position": { - "X": 229.02258, - "Y": 8.085857, - "Z": 195.39172 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040009, - "Position": { - "X": 366.84216, - "Y": -1.0297052, - "Z": 157.61035 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4423_Ponder Warrant Cherish Welcome.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4423_Ponder Warrant Cherish Welcome.json deleted file mode 100644 index 28f0c21e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4423_Ponder Warrant Cherish Welcome.json +++ /dev/null @@ -1,153 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040014, - "Position": { - "X": 368.88684, - "Y": -1.1050489, - "Z": 158.0376 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040015, - "Position": { - "X": 225.78772, - "Y": 7.3858566, - "Z": 201.37329 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 176, - "Position": { - "X": 159.96033, - "Y": 11.703674, - "Z": 126.878784 - }, - "StopDistance": 6, - "TerritoryId": 961, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1040018, - "Position": { - "X": 156.45068, - "Y": 17.339952, - "Z": 53.665894 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040019, - "Position": { - "X": 148.66858, - "Y": 16.93996, - "Z": 35.477173 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040023, - "Position": { - "X": 152.54431, - "Y": 16.385857, - "Z": 73.258545 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040970, - "Position": { - "X": 146.13562, - "Y": 10.385858, - "Z": 121.47705 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1040025, - "Position": { - "X": 171.83179, - "Y": 8.3426, - "Z": 180.62097 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1040971, - "Position": { - "X": 92.851074, - "Y": 10.665586, - "Z": 107.133545 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040027, - "Position": { - "X": 151.75085, - "Y": 17.339958, - "Z": 51.255005 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4424_Lives Apart.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4424_Lives Apart.json deleted file mode 100644 index 807b85e4..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4424_Lives Apart.json +++ /dev/null @@ -1,111 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040027, - "Position": { - "X": 151.75085, - "Y": 17.339958, - "Z": 51.255005 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040031, - "Position": { - "X": 269.42847, - "Y": 5.8683457, - "Z": 266.3462 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040036, - "Position": { - "X": 360.1892, - "Y": 2.9879394, - "Z": 2.6397705 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012131, - "Position": { - "X": 369.19202, - "Y": 2.9754639, - "Z": 1.5411377 - }, - "TerritoryId": 961, - "InteractionType": "UseItem", - "ItemId": 2003234, - "GroundTarget": true, - "$": "QuestValues after: 1 16 0 0 0 128" - }, - { - "DataId": 2012132, - "Position": { - "X": 373.18982, - "Y": 2.9754639, - "Z": 10.788086 - }, - "TerritoryId": 961, - "InteractionType": "UseItem", - "ItemId": 2003234, - "GroundTarget": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040036, - "Position": { - "X": 360.1892, - "Y": 2.9879394, - "Z": 2.6397705 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040043, - "Position": { - "X": 558.64795, - "Y": 9.127456, - "Z": 48.264282 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4425_Their Greatest Contribution.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4425_Their Greatest Contribution.json deleted file mode 100644 index 2f416723..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4425_Their Greatest Contribution.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040050, - "Position": { - "X": 560.32654, - "Y": 9.796983, - "Z": 63.70642 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040043, - "Position": { - "X": 558.64795, - "Y": 9.127456, - "Z": 48.264282 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012020, - "Position": { - "X": 628.2388, - "Y": 8.316829, - "Z": 107.9021 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818374 - }, - { - "Position": { - "X": 475.2184, - "Y": -17.473314, - "Z": 47.986946 - }, - "TerritoryId": 961, - "InteractionType": "Jump", - "JumpDestination": { - "Position": { - "X": 477.34882, - "Y": -16.407324, - "Z": 43.802086 - }, - "DelaySeconds": 0.25 - } - }, - { - "DataId": 1040052, - "Position": { - "X": 349.14172, - "Y": -14.766006, - "Z": -111.61981 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040055, - "Position": { - "X": 349.5078, - "Y": -14.757837, - "Z": -115.15985 - }, - "StopDistance": 7, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": 339.039, - "Y": -14.322072, - "Z": -101.509995 - }, - "StopDistance": 0.5, - "TerritoryId": 961, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 2012022, - "Position": { - "X": 151.6593, - "Y": 7.6447144, - "Z": 2.5177002 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818376 - }, - { - "DataId": 1040061, - "Position": { - "X": -2.1210327, - "Y": -15.847441, - "Z": -104.631165 - }, - "TerritoryId": 961, - "InteractionType": "Say", - "ChatMessage": "I have a favor to ask" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040061, - "Position": { - "X": -2.1210327, - "Y": -15.847441, - "Z": -104.631165 - }, - "TerritoryId": 961, - "InteractionType": "Say", - "ChatMessage": "Please, Emet-Selch" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": -55.662647, - "Y": -16.696985, - "Z": -81.29199 - }, - "StopDistance": 0.25, - "TerritoryId": 961, - "InteractionType": "Jump", - "JumpDestination": { - "Position": { - "X": -58.75509, - "Y": -15.402463, - "Z": -83.133934 - } - }, - "DisableNavmesh": true - }, - { - "Position": { - "X": -64.19198, - "Y": -15.332472, - "Z": -84.65695 - }, - "StopDistance": 0.25, - "TerritoryId": 961, - "InteractionType": "Emote", - "Emote": "wave" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040069, - "Position": { - "X": 134.90503, - "Y": 10.385856, - "Z": 88.91431 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "AetheryteShortcut": "Elpis - Anagnorisis" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4426_Aether to Aether.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4426_Aether to Aether.json deleted file mode 100644 index 5352451d..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4426_Aether to Aether.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040071, - "Position": { - "X": 132.82971, - "Y": 10.385857, - "Z": 89.34155 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -137.80992, - "Y": -26.995626, - "Z": 543.8281 - }, - "StopDistance": 0.5, - "TerritoryId": 961, - "InteractionType": "Jump", - "JumpDestination": { - "Position": { - "X": -144.54877, - "Y": -26.230347, - "Z": 551.5067 - } - } - }, - { - "DataId": 2012023, - "Position": { - "X": -144.54877, - "Y": -26.230347, - "Z": 551.5067 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818377 - }, - { - "Position": { - "X": -139.15512, - "Y": -27.030453, - "Z": 535.6933 - }, - "TerritoryId": 961, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 1040073, - "Position": { - "X": -164.11078, - "Y": -41.02881, - "Z": 377.37073 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012024, - "Position": { - "X": -481.40692, - "Y": -28.610718, - "Z": 490.53174 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818378 - }, - { - "DataId": 1040080, - "Position": { - "X": -530.2358, - "Y": -26.214441, - "Z": 490.6233 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 177, - "Position": { - "X": -633.7225, - "Y": -19.821533, - "Z": 542.56494 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1040081, - "Position": { - "X": -659.35767, - "Y": -22.39482, - "Z": 525.44434 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040084, - "Position": { - "X": -661.1277, - "Y": -22.394821, - "Z": 527.88574 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4427_A Sentimental Gift.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4427_A Sentimental Gift.json deleted file mode 100644 index 610cb853..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4427_A Sentimental Gift.json +++ /dev/null @@ -1,191 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040083, - "Position": { - "X": -659.3271, - "Y": -22.39482, - "Z": 525.47485 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040084, - "Position": { - "X": -661.1277, - "Y": -22.394821, - "Z": 527.88574 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012135, - "Position": { - "X": -621.2711, - "Y": -19.241638, - "Z": 546.50183 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "$.1": "QuestVariables if done first: 1 0 0 0 0 128" - }, - { - "DataId": 2012136, - "Position": { - "X": -583.85596, - "Y": -20.035156, - "Z": 543.572 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012137, - "Position": { - "X": -577.1725, - "Y": -21.469482, - "Z": 482.56653 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012138, - "Position": { - "X": -601.0681, - "Y": -25.345276, - "Z": 438.37634 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012139, - "Position": { - "X": -686.5492, - "Y": -26.138794, - "Z": 441.24512 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 2012140, - "Position": { - "X": -731.7464, - "Y": -27.084778, - "Z": 460.77673 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "Position": { - "X": -734.30804, - "Y": -28.391644, - "Z": 432.59787 - }, - "TerritoryId": 961, - "InteractionType": "WalkTo", - "Mount": true - }, - { - "DataId": 2012021, - "Position": { - "X": -754.757, - "Y": -36.02661, - "Z": 411.12378 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818375, - "DisableNavmesh": true - }, - { - "DataId": 2012141, - "Position": { - "X": -789.08984, - "Y": -36.05713, - "Z": 486.41187 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 2012142, - "Position": { - "X": -803.4028, - "Y": -36.514893, - "Z": 513.6034 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040087, - "Position": { - "X": -664.1489, - "Y": -22.39482, - "Z": 533.8368 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4428_Verdict and Execution.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4428_Verdict and Execution.json deleted file mode 100644 index 6b4040f2..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4428_Verdict and Execution.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040088, - "Position": { - "X": -655.72595, - "Y": -22.394821, - "Z": 521.87366 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040092, - "Position": { - "X": -340.9629, - "Y": -39.973907, - "Z": 368.06274 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040097, - "Position": { - "X": -213.79413, - "Y": -33.401405, - "Z": 242.35901 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": -207.7455, - "Y": -30.993412, - "Z": 232.53859 - }, - "TerritoryId": 961, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14075, - 14074 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012145, - "Position": { - "X": -212.23773, - "Y": -31.876099, - "Z": 233.66138 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040100, - "Position": { - "X": -638.1476, - "Y": -22.39482, - "Z": 504.90576 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4429_Travelers at the Crossroads.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4429_Travelers at the Crossroads.json deleted file mode 100644 index 52d650df..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4429_Travelers at the Crossroads.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040101, - "Position": { - "X": -635.5841, - "Y": -22.39482, - "Z": 505.08887 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040102, - "Position": { - "X": -106.61487, - "Y": -10.281434, - "Z": 236.07227 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "AetheryteShortcut": "Elpis - Anagnorisis" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040104, - "Position": { - "X": -182.17749, - "Y": 12.500029, - "Z": -10.971252 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040106, - "Position": { - "X": -350.20984, - "Y": 161.78714, - "Z": 26.108154 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012029, - "Position": { - "X": -255.54291, - "Y": 143.05322, - "Z": -36.972656 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818383 - }, - { - "DataId": 2012146, - "Position": { - "X": -554.345, - "Y": 147.44788, - "Z": 98.25281 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040109, - "Position": { - "X": -491.11166, - "Y": 140.39177, - "Z": -113.81708 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4430_A Past Not Yet Come to Pass.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4430_A Past Not Yet Come to Pass.json deleted file mode 100644 index cd21f0d6..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4430_A Past Not Yet Come to Pass.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040109, - "Position": { - "X": -491.11166, - "Y": 140.39177, - "Z": -113.81708 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 178, - "Position": { - "X": -529.9001, - "Y": 161.24207, - "Z": -222.2782 - }, - "StopDistance": 7, - "TerritoryId": 961, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1040112, - "Position": { - "X": -586.5721, - "Y": 167.99568, - "Z": -265.49176 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040112, - "Position": { - "X": -586.5721, - "Y": 167.99568, - "Z": -265.49176 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040115, - "Position": { - "X": -595.0561, - "Y": 159.70364, - "Z": -175.24994 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040116, - "Position": { - "X": -578.4542, - "Y": 159.66537, - "Z": -173.75458 - }, - "TerritoryId": 961, - "InteractionType": "WaitForManualProgress", - "Comment": "Talk (1, 2, 1)" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040115, - "Position": { - "X": -595.0561, - "Y": 159.70364, - "Z": -175.24994 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": -585.33386, - "Y": 159.16429, - "Z": -197.54811 - }, - "TerritoryId": 961, - "InteractionType": "WalkTo", - "Mount": true - }, - { - "DataId": 1040117, - "Position": { - "X": -442.43536, - "Y": 140.56909, - "Z": -155.5047 - }, - "TerritoryId": 961, - "InteractionType": "WaitForManualProgress", - "Comment": "Talk (2, 2, 1)" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040115, - "Position": { - "X": -595.0561, - "Y": 159.70364, - "Z": -175.24994 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4431_Witness to the Spectacle.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4431_Witness to the Spectacle.json deleted file mode 100644 index d33ae5e4..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4431_Witness to the Spectacle.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040115, - "Position": { - "X": -595.0561, - "Y": 159.70364, - "Z": -175.24994 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040118, - "Position": { - "X": -814.51135, - "Y": 169.52979, - "Z": -194.35425 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012028, - "Position": { - "X": -761.7151, - "Y": 159.99072, - "Z": -108.99524 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818382 - }, - { - "DataId": 1040121, - "Position": { - "X": -833.9513, - "Y": 169.52928, - "Z": -61.905884 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040121, - "Position": { - "X": -833.9513, - "Y": 169.52928, - "Z": -61.905884 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040124, - "Position": { - "X": -848.38635, - "Y": 286.97595, - "Z": -175.86023 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040126, - "Position": { - "X": -719.7833, - "Y": 365.28336, - "Z": -334.64563 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040128, - "Position": { - "X": -664.4236, - "Y": 178.07872, - "Z": -334.5846 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4432_Worthy of His Back.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4432_Worthy of His Back.json deleted file mode 100644 index eed67db3..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4432_Worthy of His Back.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040128, - "Position": { - "X": -664.4236, - "Y": 178.07872, - "Z": -334.5846 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -297.88638, - "Y": 146.9291, - "Z": 84.30863 - }, - "TerritoryId": 961, - "InteractionType": "WalkTo" - }, - { - "DataId": 2012149, - "Position": { - "X": -353.1396, - "Y": 146.92908, - "Z": 143.57214 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040129, - "Position": { - "X": -629.0532, - "Y": 138.676, - "Z": 62.302612 - }, - "TerritoryId": 961, - "InteractionType": "SinglePlayerDuty", - "Comment": "Venat" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040129, - "Position": { - "X": -629.0532, - "Y": 138.676, - "Z": 62.302612 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4433_A Flower upon Your Return.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4433_A Flower upon Your Return.json deleted file mode 100644 index efbe4c0b..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4433_A Flower upon Your Return.json +++ /dev/null @@ -1,132 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040129, - "Position": { - "X": -629.0532, - "Y": 138.676, - "Z": 62.302612 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012026, - "Position": { - "X": -555.6268, - "Y": 158.09863, - "Z": 172.41162 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818380 - }, - { - "DataId": 1040132, - "Position": { - "X": -513.6339, - "Y": 156.7207, - "Z": 198.68762 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040134, - "Position": { - "X": -515.2819, - "Y": 156.84904, - "Z": 199.32861 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012027, - "Position": { - "X": -392.08063, - "Y": 173.72388, - "Z": -293.59882 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818381, - "AetheryteShortcut": "Elpis - Poieten Oikos" - }, - { - "DataId": 2012151, - "Position": { - "X": -481.8647, - "Y": 157.36621, - "Z": -367.48303 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1042043, - "Position": { - "X": -342.5498, - "Y": 294.93375, - "Z": -559.62463 - }, - "StopDistance": 6, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2012025, - "Position": { - "X": -402.945, - "Y": 327.7484, - "Z": -691.3405 - }, - "TerritoryId": 961, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818379 - }, - { - "DataId": 1040135, - "Position": { - "X": -407.46167, - "Y": 329.89032, - "Z": -759.24316 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4434_Hunger in the Garden.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4434_Hunger in the Garden.json deleted file mode 100644 index 6928b2f8..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4434_Hunger in the Garden.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040136, - "Position": { - "X": -405.69165, - "Y": 329.81177, - "Z": -760.1892 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012153, - "Position": { - "X": -207.7821, - "Y": 306.63, - "Z": -653.13196 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040138, - "Position": { - "X": -47.196167, - "Y": 151.94286, - "Z": -624.7196 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040141, - "Position": { - "X": 242.20642, - "Y": 165.84848, - "Z": -608.6061 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040138, - "Position": { - "X": -47.196167, - "Y": 151.94286, - "Z": -624.7196 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4435_Words without Sound.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4435_Words without Sound.json deleted file mode 100644 index 6ab08d04..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4435_Words without Sound.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040140, - "Position": { - "X": -44.63269, - "Y": 151.69983, - "Z": -623.43787 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012155, - "Position": { - "X": 16.54684, - "Y": 128.4602, - "Z": -549.886 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012158, - "Position": { - "X": 197.31433, - "Y": 91.569336, - "Z": -656.91614 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012161, - "Position": { - "X": 306.84363, - "Y": 138.47559, - "Z": -749.4774 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012164, - "Position": { - "X": 413.5653, - "Y": 148.63806, - "Z": -418.69232 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040147, - "Position": { - "X": 412.28345, - "Y": 148.76953, - "Z": -417.34955 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4436_Follow Wander Stumble Listen.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4436_Follow Wander Stumble Listen.json deleted file mode 100644 index e23cd469..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4436_Follow Wander Stumble Listen.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040148, - "Position": { - "X": 416.15918, - "Y": 148.81448, - "Z": -418.53973 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012167, - "Position": { - "X": 436.057, - "Y": 149.12634, - "Z": -360.2503 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": 463.18567, - "Y": 138.58543, - "Z": -273.41803 - }, - "TerritoryId": 961, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 2012169, - "Position": { - "X": 523.7352, - "Y": 139.29956, - "Z": -186.9383 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": 726.4087, - "Y": 139.19812, - "Z": -131.47159 - }, - "TerritoryId": 961, - "InteractionType": "WalkTo" - }, - { - "DataId": 2012170, - "Position": { - "X": 805.0812, - "Y": 153.521, - "Z": -210.55933 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012171, - "Position": { - "X": 741.39, - "Y": 148.05823, - "Z": -356.55762 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040151, - "Position": { - "X": 504.35632, - "Y": 151.56888, - "Z": -303.88342 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4437_Caging the Messenger.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4437_Caging the Messenger.json deleted file mode 100644 index 05cb7006..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4437_Caging the Messenger.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "TerritoryBlacklist": [ - 974 - ], - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040152, - "Position": { - "X": 508.75085, - "Y": 151.51599, - "Z": -303.39514 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040154, - "Position": { - "X": -401.23596, - "Y": 329.78302, - "Z": -760.3418 - }, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "TerritoryId": 961, - "InteractionType": "Duty", - "ContentFinderConditionId": 787 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040159, - "Position": { - "X": 473.1975, - "Y": -17.131165, - "Z": 49.66809 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4438_Thou Must Live Die and Know.json b/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4438_Thou Must Live Die and Know.json deleted file mode 100644 index 2729997b..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/E-Elpis/4438_Thou Must Live Die and Know.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040159, - "Position": { - "X": 473.1975, - "Y": -17.131165, - "Z": 49.66809 - }, - "StopDistance": 5, - "TerritoryId": 961, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040160, - "Position": { - "X": 265.156, - "Y": 46.937138, - "Z": 790.70715 - }, - "TerritoryId": 961, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2009758, - "Position": { - "X": -0.015319824, - "Y": 1.0223389, - "Z": 14.206055 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.56799, - "Y": 5.0201416, - "Z": 4.5318604 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AetheryteShortcut": "Old Sharlayan", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - }, - { - "DataId": 1040161, - "Position": { - "X": -0.35101318, - "Y": 1.9073486E-06, - "Z": -3.3417358 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4439_As the Heavens Burn.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4439_As the Heavens Burn.json deleted file mode 100644 index 599486b7..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4439_As the Heavens Burn.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040161, - "Position": { - "X": -0.35101318, - "Y": 1.9073486E-06, - "Z": -3.3417358 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039668, - "Position": { - "X": -389.97485, - "Y": 21.999998, - "Z": 501.85388 - }, - "TerritoryId": 958, - "InteractionType": "SinglePlayerDuty", - "AetheryteShortcut": "Garlemald - Camp Broken Glass", - "Comment": "As the Heavens Burn" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039675, - "Position": { - "X": -404.8982, - "Y": 21.999998, - "Z": 416.3423 - }, - "StopDistance": 6, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4440_Outside Help.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4440_Outside Help.json deleted file mode 100644 index 85a5a8c3..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4440_Outside Help.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039681, - "Position": { - "X": -401.3886, - "Y": 22.030764, - "Z": 419.94336 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039685, - "Position": { - "X": 108.018555, - "Y": -10.587427, - "Z": 269.4895 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.56799, - "Y": 5.0201416, - "Z": 4.5318604 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AetheryteShortcut": "Old Sharlayan", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2011937, - "Position": { - "X": -0.015319824, - "Y": 1.1443481, - "Z": 14.785889 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - }, - { - "DataId": 1039683, - "Position": { - "X": -3.1586914, - "Y": 41.530132, - "Z": -160.35712 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Baldesion Annex", - "[Old Sharlayan] The Rostra" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012211, - "Position": { - "X": 0.38146973, - "Y": 43.59497, - "Z": -273.30438 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039693, - "Position": { - "X": 2.5177002, - "Y": 40.2, - "Z": -235.67566 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4441_Going Underground.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4441_Going Underground.json deleted file mode 100644 index 9654a723..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4441_Going Underground.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039701, - "Position": { - "X": 4.257263, - "Y": 40.2, - "Z": -234.21082 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039702, - "Position": { - "X": 422.0492, - "Y": 166.41168, - "Z": -453.42188 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "AetheryteShortcut": "Labyrinthos - Archeion" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039545, - "Position": { - "X": 361.80652, - "Y": 170.1, - "Z": -393.36237 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - }, - { - "DataId": 1039711, - "Position": { - "X": 346.4254, - "Y": 90.90158, - "Z": -371.1147 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039712, - "Position": { - "X": 380.69727, - "Y": 79.691376, - "Z": 299.3667 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039721, - "Position": { - "X": 362.02026, - "Y": 79.691376, - "Z": 302.11328 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039722, - "Position": { - "X": 194.41516, - "Y": -23.530436, - "Z": 303.91382 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1040448, - "Position": { - "X": -21.286377, - "Y": -30.155542, - "Z": 637.41516 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039740, - "Position": { - "X": -19.058533, - "Y": -30.155542, - "Z": 637.07935 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4442_No Job Too Small.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4442_No Job Too Small.json deleted file mode 100644 index a0b68026..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4442_No Job Too Small.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039733, - "Position": { - "X": -20.767578, - "Y": -30.155542, - "Z": 638.7273 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 79.66557, - "Y": -29.904594, - "Z": 457.04776 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo" - }, - { - "DataId": 2011989, - "Position": { - "X": 46.28064, - "Y": -29.800903, - "Z": 178.85095 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818323 - }, - { - "DataId": 1039750, - "Position": { - "X": 28.091797, - "Y": -31.530422, - "Z": 90.196045 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1037271, - "Position": { - "X": 84.64172, - "Y": -31.530367, - "Z": 31.021484 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "$.0": "[1] Navmesh navigates here first, even if you feed it [2]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 64" - }, - { - "DataId": 1037253, - "Position": { - "X": 34.74475, - "Y": -28.549177, - "Z": 45.548096 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "$.0": "[2]", - "$.1": "QuestVariables after: 2 0 0 0 0 192" - }, - { - "DataId": 1037275, - "Position": { - "X": 106.126465, - "Y": -29.529999, - "Z": -14.450317 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 167, - "Position": { - "X": 8.377136, - "Y": -27.542603, - "Z": -46.67737 - }, - "StopDistance": 7, - "TerritoryId": 956, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1039761, - "Position": { - "X": -17.685242, - "Y": -31.53043, - "Z": -76.798706 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4443_Wise Guides.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4443_Wise Guides.json deleted file mode 100644 index e324c1ca..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4443_Wise Guides.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039762, - "Position": { - "X": -15.610046, - "Y": -31.53043, - "Z": -78.324646 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039766, - "Position": { - "X": 127.45862, - "Y": -17.530378, - "Z": -73.50275 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012212, - "Position": { - "X": 126.35986, - "Y": -17.532654, - "Z": -77.073364 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "WaitForManualProgress", - "Comment": "Find Points of Interest" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012213, - "Position": { - "X": 218.12769, - "Y": -25.742065, - "Z": 104.600464 - }, - "TerritoryId": 956, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 13983 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040391, - "Position": { - "X": 211.65784, - "Y": -25.759167, - "Z": 98.22229 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040392, - "Position": { - "X": 187.396, - "Y": -23.530434, - "Z": 281.42212 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039549, - "Position": { - "X": 229.87708, - "Y": -18.742016, - "Z": 298.72583 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - }, - { - "DataId": 1040397, - "Position": { - "X": 372.39636, - "Y": 79.691376, - "Z": 299.1836 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4444_Agriculture Shock.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4444_Agriculture Shock.json deleted file mode 100644 index 4b0a5aad..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4444_Agriculture Shock.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040400, - "Position": { - "X": 373.6781, - "Y": 79.691376, - "Z": 299.8855 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040402, - "Position": { - "X": 494.8042, - "Y": 65.06, - "Z": -37.70508 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1037985, - "Position": { - "X": 481.8036, - "Y": 66.16195, - "Z": -108.537415 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040402, - "Position": { - "X": 422.61563, - "Y": 65.31176, - "Z": -121.74779 - }, - "StopDistance": 0.25, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040402, - "Position": { - "X": 407.89633, - "Y": 65.16199, - "Z": -119.62697 - }, - "StopDistance": 0.25, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040402, - "Position": { - "X": 463.33115, - "Y": 65.16199, - "Z": -66.60645 - }, - "StopDistance": 0.25, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1040402, - "Position": { - "X": 485.30798, - "Y": 65.16199, - "Z": -96.01148 - }, - "StopDistance": 0.25, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1037985, - "Position": { - "X": 481.8036, - "Y": 66.16195, - "Z": -108.537415 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040400, - "Position": { - "X": 373.6781, - "Y": 79.691376, - "Z": 299.8855 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4445_Sage Council.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4445_Sage Council.json deleted file mode 100644 index df8d99a9..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4445_Sage Council.json +++ /dev/null @@ -1,221 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040401, - "Position": { - "X": 374.83777, - "Y": 79.691376, - "Z": 298.08484 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 5.4520116, - "Y": -28.723352, - "Z": -42.992764 - }, - "StopDistance": 0.75, - "TerritoryId": 956, - "InteractionType": "WalkTo", - "AetheryteShortcut": "Labyrinthos - Sharlayan Hamlet", - "Mount": true - }, - { - "DataId": 1039687, - "Position": { - "X": -18.875488, - "Y": -31.53043, - "Z": -76.98181 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040409, - "Position": { - "X": -99.076904, - "Y": -28.516306, - "Z": -60.013794 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040422, - "Position": { - "X": -37.125244, - "Y": -29.530075, - "Z": -169.14624 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "Distracted Researcher", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 2 0" - }, - { - "DataId": 1040416, - "Position": { - "X": 3.0670166, - "Y": -29.530357, - "Z": -126.17688 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "Hyperventilating Engineer", - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 130 0" - }, - { - "DataId": 1040420, - "Position": { - "X": 40.634766, - "Y": -17.53038, - "Z": -69.62695 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "Harried Aetherologist", - "$.0": "[3]", - "$.1": "QuestVariables if done after [2]: 3 0 0 0 138 0" - }, - { - "DataId": 1040421, - "Position": { - "X": 48.142212, - "Y": -31.53043, - "Z": -48.111755 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "Grimacing Naturalist", - "$.0": "[4]", - "$.1": "QuestVariables if done after [3]: 4 0 0 0 142 0" - }, - { - "DataId": 1040417, - "Position": { - "X": 59.311768, - "Y": -29.530416, - "Z": -24.429688 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "Ponderous Mathematician", - "$.0": "[5]", - "$.1": "QuestVariables if done after [4]: 5 0 0 0 206 0" - }, - { - "DataId": 1040418, - "Position": { - "X": -19.394226, - "Y": -29.530432, - "Z": 10.299805 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "Despondent Engineer", - "Mount": true, - "$.0": "[6]", - "$.1": "QuestVariables if done after [5]: 6 0 0 0 238 0" - }, - { - "DataId": 1040423, - "Position": { - "X": -22.232422, - "Y": -31.530355, - "Z": 38.071167 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "Skeptical Researcher", - "Mount": true, - "$.0": "[7]", - "$.1": "QuestVariables if done after [6]: 7 0 0 0 239 0" - }, - { - "DataId": 1040419, - "Position": { - "X": -15.762573, - "Y": -31.530432, - "Z": -51.59082 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "Anxious Engineer", - "$.0": "[8]", - "$.2": "QuestVariables if done first: 1 0 0 0 16 0" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040436, - "Position": { - "X": -78.26355, - "Y": -29.53, - "Z": -58.854065 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012220, - "Position": { - "X": -74.418274, - "Y": -29.58728, - "Z": -53.23877 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040436, - "Position": { - "X": -78.26355, - "Y": -29.53, - "Z": -58.854065 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4446_Hither and Yarns.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4446_Hither and Yarns.json deleted file mode 100644 index 8c59e5d1..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4446_Hither and Yarns.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040436, - "Position": { - "X": -78.26355, - "Y": -29.53, - "Z": -58.854065 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011987, - "Position": { - "X": -176.4096, - "Y": -10.11676, - "Z": -242.26752 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818321 - }, - { - "Position": { - "X": -198.16975, - "Y": -19.32426, - "Z": -238.2704 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 2011988, - "Position": { - "X": -505.14993, - "Y": -21.835754, - "Z": -122.60626 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818322 - }, - { - "DataId": 1040444, - "Position": { - "X": -424.24664, - "Y": -31.831255, - "Z": -38.895264 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012223, - "Position": { - "X": -427.2984, - "Y": -31.418396, - "Z": -38.19336 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040446, - "Position": { - "X": -697.4136, - "Y": -31.621387, - "Z": 164.11072 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 168, - "Position": { - "X": -729.18286, - "Y": -27.634155, - "Z": 302.1438 - }, - "StopDistance": 6, - "TerritoryId": 956, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1040447, - "Position": { - "X": -710.0176, - "Y": -31.53043, - "Z": 322.59094 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040450, - "Position": { - "X": -754.4213, - "Y": -29.529999, - "Z": 389.70007 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040447, - "Position": { - "X": -710.0176, - "Y": -31.53043, - "Z": 322.59094 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4447_Once Forged.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4447_Once Forged.json deleted file mode 100644 index 90dcf6ac..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4447_Once Forged.json +++ /dev/null @@ -1,150 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040451, - "Position": { - "X": -709.28516, - "Y": -31.53043, - "Z": 321.46167 - }, - "StopDistance": 5, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040454, - "Position": { - "X": -613.18384, - "Y": -19.786552, - "Z": 626.8557 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012225, - "Position": { - "X": -594.5678, - "Y": -26.596497, - "Z": 609.09436 - }, - "TerritoryId": 956, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 13982, - 13981, - 13980 - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012442, - "Position": { - "X": -594.5678, - "Y": -26.596497, - "Z": 609.09436 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2011985, - "Position": { - "X": -547.7532, - "Y": -18.051514, - "Z": 661.86 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818316 - }, - { - "Position": { - "X": -102.94707, - "Y": -29.933468, - "Z": 674.6727 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": -120.48093, - "Y": -21.96263, - "Z": 685.2332 - }, - "TerritoryId": 956, - "InteractionType": "Jump", - "DisableNavmesh": true, - "JumpDestination": { - "Position": { - "X": -124.55376, - "Y": -19.659834, - "Z": 686.864 - }, - "StopDistance": 0.5, - "DelaySeconds": 0.25 - } - }, - { - "DataId": 2011986, - "Position": { - "X": -128.06903, - "Y": -20.523438, - "Z": 676.7223 - }, - "TerritoryId": 956, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818317, - "DisableNavmesh": true - }, - { - "Position": { - "X": -114.01625, - "Y": -30.313616, - "Z": 670.05585 - }, - "TerritoryId": 956, - "InteractionType": "WalkTo", - "Mount": true, - "DisableNavmesh": true - }, - { - "DataId": 1040455, - "Position": { - "X": 10.147156, - "Y": -30.155546, - "Z": 619.62305 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4448_Bonds of Adamantite.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4448_Bonds of Adamantite.json deleted file mode 100644 index c319c430..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4448_Bonds of Adamantite.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040455, - "Position": { - "X": 10.147156, - "Y": -30.155546, - "Z": 619.62305 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": 5.4520116, - "Y": -28.723352, - "Z": -42.992764 - }, - "AetheryteShortcut": "Labyrinthos - Sharlayan Hamlet", - "TerritoryId": 956, - "InteractionType": "WalkTo", - "Mount": true - }, - { - "DataId": 2012226, - "Position": { - "X": -11.6427, - "Y": -31.540405, - "Z": -81.28485 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040457, - "Position": { - "X": 36.51477, - "Y": -16.246998, - "Z": 129.47266 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040466, - "Position": { - "X": -702.4186, - "Y": -31.53043, - "Z": 301.93018 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "AetheryteShortcut": "Labyrinthos - Aporia" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040467, - "Position": { - "X": -620.63025, - "Y": -27.670597, - "Z": 302.17432 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040468, - "Position": { - "X": -598.32153, - "Y": -191.11913, - "Z": 301.71655 - }, - "StopDistance": 7, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": -413.49243, - "Y": -220.16248, - "Z": 301.63266 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Comment": "TODO Should cancel navmesh if condition is [OccupiedInCutsceneEvent OR BetweenAreas]; then verify next marker distance" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040478, - "Position": { - "X": -406.9734, - "Y": -220.18355, - "Z": 304.1886 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4449_Her Children One and All.json b/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4449_Her Children One and All.json deleted file mode 100644 index f7b7ff8e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/F-Labyrinthos2/4449_Her Children One and All.json +++ /dev/null @@ -1,91 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040478, - "Position": { - "X": -406.9734, - "Y": -220.18355, - "Z": 304.1886 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040487, - "Position": { - "X": -234.6991, - "Y": -224.38274, - "Z": 349.01953 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "TerritoryId": 956, - "InteractionType": "Duty", - "ContentFinderConditionId": 786 - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "TerritoryId": 1030, - "InteractionType": "Duty", - "ContentFinderConditionId": 790 - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1040503, - "Position": { - "X": -221.4237, - "Y": -224.3827, - "Z": 364.40063 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Rostra", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4450_A Bold Decision.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4450_A Bold Decision.json deleted file mode 100644 index 2acee38e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4450_A Bold Decision.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040276, - "Position": { - "X": -99.076904, - "Y": 3.9334679, - "Z": 1.3884888 - }, - "StopDistance": 7, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039793, - "Position": { - "X": 3.3111572, - "Y": 40.2, - "Z": -231.64728 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Baldesion Annex", - "[Old Sharlayan] The Rostra" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039804, - "Position": { - "X": -0.16790771, - "Y": 41.37599, - "Z": -146.65448 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039818, - "Position": { - "X": 29.861816, - "Y": 5.1499996, - "Z": -65.445984 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Rostra", - "[Old Sharlayan] Aetheryte Plaza" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012347, - "Position": { - "X": 31.143677, - "Y": 5.081238, - "Z": -62.485718 - }, - "TerritoryId": 962, - "InteractionType": "WaitForManualProgress", - "Comment": "Talk (2, 2, 2, N/A, 2)" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1037047, - "Position": { - "X": 26.718506, - "Y": 5.1499996, - "Z": -65.87323 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4451_Friends Gathered.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4451_Friends Gathered.json deleted file mode 100644 index 2e4d6d93..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4451_Friends Gathered.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039818, - "Position": { - "X": 29.861816, - "Y": 5.1499996, - "Z": -65.445984 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040276, - "Position": { - "X": -99.076904, - "Y": 3.9334679, - "Z": 1.3884888 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039820, - "Position": { - "X": -87.02222, - "Y": -13.777, - "Z": 147.29529 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Baldesion Annex", - "[Old Sharlayan] Scholar's Harbor" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039821, - "Position": { - "X": -86.96118, - "Y": -13.777, - "Z": 149.70618 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039823, - "Position": { - "X": -282.09363, - "Y": 19.003872, - "Z": 20.248657 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Scholar's Harbor", - "[Old Sharlayan] The Studium" - ], - "$.1": "QuestVariables if done first: 16 16 128 0 0 128" - }, - { - "DataId": 1039825, - "Position": { - "X": 223.46838, - "Y": 24.898844, - "Z": -149.58423 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Studium", - "[Old Sharlayan] The Leveilleur Estate" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Leveilleur Estate", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4452_Unto the Heavens.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4452_Unto the Heavens.json deleted file mode 100644 index 89c4e4ee..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4452_Unto the Heavens.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039550, - "Position": { - "X": -620.7218, - "Y": -27.670597, - "Z": 302.17432 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "AetheryteShortcut": "Labyrinthos - Aporia", - "SkipIf": [ - "FlyingUnlocked" - ] - }, - { - "DataId": 1039827, - "Position": { - "X": -323.38446, - "Y": -224.2727, - "Z": 301.56396 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039847, - "Position": { - "X": -334.92035, - "Y": -224.19772, - "Z": 311.9402 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039852, - "Position": { - "X": -376.1197, - "Y": 80.7959, - "Z": 607.6904 - }, - "StopDistance": 5, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4453_A Strange New World.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4453_A Strange New World.json deleted file mode 100644 index f6e509fd..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4453_A Strange New World.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039853, - "Position": { - "X": -377.7066, - "Y": 80.86001, - "Z": 606.53076 - }, - "StopDistance": 7, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039860, - "Position": { - "X": -31.11322, - "Y": 60.569, - "Z": 551.0491 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012351, - "Position": { - "X": -11.490112, - "Y": 61.905884, - "Z": 533.6842 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 16 1 0 0 0 128" - }, - { - "DataId": 1040292, - "Position": { - "X": 6.5460815, - "Y": 60.71497, - "Z": 554.4059 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 33 1 0 0 0 192" - }, - { - "DataId": 1040293, - "Position": { - "X": 56.77881, - "Y": 99.37216, - "Z": 665.5221 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "$.0": "[3]", - "$.2": "QuestVariables if done first: 16 16 0 0 0 32" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039860, - "Position": { - "X": -31.11322, - "Y": 60.569, - "Z": 551.0491 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040294, - "Position": { - "X": -373.00684, - "Y": 90.107704, - "Z": 460.99023 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039769, - "Position": { - "X": -482.9328, - "Y": 73.09421, - "Z": 310.9331 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4454_On Burdened Wings.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4454_On Burdened Wings.json deleted file mode 100644 index 39fb5212..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4454_On Burdened Wings.json +++ /dev/null @@ -1,230 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039772, - "Position": { - "X": -476.2188, - "Y": 73.47535, - "Z": 309.86487 - }, - "StopDistance": 7, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038010, - "Position": { - "X": -517.9065, - "Y": 72.5362, - "Z": 332.23462 - }, - "StopDistance": 8, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 64 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 64" - }, - { - "DataId": 1038008, - "Position": { - "X": -603.9369, - "Y": 78.6382, - "Z": 303.8529 - }, - "StopDistance": 8, - "TerritoryId": 960, - "InteractionType": "Interact", - "$.0": "[2]", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 32 - ], - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 96" - }, - { - "DataId": 179, - "Position": { - "X": -544.1215, - "Y": 74.34187, - "Z": 269.6726 - }, - "StopDistance": 10, - "TerritoryId": 960, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1038006, - "Position": { - "X": -490.6844, - "Y": 88.871994, - "Z": 207.35486 - }, - "StopDistance": 8, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 128 - ], - "$.1": "QuestVariables if done first: 1 0 0 0 0 128" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039775, - "Position": { - "X": -469.3523, - "Y": 55.880516, - "Z": -36.66742 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012283, - "Position": { - "X": -465.1103, - "Y": 56.47351, - "Z": -30.71643 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 32 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 32" - }, - { - "DataId": 2012282, - "Position": { - "X": -479.3927, - "Y": 56.290405, - "Z": -33.676758 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 64 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 ??" - }, - { - "DataId": 2012281, - "Position": { - "X": -472.25153, - "Y": 56.26001, - "Z": -20.676025 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 128 - ], - "Comment": "TODO Verify quest variables flags" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012284, - "Position": { - "X": -474.32672, - "Y": 56.198975, - "Z": -41.031555 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039776, - "Position": { - "X": -572.2896, - "Y": 64.78333, - "Z": -200.3357 - }, - "StopDistance": 1, - "TerritoryId": 960, - "InteractionType": "Combat", - "EnemySpawnType": "AutoOnEnterArea", - "KillEnemyDataIds": [ - 14002 - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039776, - "Position": { - "X": -572.2896, - "Y": 64.78333, - "Z": -200.3357 - }, - "StopDistance": 8, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4455_A Test of Will.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4455_A Test of Will.json deleted file mode 100644 index 6f0777b8..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4455_A Test of Will.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041214, - "Position": { - "X": -575.00574, - "Y": 65.25543, - "Z": -190.02063 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040295, - "Position": { - "X": -504.0513, - "Y": 73.32458, - "Z": 273.9757 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "AetheryteShortcut": "Ultima Thule - Reah Tahra" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040306, - "Position": { - "X": -772.3049, - "Y": 59.814697, - "Z": 55.954834 - }, - "StopDistance": 8, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040301, - "Position": { - "X": -620.44714, - "Y": 92.1207, - "Z": -203.35706 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2012544, - "Position": { - "X": -608.7807, - "Y": 92.12769, - "Z": -208 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - }, - { - "DataId": 2012429, - "Position": { - "X": -471.27496, - "Y": 232.19641, - "Z": -253.10144 - }, - "StopDistance": 5, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4456_Roads Paved of Sacrifice.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4456_Roads Paved of Sacrifice.json deleted file mode 100644 index 21ce4968..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4456_Roads Paved of Sacrifice.json +++ /dev/null @@ -1,221 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040307, - "Position": { - "X": -469.29126, - "Y": 232.2548, - "Z": -252.8573 - }, - "StopDistance": 5, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040315, - "Position": { - "X": -345.87628, - "Y": 254.66968, - "Z": -277.27173 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040313, - "Position": { - "X": -339.10126, - "Y": 255.53401, - "Z": -281.75793 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012030, - "Position": { - "X": -333.547, - "Y": 270.83228, - "Z": -361.50153 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818389 - }, - { - "DataId": 2012035, - "Position": { - "X": -238.81903, - "Y": 320.36304, - "Z": -295.15533 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818394 - }, - { - "DataId": 1040317, - "Position": { - "X": -200.57983, - "Y": 268.01642, - "Z": -312.58112 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "Mount": true, - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1040318, - "Position": { - "X": 29.984009, - "Y": 270.45825, - "Z": -535.0271 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012354, - "Position": { - "X": 30.777344, - "Y": 272.51086, - "Z": -600.7019 - }, - "StopDistance": 4, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 128 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 128" - }, - { - "DataId": 2012355, - "Position": { - "X": 64.10315, - "Y": 272.4497, - "Z": -616.4492 - }, - "StopDistance": 4, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 64 - ], - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 192" - }, - { - "DataId": 180, - "Position": { - "X": 64.286255, - "Y": 272.48022, - "Z": -657.49603 - }, - "StopDistance": 8, - "TerritoryId": 960, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 2012356, - "Position": { - "X": 115.526, - "Y": 272.99915, - "Z": -617.853 - }, - "StopDistance": 4, - "TerritoryId": 960, - "InteractionType": "Interact", - "$.0": "[3]", - "$.1": "QuestVariables if done after [2]: 3 0 0 0 0 224", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 32 - ] - }, - { - "DataId": 2012357, - "Position": { - "X": 151.59839, - "Y": 272.9381, - "Z": -592.5841 - }, - "StopDistance": 4, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 16 - ], - "$.0": "[4]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 16" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1040318, - "Position": { - "X": 29.984009, - "Y": 270.45825, - "Z": -535.0271 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4457_Flesh Abandoned.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4457_Flesh Abandoned.json deleted file mode 100644 index 16e9a70c..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4457_Flesh Abandoned.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040318, - "Position": { - "X": 29.984009, - "Y": 270.45825, - "Z": -535.0271 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040329, - "Position": { - "X": 75.69995, - "Y": 268.99997, - "Z": -528.3436 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012358, - "Position": { - "X": 84.97742, - "Y": 269.06226, - "Z": -493.00375 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012358, - "Position": { - "X": 84.97742, - "Y": 269.06226, - "Z": -493.00375 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039759, - "Position": { - "X": 86.778076, - "Y": 269.0949, - "Z": -491.66098 - }, - "StopDistance": 7, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4458_Where Knowledge Leads.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4458_Where Knowledge Leads.json deleted file mode 100644 index 281f8579..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4458_Where Knowledge Leads.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039760, - "Position": { - "X": 82.65808, - "Y": 269.0903, - "Z": -490.44025 - }, - "StopDistance": 7, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040338, - "Position": { - "X": -344.44196, - "Y": 263.13083, - "Z": -463.70648 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1040339, - "Position": { - "X": -341.78687, - "Y": 263.37482, - "Z": -461.44812 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "Position": { - "X": -353.82343, - "Y": 263.4366, - "Z": -458.5238 - }, - "TerritoryId": 960, - "InteractionType": "WalkTo", - "Mount": true - }, - { - "Position": { - "X": -394.40567, - "Y": 266.7831, - "Z": -478.6604 - }, - "TerritoryId": 960, - "InteractionType": "WalkTo", - "DisableNavmesh": true - }, - { - "Position": { - "X": -408.86514, - "Y": 266.81473, - "Z": -519.4911 - }, - "TerritoryId": 960, - "InteractionType": "WalkTo" - }, - { - "DataId": 2012036, - "Position": { - "X": -385.24457, - "Y": 262.50085, - "Z": -629.8772 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818395 - }, - { - "DataId": 2012031, - "Position": { - "X": 13.107483, - "Y": 275.56262, - "Z": -756.40497 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetheryteShortcut": "Ultima Thule - Abode of the Ea", - "AetherCurrentId": 2818390 - }, - { - "DataId": 1039778, - "Position": { - "X": 184.03906, - "Y": 269.03912, - "Z": -637.6288 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4459_Victory x Lost.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4459_Victory x Lost.json deleted file mode 100644 index cc69553c..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4459_Victory x Lost.json +++ /dev/null @@ -1,230 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039782, - "Position": { - "X": 183.12354, - "Y": 269.0203, - "Z": -633.5393 - }, - "StopDistance": 6, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012034, - "Position": { - "X": 424.55164, - "Y": 283.37524, - "Z": -679.7742 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818393 - }, - { - "DataId": 1039787, - "Position": { - "X": 434.37854, - "Y": 284.02585, - "Z": -328.51147 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012794, - "Position": { - "X": 440.7262, - "Y": 285.29785, - "Z": -319.50867 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - }, - { - "DataId": 2012286, - "Position": { - "X": 506.98096, - "Y": 439.68872, - "Z": 157 - }, - "TerritoryId": 960, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 14000, - 14001 - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2012287, - "Position": { - "X": 506.98096, - "Y": 439.68872, - "Z": 157 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039790, - "Position": { - "X": 508.53735, - "Y": 439.695, - "Z": 155.59619 - }, - "StopDistance": 5, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012288, - "Position": { - "X": 493.33936, - "Y": 439.68872, - "Z": 174.9447 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 2012289, - "Position": { - "X": 490.44006, - "Y": 439.68872, - "Z": 191.30237 - }, - "TerritoryId": 960, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 13999 - ] - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 2012033, - "Position": { - "X": 539.26904, - "Y": 437.9796, - "Z": 239.39868 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818392 - }, - { - "DataId": 1039791, - "Position": { - "X": 502.98303, - "Y": 436.99966, - "Z": 308.97986 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 1038039, - "Position": { - "X": 521.9348, - "Y": 436.99805, - "Z": 329.76257 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - }, - { - "DataId": 1038041, - "Position": { - "X": 517.54016, - "Y": 436.99878, - "Z": 345.44885 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - }, - { - "DataId": 1038045, - "Position": { - "X": 504.6615, - "Y": 437.1449, - "Z": 347.64624 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 181, - "Position": { - "X": 489.2804, - "Y": 437.5829, - "Z": 333.63843 - }, - "StopDistance": 5, - "TerritoryId": 960, - "InteractionType": "AttuneAetheryte" - }, - { - "DataId": 1039791, - "Position": { - "X": 502.98303, - "Y": 436.99966, - "Z": 308.97986 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4460_x.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4460_x.json deleted file mode 100644 index 9313227f..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4460_x.json +++ /dev/null @@ -1,188 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1040340, - "Position": { - "X": 544.51807, - "Y": 437.9998, - "Z": 301.4419 - }, - "StopDistance": 5, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012039, - "Position": { - "X": 567.46765, - "Y": 440.9093, - "Z": 402.12085 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818398 - }, - { - "DataId": 2012032, - "Position": { - "X": 661.76843, - "Y": 439.96326, - "Z": 411.73413 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818391 - }, - { - "DataId": 1040343, - "Position": { - "X": 624.3839, - "Y": 441.9763, - "Z": 437.33875 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012359, - "Position": { - "X": 623.3462, - "Y": 442.95398, - "Z": 441.00085 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1040344, - "Position": { - "X": 624.99414, - "Y": 441.9763, - "Z": 439.9939 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2012360, - "Position": { - "X": 525.13916, - "Y": 441.03137, - "Z": 375.50916 - }, - "TerritoryId": 960, - "InteractionType": "WaitForManualProgress", - "Comment": "Duty - Find Errant Omicron" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2012037, - "Position": { - "X": 751.8578, - "Y": 439.96326, - "Z": 357.86987 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818396 - }, - { - "DataId": 2012038, - "Position": { - "X": 645.6607, - "Y": 438.6276, - "Z": 291.0269 - }, - "StopDistance": 1, - "TerritoryId": 960, - "InteractionType": "Jump", - "JumpDestination": { - "DataId": 2012038, - "Position": { - "X": 637.1709, - "Y": 439.23096, - "Z": 289.66187 - }, - "StopDistance": 3 - } - }, - { - "DataId": 2012038, - "Position": { - "X": 637.1709, - "Y": 439.23096, - "Z": 289.66187 - }, - "TerritoryId": 960, - "InteractionType": "AttuneAetherCurrent", - "AetherCurrentId": 2818397, - "DisableNavmesh": true - }, - { - "DataId": 1040349, - "Position": { - "X": 636.92664, - "Y": 438.64966, - "Z": 248.0658 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2012796, - "Position": { - "X": 639.27673, - "Y": 439.78027, - "Z": 241.77905 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - }, - { - "DataId": 1041157, - "Position": { - "X": 801.63257, - "Y": 478.9742, - "Z": 196.79553 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4461_Hello World.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4461_Hello World.json deleted file mode 100644 index 08595d02..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4461_Hello World.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041158, - "Position": { - "X": 799.9846, - "Y": 479.0242, - "Z": 199.42017 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040342, - "Position": { - "X": 546.07446, - "Y": 437.9998, - "Z": 303.8529 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "AetheryteShortcut": "Ultima Thule - Base Omicron" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039565, - "Position": { - "X": 609.4606, - "Y": 440.4633, - "Z": 398.42822 - }, - "TerritoryId": 960, - "InteractionType": "WaitForManualProgress", - "Comment": "Identify Anomaly (Elbow/Knee)" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1041159, - "Position": { - "X": 624.0176, - "Y": 441.9763, - "Z": 439.78027 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041162, - "Position": { - "X": 623.5598, - "Y": 441.9763, - "Z": 436.78955 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4462_Forge Ahead.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4462_Forge Ahead.json deleted file mode 100644 index 1588d7ad..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4462_Forge Ahead.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041161, - "Position": { - "X": 622.4308, - "Y": 441.9763, - "Z": 436.17908 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041163, - "Position": { - "X": 493.15625, - "Y": 436.8645, - "Z": 360.46387 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "AetheryteShortcut": "Ultima Thule - Base Omicron" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012795, - "Position": { - "X": 492.48486, - "Y": 438.04077, - "Z": 365.43823 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - }, - { - "DataId": 1041165, - "Position": { - "X": 460.563, - "Y": 417.0675, - "Z": 415.21326 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1041166, - "Position": { - "X": 459.25073, - "Y": 417.0675, - "Z": 414.66382 - }, - "StopDistance": 5, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1041165, - "Position": { - "X": 231.45715, - "Y": 566, - "Z": 317.96698 - }, - "StopDistance": 1, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041167, - "Position": { - "X": 221.20996, - "Y": 566, - "Z": 314.4121 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4463_Youre Not Alone.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4463_Youre Not Alone.json deleted file mode 100644 index 8e6c1eb9..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4463_Youre Not Alone.json +++ /dev/null @@ -1,206 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1041168, - "Position": { - "X": 222.52222, - "Y": 565.99994, - "Z": 313.1914 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2012364, - "Position": { - "X": 203.9978, - "Y": 565.9723, - "Z": 296.98633 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 128 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done first: 16 0 0 16 0 128" - }, - { - "DataId": 2012367, - "Position": { - "X": 185.74805, - "Y": 568.902, - "Z": 240.03955 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 16 - ], - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 32 16 0 16 0 144" - }, - { - "DataId": 2012368, - "Position": { - "X": 163.16467, - "Y": 567.13196, - "Z": 280.93384 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 8 - ], - "$.0": "[3]", - "$.1": "QuestVariables if done after [1, 2]: 48 17 0 16 0 152" - }, - { - "DataId": 2012366, - "Position": { - "X": 157.24414, - "Y": 566.03345, - "Z": 295.97925 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 32 - ], - "$.0": "[4]", - "$.1": "QuestVariables if done after [1, 2, 3]: 65 17 0 16 0 184" - }, - { - "DataId": 2012369, - "Position": { - "X": 104.29541, - "Y": 569.2682, - "Z": 297.16943 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 4 - ], - "$.0": "[5]", - "$.1": "QuestVariables if done after [1, 2, 3, 4]: 81 17 16 16 0 188" - }, - { - "DataId": 2012365, - "Position": { - "X": 78.99597, - "Y": 566.27747, - "Z": 241.9928 - }, - "TerritoryId": 960, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 64 - ], - "$.0": "[6]", - "$.1": "QuestVariables if done first: 16 0 1 0 0 64" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1041171, - "Position": { - "X": 39.993896, - "Y": 567.5, - "Z": 192.88928 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1041170, - "Position": { - "X": 145.28113, - "Y": 566, - "Z": 390.7987 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": 1.462573, - "Y": 637.1029, - "Z": 2.690414 - }, - "TerritoryId": 1027, - "InteractionType": "WalkTo" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041173, - "Position": { - "X": 1.663208, - "Y": 637.10297, - "Z": 5.2338257 - }, - "StopDistance": 5, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4464_Endwalker.json b/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4464_Endwalker.json deleted file mode 100644 index f4a8bdcb..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/G-UltimaThule/4464_Endwalker.json +++ /dev/null @@ -1,242 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "TerritoryBlacklist": [ - 973 - ], - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1042216, - "Position": { - "X": 4.196167, - "Y": 637.10297, - "Z": 4.2266846 - }, - "TerritoryId": 960, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "TerritoryId": 960, - "InteractionType": "Duty", - "ContentFinderConditionId": 792 - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "TerritoryId": 1029, - "InteractionType": "Duty", - "ContentFinderConditionId": 796 - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1041179, - "Position": { - "X": 99.99231, - "Y": 0, - "Z": 89.98242 - }, - "TerritoryId": 1026, - "InteractionType": "SinglePlayerDuty", - "Comment": "Zenos" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1041188, - "Position": { - "X": -0.16790771, - "Y": 0, - "Z": 0.8086548 - }, - "StopDistance": 5, - "TerritoryId": 351, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 1 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 1" - }, - { - "DataId": 1041181, - "Position": { - "X": -1.236023, - "Y": 0, - "Z": 0.6560669 - }, - "StopDistance": 5, - "TerritoryId": 351, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 128 - ], - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 129" - }, - { - "DataId": 1041182, - "Position": { - "X": -6.4240723, - "Y": 0.009977884, - "Z": -4.7455444 - }, - "TerritoryId": 351, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 64 - ], - "$.0": "[3]", - "$.1": "QuestVariables if done after [1, 2]: 3 0 0 0 0 193" - }, - { - "DataId": 1041184, - "Position": { - "X": -7.034485, - "Y": 0, - "Z": -5.8442383 - }, - "StopDistance": 5, - "TerritoryId": 351, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 16 - ], - "$.0": "[4]", - "$.1": "QuestVariables if done after [1, 2, 3]: 4 0 0 0 0 209" - }, - { - "DataId": 1041183, - "Position": { - "X": 6.6376343, - "Y": 0, - "Z": -6.790344 - }, - "TerritoryId": 351, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 32 - ], - "$.0": "[5]", - "$.1": "QuestVariables if done after [1, 2, 3, 4]: 5 0 0 0 0 241" - }, - { - "DataId": 1041187, - "Position": { - "X": 10.482849, - "Y": 0, - "Z": -8.255188 - }, - "TerritoryId": 351, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 2 - ], - "$.0": "[6]", - "$.1": "QuestVariables if done after [1, 2, 3, 4, 5]: 6 0 0 0 0 243" - }, - { - "DataId": 1041185, - "Position": { - "X": 25.864014, - "Y": -1, - "Z": -5.7526855 - }, - "TerritoryId": 351, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 8 - ], - "$.0": "[7]", - "$.1": "QuestVariables if done after [1, 2, 3, 4, 5, 6]: 7 0 0 0 0 251" - }, - { - "DataId": 1041186, - "Position": { - "X": 29.984009, - "Y": -1, - "Z": 0.1373291 - }, - "TerritoryId": 351, - "InteractionType": "Interact", - "CompletionQuestVariablesFlags": [ - null, - null, - null, - null, - null, - 4 - ], - "$.2": "QuestVariables if done first: 1 0 0 0 0 0 4" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1041189, - "Position": { - "X": -0.015319824, - "Y": 0, - "Z": -7.1870728 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4526_Newfound Adventure.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4526_Newfound Adventure.json deleted file mode 100644 index d482a328..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4526_Newfound Adventure.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 2002881, - "Position": { - "X": 21.133728, - "Y": 22.323914, - "Z": -631.281 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "DisableNavmesh": true - }, - { - "DataId": 1041232, - "Position": { - "X": -0.015319824, - "Y": 0, - "Z": -7.1870728 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2002879, - "Position": { - "X": 0, - "Y": 3, - "Z": 27.5 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - }, - { - "DataId": 1039570, - "Position": { - "X": 36.453735, - "Y": 29, - "Z": -799.7101 - }, - "TerritoryId": 156, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4527_Bountiful Ruins.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4527_Bountiful Ruins.json deleted file mode 100644 index 4d032d94..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4527_Bountiful Ruins.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039570, - "Position": { - "X": 36.453735, - "Y": 29, - "Z": -799.7101 - }, - "TerritoryId": 156, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1037318, - "Position": { - "X": -4.1047363, - "Y": 2.9999943, - "Z": -203.8758 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AetheryteShortcut": "Radz-at-Han", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Mehryde's Meyhane" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039571, - "Position": { - "X": -24.429688, - "Y": 3.0099995, - "Z": -225.42157 - }, - "TerritoryId": 963, - "InteractionType": "WaitForManualProgress", - "Comment": "Talk (1, 1, 1, 2)" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039574, - "Position": { - "X": -13.870483, - "Y": 1.51, - "Z": -178.14911 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039577, - "Position": { - "X": 1.7852783, - "Y": -3.2177195E-06, - "Z": -13.687378 - }, - "StopDistance": 5, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039578, - "Position": { - "X": -254.50525, - "Y": 4.3609705, - "Z": 570.94666 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Yedlihmad", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4528_Friends for the Road.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4528_Friends for the Road.json deleted file mode 100644 index eea0ec92..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4528_Friends for the Road.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039579, - "Position": { - "X": -251.3009, - "Y": 4.388065, - "Z": 571.5265 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact", - "AetheryteShortcut": "Old Sharlayan", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": -350.9551, - "Y": 18.999998, - "Z": 56.043774 - }, - "TerritoryId": 962, - "InteractionType": "WalkTo", - "AethernetShortcut": [ - "[Old Sharlayan] The Baldesion Annex", - "[Old Sharlayan] The Studium" - ] - }, - { - "DataId": 1039581, - "Position": { - "X": -398.45886, - "Y": 19, - "Z": 92.48486 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039550, - "Position": { - "X": -620.7218, - "Y": -27.670597, - "Z": 302.17432 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "AetheryteShortcut": "Labyrinthos - Aporia", - "SkipIf": [ - "FlyingUnlocked" - ] - }, - { - "DataId": 1039582, - "Position": { - "X": -325.2461, - "Y": -224.27272, - "Z": 298.39014 - }, - "TerritoryId": 956, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039585, - "Position": { - "X": -267.5365, - "Y": 0.15800172, - "Z": 603.41797 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Yedlihmad", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4529_Alzadaals Legacy.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4529_Alzadaals Legacy.json deleted file mode 100644 index b83f9e85..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4529_Alzadaals Legacy.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "TerritoryBlacklist": [ - 1050 - ], - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039586, - "Position": { - "X": -264.5152, - "Y": 0.24978253, - "Z": 605.6763 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "TerritoryId": 957, - "InteractionType": "Duty", - "ContentFinderConditionId": 844 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039590, - "Position": { - "X": 113.69495, - "Y": -350.00003, - "Z": -72.19049 - }, - "StopDistance": 7, - "TerritoryId": 1056, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4530_A Brothers Grief.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4530_A Brothers Grief.json deleted file mode 100644 index a74d547b..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4530_A Brothers Grief.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039591, - "Position": { - "X": 107.71338, - "Y": -350, - "Z": -73.68585 - }, - "StopDistance": 5, - "TerritoryId": 1056, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039595, - "Position": { - "X": 107.83545, - "Y": -350, - "Z": -84.82495 - }, - "TerritoryId": 1056, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039600, - "Position": { - "X": 142.443, - "Y": 4.7837553, - "Z": -148.57715 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AetheryteShortcut": "Radz-at-Han" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039600, - "Position": { - "X": 142.443, - "Y": 4.7837553, - "Z": -148.57715 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4531_Sharing the Wealth.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4531_Sharing the Wealth.json deleted file mode 100644 index 316923bf..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4531_Sharing the Wealth.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039600, - "Position": { - "X": 142.443, - "Y": 4.7837553, - "Z": -148.57715 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 199, - "Position": { - "X": 57.91655, - "Y": -24.69344, - "Z": -210.6151 - }, - "TerritoryId": 963, - "InteractionType": "AttuneAethernetShard" - }, - { - "DataId": 1039589, - "Position": { - "X": -270.25262, - "Y": 0.07863108, - "Z": 605.9204 - }, - "TerritoryId": 957, - "AetheryteShortcut": "Thavnair - Yedlihmad", - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": 169.31848, - "Y": 5.3451567, - "Z": 633.7924 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "Fly": true - }, - { - "DataId": 1037631, - "Position": { - "X": 166.64368, - "Y": 5.34517, - "Z": 635.9807 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1039606, - "Position": { - "X": 215.80823, - "Y": 9.935694, - "Z": 561.27246 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039607, - "Position": { - "X": -342.58032, - "Y": 55, - "Z": -68.61987 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AetheryteShortcut": "Radz-at-Han", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4532_Bridging the Rift.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4532_Bridging the Rift.json deleted file mode 100644 index 476fb9a9..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4532_Bridging the Rift.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039609, - "Position": { - "X": -343.09918, - "Y": 55, - "Z": -74.84558 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039611, - "Position": { - "X": 124.1626, - "Y": 4.856044, - "Z": -139.63531 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Meghaduta", - "[Radz-at-Han] Aetheryte Plaza" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039614, - "Position": { - "X": -9.536926, - "Y": 2.8, - "Z": -15.243774 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AetheryteShortcut": "Old Sharlayan" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039615, - "Position": { - "X": -297.13898, - "Y": 20.8, - "Z": -189.59338 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Studium" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039616, - "Position": { - "X": 227.06946, - "Y": 25.041138, - "Z": -159.2279 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Studium", - "[Old Sharlayan] The Leveilleur Estate" - ] - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039614, - "Position": { - "X": -94.118614, - "Y": 3.8989394, - "Z": 1.0696089 - }, - "StopDistance": 0.25, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Leveilleur Estate", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039617, - "Position": { - "X": -93.91931, - "Y": 3.8989394, - "Z": -1.1750488 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4533_Restricted Reading.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4533_Restricted Reading.json deleted file mode 100644 index 9793b783..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4533_Restricted Reading.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039618, - "Position": { - "X": -95.96399, - "Y": 3.933468, - "Z": 0.503479 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039619, - "Position": { - "X": -344.625, - "Y": 19, - "Z": 71.61047 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Baldesion Annex", - "[Old Sharlayan] The Studium" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2012844, - "Position": { - "X": -4.3793945, - "Y": 5.569519, - "Z": 13.809326 - }, - "TerritoryId": 1057, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039620, - "Position": { - "X": -1.5107422, - "Y": -7.012859E-07, - "Z": -2.609314 - }, - "TerritoryId": 1057, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039622, - "Position": { - "X": -341.78687, - "Y": 19, - "Z": 69.10803 - }, - "StopDistance": 5, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1039623, - "Position": { - "X": -477.89734, - "Y": 4.678896, - "Z": 29.55664 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Great Work" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "Position": { - "X": 242.9973, - "Y": 1.2090492, - "Z": 118.133255 - }, - "TerritoryId": 957, - "InteractionType": "WalkTo", - "AetheryteShortcut": "Thavnair - Palaka's Stand", - "Fly": true - }, - { - "DataId": 2012847, - "Position": { - "X": 242.08435, - "Y": 0.3508911, - "Z": 119.43237 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039624, - "Position": { - "X": -478.38562, - "Y": 4.7772117, - "Z": 26.779541 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Great Work" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4534_Void Theory.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4534_Void Theory.json deleted file mode 100644 index 5c815b99..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4534_Void Theory.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039624, - "Position": { - "X": -478.38562, - "Y": 4.7772117, - "Z": 26.779541 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039627, - "Position": { - "X": -270.25262, - "Y": 0.07863108, - "Z": 605.9204 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039632, - "Position": { - "X": 106.614746, - "Y": -350, - "Z": -78.56879 - }, - "TerritoryId": 1056, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2012837, - "Position": { - "X": 110.03284, - "Y": -350.02673, - "Z": -82.90228 - }, - "TerritoryId": 1056, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4535_A Satraps Duty.json b/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4535_A Satraps Duty.json deleted file mode 100644 index 96062335..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/H-6.1/4535_A Satraps Duty.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039633, - "Position": { - "X": 111.46704, - "Y": -350, - "Z": -83.14642 - }, - "StopDistance": 5, - "TerritoryId": 1056, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039636, - "Position": { - "X": 114.27478, - "Y": 0.65204185, - "Z": 7.4310913 - }, - "TerritoryId": 635, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039638, - "Position": { - "X": -511.6503, - "Y": 11.97528, - "Z": 108.11011 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Great Work" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039639, - "Position": { - "X": -513.6644, - "Y": 11.97528, - "Z": 106.06543 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AetheryteShortcut": "Radz-at-Han", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4592_In Search of Azdaja.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4592_In Search of Azdaja.json deleted file mode 100644 index f2d2e9c8..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4592_In Search of Azdaja.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039655, - "Position": { - "X": -478.29407, - "Y": 4.851227, - "Z": 22.507019 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "AetheryteShortcut": "Thavnair - Great Work" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039627, - "Position": { - "X": -270.25262, - "Y": 0.07863108, - "Z": 605.9204 - }, - "StopDistance": 5, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039663, - "Position": { - "X": 110.82617, - "Y": -350, - "Z": -81.9563 - }, - "TerritoryId": 1056, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "TerritoryId": 1056, - "InteractionType": "Duty", - "ContentFinderConditionId": 869 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1042063, - "Position": { - "X": -88.51758, - "Y": 376.4496, - "Z": -158.31238 - }, - "StopDistance": 7, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4593_Shadowed Remnants.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4593_Shadowed Remnants.json deleted file mode 100644 index 604fd68d..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4593_Shadowed Remnants.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1042064, - "Position": { - "X": -83.72626, - "Y": 376.38647, - "Z": -158.0072 - }, - "StopDistance": 7, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1042066, - "Position": { - "X": -48.69159, - "Y": 367.85046, - "Z": -109.33093 - }, - "TerritoryId": 1089, - "InteractionType": "Interact", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 128" - }, - { - "DataId": 1043790, - "Position": { - "X": -10.360962, - "Y": 359.19916, - "Z": -106.70636 - }, - "TerritoryId": 1089, - "InteractionType": "Interact", - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 192" - }, - { - "DataId": 1043791, - "Position": { - "X": -9.87262, - "Y": 350.62988, - "Z": -61.539734 - }, - "TerritoryId": 1089, - "InteractionType": "Interact", - "$.0": "[3]", - "$.1": "QuestVariables if done after [1, 2]: 3 0 0 0 0 224" - }, - { - "DataId": 1043792, - "Position": { - "X": 4.043579, - "Y": 350.57257, - "Z": -49.45453 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2013042, - "Position": { - "X": 38.071167, - "Y": 348.04297, - "Z": 4.3792725 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2013115, - "Position": { - "X": 14.236633, - "Y": 351.27795, - "Z": 14.389221 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - }, - { - "DataId": 2013113, - "Position": { - "X": -280.0794, - "Y": -716.7621, - "Z": 133.95886 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - }, - { - "Position": { - "X": 71.0746, - "Y": -718.0001, - "Z": 206.78001 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1043800, - "Position": { - "X": 100.11438, - "Y": -718.4441, - "Z": 206.77502 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4594_Where Everything Begins.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4594_Where Everything Begins.json deleted file mode 100644 index aa488d06..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4594_Where Everything Begins.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1043802, - "Position": { - "X": 103.4104, - "Y": -718.33905, - "Z": 207.87354 - }, - "StopDistance": 5, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1043804, - "Position": { - "X": 220.59961, - "Y": -699.9556, - "Z": 90.01294 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1043806, - "Position": { - "X": 217.39526, - "Y": -699.9557, - "Z": 91.17261 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2013112, - "Position": { - "X": 259.9318, - "Y": -706.408, - "Z": 90.01325 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - }, - { - "DataId": 1043808, - "Position": { - "X": -1.5107422, - "Y": -698.0104, - "Z": -150.83551 - }, - "TerritoryId": 1089, - "InteractionType": "SinglePlayerDuty", - "Comment": "Where Everything Begins" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1043812, - "Position": { - "X": -1.1750488, - "Y": -698.0104, - "Z": -135.63751 - }, - "StopDistance": 5, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4595_Groping in the Dark.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4595_Groping in the Dark.json deleted file mode 100644 index f98f45bf..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4595_Groping in the Dark.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1043815, - "Position": { - "X": 1.7241821, - "Y": -698.0104, - "Z": -138.1095 - }, - "StopDistance": 5, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013114, - "Position": { - "X": 0.02930583, - "Y": -692.6403, - "Z": -232.4083 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - }, - { - "DataId": 1043792, - "Position": { - "X": 4.043579, - "Y": 350.57257, - "Z": -49.45453 - }, - "TerritoryId": 1089, - "InteractionType": "Interact", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 32" - }, - { - "DataId": 1043791, - "Position": { - "X": -9.87262, - "Y": 350.62988, - "Z": -61.539734 - }, - "TerritoryId": 1089, - "InteractionType": "Interact", - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 96" - }, - { - "DataId": 1043790, - "Position": { - "X": -10.360962, - "Y": 359.19916, - "Z": -106.70636 - }, - "TerritoryId": 1089, - "InteractionType": "Interact", - "$.0": "[3]" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2013115, - "Position": { - "X": 14.236633, - "Y": 351.27795, - "Z": 14.389221 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - }, - { - "DataId": 1043814, - "Position": { - "X": 0.6866455, - "Y": -698.0104, - "Z": -139.75745 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2013114, - "Position": { - "X": 0.015197754, - "Y": -692.65283, - "Z": -232.41016 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - }, - { - "DataId": 1043816, - "Position": { - "X": 13.595764, - "Y": 359.19916, - "Z": -110.12439 - }, - "TerritoryId": 1089, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1043822, - "Position": { - "X": -30.045044, - "Y": -0.50953794, - "Z": 33.798706 - }, - "StopDistance": 5, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4596_Nowhere to Run.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4596_Nowhere to Run.json deleted file mode 100644 index f7d5f95e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4596_Nowhere to Run.json +++ /dev/null @@ -1,183 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1043822, - "Position": { - "X": -30.045044, - "Y": -0.50953794, - "Z": 33.798706 - }, - "StopDistance": 5, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1043822, - "Position": { - "X": -30.045044, - "Y": -0.50953794, - "Z": 33.798706 - }, - "StopDistance": 5, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1043829, - "Position": { - "X": -47.257202, - "Y": -0.509538, - "Z": -22.568176 - }, - "TerritoryId": 1077, - "InteractionType": "Interact", - "$.0": "[1]" - }, - { - "DataId": 1043831, - "Position": { - "X": -12.710815, - "Y": -0.50953794, - "Z": -49.45453 - }, - "TerritoryId": 1077, - "InteractionType": "Interact", - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 160" - }, - { - "DataId": 1043830, - "Position": { - "X": 35.14148, - "Y": -0.50953794, - "Z": -38.651123 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1043822, - "Position": { - "X": 27.317875, - "Y": -0.43000424, - "Z": -13.701547 - }, - "StopDistance": 0.25, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1043822, - "Position": { - "X": 28.591307, - "Y": -0.43000418, - "Z": -12.1619835 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1043832, - "Position": { - "X": 104.234375, - "Y": -0.50953794, - "Z": -22.62915 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1043833, - "Position": { - "X": 61.69214, - "Y": -0.40188107, - "Z": 46.463623 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1043834, - "Position": { - "X": 56.198975, - "Y": 16.517479, - "Z": 82.20032 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 8, - "Steps": [ - { - "DataId": 1043835, - "Position": { - "X": 134.41675, - "Y": 24.30001, - "Z": 60.501953 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1043836, - "Position": { - "X": 1.0223389, - "Y": -0.4, - "Z": -68.223145 - }, - "StopDistance": 5, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4597_The Wind Rises.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4597_The Wind Rises.json deleted file mode 100644 index 31d40549..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4597_The Wind Rises.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1043839, - "Position": { - "X": -0.25946045, - "Y": -0.4, - "Z": -70.72565 - }, - "StopDistance": 7, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013053, - "Position": { - "X": -0.16790771, - "Y": -0.16790771, - "Z": -74.87604 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "TerritoryId": 1092, - "InteractionType": "Duty", - "ContentFinderConditionId": 870 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1043840, - "Position": { - "X": -29.434692, - "Y": -0.21963555, - "Z": 52.506226 - }, - "StopDistance": 5, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4598_Return from the Void.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4598_Return from the Void.json deleted file mode 100644 index 6dd1cd69..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4598_Return from the Void.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1043841, - "Position": { - "X": -27.145874, - "Y": -0.21963556, - "Z": 50.492065 - }, - "StopDistance": 5, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1043844, - "Position": { - "X": -50.736267, - "Y": -0.4300005, - "Z": -11.795227 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1043846, - "Position": { - "X": -31.99823, - "Y": -0.21963498, - "Z": 51.499146 - }, - "TerritoryId": 1077, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1043847, - "Position": { - "X": -350.24036, - "Y": 55, - "Z": -81.28485 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4599_A World with Light and Life.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4599_A World with Light and Life.json deleted file mode 100644 index e080c7eb..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4599_A World with Light and Life.json +++ /dev/null @@ -1,172 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1043848, - "Position": { - "X": -1.5717163, - "Y": 0.008460393, - "Z": -1.8463745 - }, - "StopDistance": 7, - "TerritoryId": 1078, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013077, - "Position": { - "X": -0.015319824, - "Y": 1.2359009, - "Z": 5.3864136 - }, - "StopDistance": 4, - "TerritoryId": 1078, - "InteractionType": "Interact" - }, - { - "DataId": 1037381, - "Position": { - "X": -23.697266, - "Y": 1.7999947, - "Z": -180.07172 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Meghaduta", - "[Radz-at-Han] Mehryde's Meyhane" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1043847, - "Position": { - "X": -350.24036, - "Y": 55, - "Z": -81.28485 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Mehryde's Meyhane", - "[Radz-at-Han] Meghaduta" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1043852, - "Position": { - "X": -353.3227, - "Y": 54.999992, - "Z": -79.60632 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1037318, - "Position": { - "X": -4.1047363, - "Y": 2.9999943, - "Z": -203.8758 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Meghaduta", - "[Radz-at-Han] Mehryde's Meyhane" - ] - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1043852, - "Position": { - "X": -33.52105, - "Y": 0.59983087, - "Z": -74.57541 - }, - "StopDistance": 0.25, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1037354, - "Position": { - "X": 109.33081, - "Y": 1.8631814, - "Z": -100.1145 - }, - "StopDistance": 7, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "DataId": 1043852, - "Position": { - "X": -159.23143, - "Y": 36.051323, - "Z": 70.24 - }, - "StopDistance": 0.25, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Ruveydah Fibers" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1043857, - "Position": { - "X": -158.15979, - "Y": 36.051323, - "Z": 67.36853 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4600_Buried Memory.json b/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4600_Buried Memory.json deleted file mode 100644 index 9155862e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/I-6.2/4600_Buried Memory.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1043858, - "Position": { - "X": -159.89929, - "Y": 36.051323, - "Z": 67.27698 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1043847, - "Position": { - "X": -350.24036, - "Y": 55, - "Z": -81.28485 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Ruveydah Fibers", - "[Radz-at-Han] Meghaduta" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "StopDistance": 5, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4670_Once More unto the Void.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4670_Once More unto the Void.json deleted file mode 100644 index cc1717f4..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4670_Once More unto the Void.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "StopDistance": 5, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1043821, - "Position": { - "X": 3.3721924, - "Y": 26.999998, - "Z": 37.216675 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Meghaduta", - "[Radz-at-Han] Kama" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1044293, - "Position": { - "X": -346.12042, - "Y": 55, - "Z": -66.17847 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Kama", - "[Radz-at-Han] Meghaduta" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1044293, - "Position": { - "X": -346.12042, - "Y": 55, - "Z": -66.17847 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AetheryteShortcut": "Radz-at-Han", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4671_A Cold Reunion.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4671_A Cold Reunion.json deleted file mode 100644 index 50906857..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4671_A Cold Reunion.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1044229, - "Position": { - "X": -345.99835, - "Y": 55, - "Z": -63.645386 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1044231, - "Position": { - "X": 535.7289, - "Y": -36.65, - "Z": -185.87018 - }, - "StopDistance": 6, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1044234, - "Position": { - "X": -368.15448, - "Y": 21.999998, - "Z": 485.37415 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "AetheryteShortcut": "Garlemald - Camp Broken Glass" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1044241, - "Position": { - "X": 55.161255, - "Y": -16.177, - "Z": 427.87805 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1045227, - "Position": { - "X": 150.04187, - "Y": -20.207552, - "Z": 509.88013 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1044243, - "Position": { - "X": 132.31091, - "Y": -12.950364, - "Z": 642.8473 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1044239, - "Position": { - "X": -369.2226, - "Y": 22, - "Z": 484.0619 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "AetheryteShortcut": "Garlemald - Camp Broken Glass" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4672_Kindled Spirit.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4672_Kindled Spirit.json deleted file mode 100644 index 616e1602..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4672_Kindled Spirit.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1044239, - "Position": { - "X": -369.2226, - "Y": 22, - "Z": 484.0619 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1044249, - "Position": { - "X": -89.89093, - "Y": -9.408967, - "Z": 416.3423 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2013226, - "Position": { - "X": 18.631226, - "Y": -12.314087, - "Z": 383.77966 - }, - "TerritoryId": 958, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 16028, - 16029 - ], - "$.0": "[1]", - "$.1": "QuestVariables if done first: 16 5(enemy kill count) 0 0 0 64" - }, - { - "DataId": 2013307, - "Position": { - "X": 23.025818, - "Y": -9.2317505, - "Z": 337.5448 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 33 5 0 0 0 96" - }, - { - "DataId": 2013308, - "Position": { - "X": 75.33374, - "Y": -12.527649, - "Z": 339.40637 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "$.0": "[3]", - "$.1": "QuestVariables if done after [1, 2]: 49 21 0 0 0 112" - }, - { - "DataId": 2013051, - "Position": { - "X": 62.333008, - "Y": -10.635559, - "Z": 308.73572 - }, - "TerritoryId": 958, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 16030 - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1044250, - "Position": { - "X": 23.23944, - "Y": 1.1781613, - "Z": 144.70117 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4673_An Unforeseen Bargain.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4673_An Unforeseen Bargain.json deleted file mode 100644 index a852f0a7..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4673_An Unforeseen Bargain.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1044252, - "Position": { - "X": 510.1244, - "Y": -36.65, - "Z": -161.73041 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1044257, - "Position": { - "X": 485.06897, - "Y": 10.800001, - "Z": -427.75616 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "SinglePlayerDuty", - "Comment": "An Unforeseen Bargain" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1044259, - "Position": { - "X": 528.9845, - "Y": -36.65, - "Z": -246.44855 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4674_King of the Mountain.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4674_King of the Mountain.json deleted file mode 100644 index dede7fd1..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4674_King of the Mountain.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1044260, - "Position": { - "X": 527.9469, - "Y": -36.65, - "Z": -242.90839 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013224, - "Position": { - "X": 529.7681, - "Y": -36.65, - "Z": -243.843 - }, - "StopDistance": 5, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1044263, - "Position": { - "X": 466.05627, - "Y": -18.123579, - "Z": 718.8982 - }, - "TerritoryId": 958, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "TerritoryId": 958, - "InteractionType": "Duty", - "Comment": "Lapis Manalis", - "ContentFinderConditionId": 896 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1044270, - "Position": { - "X": -247.21143, - "Y": -173, - "Z": 131.88367 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4675_A Dragons Resolve.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4675_A Dragons Resolve.json deleted file mode 100644 index 1f049a6f..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4675_A Dragons Resolve.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1044271, - "Position": { - "X": -249.92749, - "Y": -173, - "Z": 126.35986 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013231, - "Position": { - "X": -408.83502, - "Y": -117.81494, - "Z": 371.96924 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - }, - { - "DataId": 1044274, - "Position": { - "X": 351.15576, - "Y": 33.99946, - "Z": -381.5824 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2013232, - "Position": { - "X": 393.698, - "Y": 40.360107, - "Z": -273.0907 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2013230, - "Position": { - "X": 350.08765, - "Y": 34.86682, - "Z": -433.95135 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - }, - { - "DataId": 2013233, - "Position": { - "X": -261.1582, - "Y": -165.36206, - "Z": 229.08362 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2013234, - "Position": { - "X": 40.57373, - "Y": 365.98767, - "Z": -585.41235 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2013235, - "Position": { - "X": -2.4262085, - "Y": 374.6853, - "Z": -601.0071 - }, - "TerritoryId": 1119, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1044284, - "Position": { - "X": 464.34717, - "Y": -17.202883, - "Z": 705.0431 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4676_Paths Barred.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4676_Paths Barred.json deleted file mode 100644 index ecdd952f..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4676_Paths Barred.json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1044289, - "Position": { - "X": 465.81213, - "Y": -17.44166, - "Z": 707.3014 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013239, - "Position": { - "X": -347.40216, - "Y": 54.97815, - "Z": -64.89667 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1044290, - "Position": { - "X": -212.63446, - "Y": 15.260341, - "Z": 460.34937 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1037648, - "Position": { - "X": -562.005, - "Y": 9.817466, - "Z": -585.1987 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - }, - { - "DataId": 1037647, - "Position": { - "X": -588.83044, - "Y": 9.81748, - "Z": -590.08167 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1037646, - "Position": { - "X": -568.99365, - "Y": 9.817484, - "Z": -569.8787 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4677_Desires Untold.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4677_Desires Untold.json deleted file mode 100644 index 054454e8..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4677_Desires Untold.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1037646, - "Position": { - "X": -568.99365, - "Y": 9.817484, - "Z": -569.8787 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1041091, - "Position": { - "X": -89.89093, - "Y": 89.42026, - "Z": -616.14404 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1037697, - "Position": { - "X": -73.74689, - "Y": 99.94384, - "Z": -715.44977 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "TerritoryId": 1125, - "InteractionType": "Duty", - "ContentFinderConditionId": 886 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1044291, - "Position": { - "X": -40.024475, - "Y": 89.42017, - "Z": -636.86584 - }, - "TerritoryId": 957, - "InteractionType": "Interact", - "Comment": "Unsure if this is the right data id" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4678_Gods Revel Lands Tremble.json b/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4678_Gods Revel Lands Tremble.json deleted file mode 100644 index 177a3224..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/J-6.3/4678_Gods Revel Lands Tremble.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1044291, - "Position": { - "X": -40.024475, - "Y": 89.42017, - "Z": -636.86584 - }, - "TerritoryId": 957, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039649, - "Position": { - "X": -336.53772, - "Y": 55, - "Z": -69.47443 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4735_Currying Flavor.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4735_Currying Flavor.json deleted file mode 100644 index 60891550..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4735_Currying Flavor.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1045392, - "Position": { - "X": -52.75049, - "Y": -1.5635975E-05, - "Z": -138.96393 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Meghaduta", - "[Radz-at-Han] Mehryde's Meyhane" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2013349, - "Position": { - "X": -53.87964, - "Y": 0.59503174, - "Z": -141.71057 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": -52.03956, - "Y": -5.209446E-05, - "Z": -140.01839 - }, - "TerritoryId": 963, - "InteractionType": "UseItem" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1045395, - "Position": { - "X": -21.713623, - "Y": 1.7999926, - "Z": -181.81128 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1043847, - "Position": { - "X": -350.24036, - "Y": 55, - "Z": -81.28485 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Mehryde's Meyhane", - "[Radz-at-Han] Meghaduta" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4736_Going Haam.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4736_Going Haam.json deleted file mode 100644 index 5d447b3e..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4736_Going Haam.json +++ /dev/null @@ -1,157 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "TerritoryBlacklist": [ - 1126 - ], - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045397, - "Position": { - "X": 0.6560669, - "Y": 0.01927659, - "Z": 0.869751 - }, - "TerritoryId": 1161, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013358, - "Position": { - "X": -0.015319824, - "Y": 1.2359009, - "Z": 5.9662476 - }, - "TerritoryId": 1161, - "InteractionType": "Interact" - }, - { - "DataId": 1039602, - "Position": { - "X": 142.04614, - "Y": 4.783756, - "Z": -146.47144 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Meghaduta", - "[Radz-at-Han] Aetheryte Plaza" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1045401, - "Position": { - "X": -144.45721, - "Y": 28.05, - "Z": 219.1958 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Airship Landing" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1045407, - "Position": { - "X": -32.578064, - "Y": -29.530006, - "Z": -125.96332 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1045412, - "Position": { - "X": -6.57666, - "Y": -31.530346, - "Z": 54.276245 - }, - "TerritoryId": 956, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1045417, - "Position": { - "X": 135.9425, - "Y": -16.146997, - "Z": 236.22485 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 7, - "Steps": [ - { - "TerritoryId": 962, - "InteractionType": "Duty", - "ContentFinderConditionId": 822 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045420, - "Position": { - "X": 142.07666, - "Y": -16.147, - "Z": 235.70605 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4737_Like Fear to Flame.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4737_Like Fear to Flame.json deleted file mode 100644 index 7993d53c..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4737_Like Fear to Flame.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045420, - "Position": { - "X": 142.07666, - "Y": -16.147, - "Z": 235.70605 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1040824, - "Position": { - "X": -334.4015, - "Y": 23.803606, - "Z": 404.9286 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1045425, - "Position": { - "X": 532.4635, - "Y": -36.65, - "Z": -191.48547 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1045490, - "Position": { - "X": 523.24695, - "Y": -36.65, - "Z": -156.02356 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - }, - { - "DataId": 1045491, - "Position": { - "X": 502.4032, - "Y": -36.65, - "Z": -178.27118 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - }, - { - "DataId": 1037774, - "Position": { - "X": 518.181, - "Y": -36.65, - "Z": -212.14618 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - }, - { - "DataId": 1045489, - "Position": { - "X": 549.2484, - "Y": -36.615707, - "Z": -213.18384 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - }, - { - "DataId": 1037766, - "Position": { - "X": 545.3115, - "Y": -36.616177, - "Z": -265.00348 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045430, - "Position": { - "X": 415.1521, - "Y": 15.558167, - "Z": -637.56775 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4738_The Fallen Empire.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4738_The Fallen Empire.json deleted file mode 100644 index fefdfc41..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4738_The Fallen Empire.json +++ /dev/null @@ -1,141 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045431, - "Position": { - "X": 413.4431, - "Y": 15.5581665, - "Z": -638.3002 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1045435, - "Position": { - "X": -366.29285, - "Y": 10.803238, - "Z": -620.08093 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1045769, - "Position": { - "X": 10.421875, - "Y": 2.9999998, - "Z": 65.2323 - }, - "TerritoryId": 1160, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2013351, - "Position": { - "X": 21.10321, - "Y": 3.8604736, - "Z": 67.063354 - }, - "TerritoryId": 1160, - "InteractionType": "Interact" - }, - { - "DataId": 1045493, - "Position": { - "X": -10.635559, - "Y": 3, - "Z": 42.435303 - }, - "TerritoryId": 1160, - "InteractionType": "Interact" - }, - { - "DataId": 2013350, - "Position": { - "X": 9.353699, - "Y": 3.5552979, - "Z": 26.382812 - }, - "TerritoryId": 1160, - "InteractionType": "Interact" - }, - { - "DataId": 1045492, - "Position": { - "X": 42.435303, - "Y": 3.1270661, - "Z": -9.353821 - }, - "TerritoryId": 1160, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1045439, - "Position": { - "X": 0.19836426, - "Y": 3, - "Z": -26.840637 - }, - "TerritoryId": 1160, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1040825, - "Position": { - "X": -333.27234, - "Y": 23.803606, - "Z": 406.05774 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045441, - "Position": { - "X": 507.43872, - "Y": -36.65, - "Z": -202.99078 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4739_Bonds of Trust.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4739_Bonds of Trust.json deleted file mode 100644 index b1ee2f0b..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4739_Bonds of Trust.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045445, - "Position": { - "X": 508.5984, - "Y": -36.65, - "Z": -206.74457 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -80.826256, - "Y": 10.8, - "Z": -663.8825 - }, - "TerritoryId": 958, - "InteractionType": "Combat", - "KillEnemyDataIds": [ - 16332 - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1045450, - "Position": { - "X": -80.73547, - "Y": 10.8, - "Z": -659.75433 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045452, - "Position": { - "X": 283.8025, - "Y": 10.8, - "Z": -231.61676 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4740_Lunar Rendezvous.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4740_Lunar Rendezvous.json deleted file mode 100644 index c0d9b581..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4740_Lunar Rendezvous.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045448, - "Position": { - "X": 510.1244, - "Y": -36.65, - "Z": -204.97449 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1045456, - "Position": { - "X": -541.9242, - "Y": 128.67758, - "Z": 585.1072 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1045458, - "Position": { - "X": -197.49762, - "Y": 58.194954, - "Z": 407.27856 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1039686, - "Position": { - "X": -17.95996, - "Y": -47.192066, - "Z": -494.31604 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2013353, - "Position": { - "X": 164.23279, - "Y": -49.607117, - "Z": -620.3861 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1045471, - "Position": { - "X": 158.61743, - "Y": -49.589592, - "Z": -626.42865 - }, - "TerritoryId": 959, - "InteractionType": "Emote", - "Emote": "rally" - }, - { - "DataId": 1045470, - "Position": { - "X": 154.7417, - "Y": -49.589596, - "Z": -622.3087 - }, - "TerritoryId": 959, - "InteractionType": "Emote", - "Emote": "rally" - }, - { - "DataId": 1045473, - "Position": { - "X": 152.42236, - "Y": -49.589592, - "Z": -614.8623 - }, - "TerritoryId": 959, - "InteractionType": "Emote", - "Emote": "rally" - }, - { - "DataId": 1045472, - "Position": { - "X": 148.91272, - "Y": -49.589596, - "Z": -621.48474 - }, - "TerritoryId": 959, - "InteractionType": "Emote", - "Emote": "rally" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045474, - "Position": { - "X": 158.46484, - "Y": -49.589592, - "Z": -619.9894 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4741_The Red Side of the Moon.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4741_The Red Side of the Moon.json deleted file mode 100644 index 57bf8625..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4741_The Red Side of the Moon.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "DataId": 1045611, - "Position": { - "X": 160.87585, - "Y": -49.589592, - "Z": -618.46344 - }, - "TerritoryId": 959, - "InteractionType": "Interact", - "Comment": "Unsure if correct id" - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1045919, - "Position": { - "X": -200.45782, - "Y": 59.021378, - "Z": 418.69226 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2013354, - "Position": { - "X": -2.7314453, - "Y": 73.8689, - "Z": 638.0254 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - }, - { - "DataId": 2013355, - "Position": { - "X": -44.87683, - "Y": 66.57507, - "Z": 547.6615 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - }, - { - "DataId": 2013356, - "Position": { - "X": 69.29114, - "Y": 56.71765, - "Z": 472.19043 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045479, - "Position": { - "X": 4.043579, - "Y": 58.561604, - "Z": 424.97888 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4742_Abyssal Dark.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4742_Abyssal Dark.json deleted file mode 100644 index 756b4342..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4742_Abyssal Dark.json +++ /dev/null @@ -1,61 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045482, - "Position": { - "X": 17.135864, - "Y": 56.573345, - "Z": 436.0265 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013357, - "Position": { - "X": 97.520386, - "Y": 74.08252, - "Z": 607.90405 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "TerritoryId": 1159, - "InteractionType": "Duty", - "ContentFinderConditionId": 949 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045757, - "Position": { - "X": -136.03424, - "Y": 54.608093, - "Z": 427.60352 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4743_The Dark Throne.json b/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4743_The Dark Throne.json deleted file mode 100644 index 94b46c85..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/K-6.4/4743_The Dark Throne.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045758, - "Position": { - "X": -135.85114, - "Y": 54.977272, - "Z": 432.02856 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1045466, - "Position": { - "X": -20.126648, - "Y": -47.54357, - "Z": -491.99664 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1039649, - "Position": { - "X": -336.53772, - "Y": 55, - "Z": -69.47443 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4744_Seeking the Light.json b/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4744_Seeking the Light.json deleted file mode 100644 index 1a2bc813..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4744_Seeking the Light.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1039607, - "Position": { - "X": -342.58032, - "Y": 55, - "Z": -68.61987 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1033908, - "Position": { - "X": -63.61493, - "Y": -17.722, - "Z": -264.75934 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Cabinet of Curiosity" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1045690, - "Position": { - "X": -168.9021, - "Y": -45.720856, - "Z": -167.83398 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045628, - "Position": { - "X": 24.2771, - "Y": 0, - "Z": 1.083313 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4745_Appealing the Masses.json b/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4745_Appealing the Masses.json deleted file mode 100644 index 4578da5f..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4745_Appealing the Masses.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033887, - "Position": { - "X": 24.2771, - "Y": -5.234193E-13, - "Z": -0.7477417 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1045636, - "Position": { - "X": 27.939209, - "Y": 82.05, - "Z": -8.255188 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1045639, - "Position": { - "X": 21.957703, - "Y": 82.05, - "Z": 18.478638 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1045635, - "Position": { - "X": 39.261353, - "Y": 83.001076, - "Z": -61.387024 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - }, - { - "DataId": 1045633, - "Position": { - "X": 14.755432, - "Y": 23.099987, - "Z": 11.520508 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Eulmore] Aetheryte Plaza", - "[Eulmore] The Mainstay" - ] - }, - { - "DataId": 1045634, - "Position": { - "X": -93.40051, - "Y": -0.82003593, - "Z": 28.54956 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Eulmore] The Mainstay", - "[Eulmore] Nightsoil Pots" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1045636, - "Position": { - "X": 27.939209, - "Y": 82.05, - "Z": -8.255188 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Eulmore] Nightsoil Pots", - "[Eulmore] Aetheryte Plaza" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045631, - "Position": { - "X": 29.709229, - "Y": 82.05, - "Z": -5.661133 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4746_In Defiance of Fate.json b/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4746_In Defiance of Fate.json deleted file mode 100644 index facb0fdc..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4746_In Defiance of Fate.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045631, - "Position": { - "X": 29.709229, - "Y": 82.05, - "Z": -5.661133 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1029197, - "Position": { - "X": -87.87671, - "Y": -19.022131, - "Z": 298.20703 - }, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1029197, - "Position": { - "X": -87.87671, - "Y": -19.022131, - "Z": 298.20703 - }, - "TerritoryId": 817, - "InteractionType": "Say", - "ChatMessage": "allin tuta" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1027754, - "Position": { - "X": -108.20172, - "Y": -19.684433, - "Z": 380.2395 - }, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1045642, - "Position": { - "X": -90.28766, - "Y": -19.118582, - "Z": 298.02393 - }, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1045647, - "Position": { - "X": -488.88385, - "Y": 45.58085, - "Z": -224.5976 - }, - "TerritoryId": 815, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045648, - "Position": { - "X": -205.95105, - "Y": -3.1999996, - "Z": -9.597961 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4747_Back to Action.json b/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4747_Back to Action.json deleted file mode 100644 index a8cbb035..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4747_Back to Action.json +++ /dev/null @@ -1,99 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045649, - "Position": { - "X": -205.95105, - "Y": -3.1999998, - "Z": -11.490112 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1033863, - "Position": { - "X": 118.02844, - "Y": 14.649026, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Dossal Gate" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1033888, - "Position": { - "X": 1.3580322, - "Y": 0, - "Z": -5.081299 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - }, - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1045652, - "Position": { - "X": -109.91083, - "Y": 52.705315, - "Z": 401.26636 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045658, - "Position": { - "X": 40.634766, - "Y": 56.721893, - "Z": 465.7815 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4748_Down in the Dark.json b/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4748_Down in the Dark.json deleted file mode 100644 index 998db866..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4748_Down in the Dark.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045662, - "Position": { - "X": 32.913696, - "Y": 56.682667, - "Z": 468.162 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "TerritoryId": 1162, - "InteractionType": "Duty", - "ContentFinderConditionId": 823 - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1045667, - "Position": { - "X": -374.19702, - "Y": -567.3385, - "Z": -440.63483 - }, - "TerritoryId": 1184, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "TerritoryId": 1181, - "InteractionType": "Duty", - "ContentFinderConditionId": 964 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045671, - "Position": { - "X": 27.237305, - "Y": 56.635868, - "Z": 480.3081 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4749_Reunited at Last.json b/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4749_Reunited at Last.json deleted file mode 100644 index bc83e5fb..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4749_Reunited at Last.json +++ /dev/null @@ -1,70 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045674, - "Position": { - "X": 45.853394, - "Y": 56.66061, - "Z": 467.39905 - }, - "TerritoryId": 1162, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1045676, - "Position": { - "X": -130.99878, - "Y": 54.110245, - "Z": 424.73486 - }, - "TerritoryId": 959, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1042201, - "Position": { - "X": 536.2782, - "Y": -36.65, - "Z": -191.51605 - }, - "TerritoryId": 958, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1037106, - "Position": { - "X": 4.0131226, - "Y": 41.530136, - "Z": -164.41602 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Rostra" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4750_Growing Light.json b/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4750_Growing Light.json deleted file mode 100644 index 8da8fc18..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/L-6.5/4750_Growing Light.json +++ /dev/null @@ -1,108 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045681, - "Position": { - "X": 5.8136597, - "Y": 41.530136, - "Z": -165.27051 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1030533, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Dossal Gate" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1045684, - "Position": { - "X": -0.96136475, - "Y": 0, - "Z": -3.3417358 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1039649, - "Position": { - "X": -336.53772, - "Y": 55, - "Z": -69.47443 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta" - ] - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1045688, - "Position": { - "X": -2.456726, - "Y": 3.0299988, - "Z": -212.84814 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 196, - "Position": { - "X": -42.61847, - "Y": -0.015319824, - "Z": -197.61963 - }, - "TerritoryId": 963, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Radz-at-Han] Mehryde's Meyhane", - "[Radz-at-Han] Aetheryte Plaza" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4751_When One Door Closes.json b/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4751_When One Door Closes.json deleted file mode 100644 index 36978099..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4751_When One Door Closes.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1039645, - "Position": { - "X": -338.33832, - "Y": 55, - "Z": -68.40625 - }, - "TerritoryId": 963, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045691, - "Position": { - "X": -257.0993, - "Y": 19.165915, - "Z": -44.327515 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Baldesion Annex", - "[Old Sharlayan] The Studium" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4752_The Game Is Afoot.json b/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4752_The Game Is Afoot.json deleted file mode 100644 index 5a4f2355..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4752_The Game Is Afoot.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045692, - "Position": { - "X": -256.67206, - "Y": 19.26994, - "Z": -46.28064 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1045695, - "Position": { - "X": 135.57642, - "Y": -16.147, - "Z": 243.42712 - }, - "TerritoryId": 962, - "InteractionType": "SinglePlayerDuty", - "Comment": "The Game Is Afoot", - "AethernetShortcut": [ - "[Old Sharlayan] The Studium", - "[Old Sharlayan] Scholar's Harbor" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1045696, - "Position": { - "X": 135.729, - "Y": -16.146997, - "Z": 241.50452 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1037077, - "Position": { - "X": -38.07129, - "Y": -14.169313, - "Z": 105.30249 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1045699, - "Position": { - "X": -60.41046, - "Y": -15.127002, - "Z": 139.42163 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4753_The Coming Dawn.json b/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4753_The Coming Dawn.json deleted file mode 100644 index 683d35b5..00000000 --- a/Questionable/QuestPaths/Endwalker/MSQ/M-6.55/4753_The Coming Dawn.json +++ /dev/null @@ -1,159 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1045700, - "Position": { - "X": -58.54895, - "Y": -15.127001, - "Z": 139.45215 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2013419, - "Position": { - "X": -308.49164, - "Y": 20.248657, - "Z": 48.142212 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] Scholar's Harbor", - "[Old Sharlayan] The Studium" - ] - }, - { - "DataId": 2013418, - "Position": { - "X": -396.23108, - "Y": 20.2182, - "Z": 103.28821 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - }, - { - "DataId": 2013417, - "Position": { - "X": -404.25726, - "Y": 20.248657, - "Z": 59.00659 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - }, - { - "DataId": 2013416, - "Position": { - "X": -358.38867, - "Y": 20.309753, - "Z": 20.523315 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1045701, - "Position": { - "X": -343.8316, - "Y": 18.999998, - "Z": 15.152161 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1045702, - "Position": { - "X": -131.15137, - "Y": 5.64997, - "Z": 44.663086 - }, - "TerritoryId": 962, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Old Sharlayan] The Studium", - "[Old Sharlayan] The Baldesion Annex" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2011936, - "Position": { - "X": -108.5617, - "Y": 5.0504, - "Z": 4.55803 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - }, - { - "DataId": 2013420, - "Position": { - "X": -0.10687256, - "Y": -0.015319824, - "Z": -7.614319 - }, - "TerritoryId": 987, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1038588, - "Position": { - "X": -101.76245, - "Y": 4.357494, - "Z": 0.7476196 - }, - "TerritoryId": 962, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/F-Tempest/3654_Shadowbringers.json b/Questionable/QuestPaths/Shadowbringers/MSQ/F-Tempest/3654_Shadowbringers.json deleted file mode 100644 index b9972431..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/F-Tempest/3654_Shadowbringers.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "Comment": "TODO Missing Quest Start", - "QuestSequence": [ - { - "Sequence": 7, - "Steps": [ - { - "TerritoryId": 818, - "InteractionType": "Duty", - "ContentFinderConditionId": 652 - } - ] - }, - { - "Sequence": 9, - "Steps": [ - { - "TerritoryId": 881, - "InteractionType": "Duty", - "ContentFinderConditionId": 687 - } - ] - }, - { - "Sequence": 11, - "Steps": [ - { - "DataId": 1030576, - "Position": { - "X": -0.015319824, - "Y": -1.0530548E-13, - "Z": -6.0273438 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2002881, - "Position": { - "X": 21.133728, - "Y": 22.323914, - "Z": -631.281 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "AetheryteShortcut": "Mor Dhona" - }, - { - "DataId": 1031257, - "Position": { - "X": -2.4262085, - "Y": 0, - "Z": -9.10968 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3673_Shaken Resolve.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3673_Shaken Resolve.json deleted file mode 100644 index 1378f189..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3673_Shaken Resolve.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031257, - "Position": { - "X": -2.4262085, - "Y": 0, - "Z": -9.10968 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2002879, - "Position": { - "X": 0, - "Y": 3, - "Z": 27.5 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - }, - { - "Position": { - "X": 30.917934, - "Y": 20.495003, - "Z": -656.1909 - }, - "TerritoryId": 156, - "InteractionType": "WalkTo" - }, - { - "DataId": 1018433, - "Position": { - "X": 50.766724, - "Y": 50, - "Z": -772.3964 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": 30.917934, - "Y": 20.495003, - "Z": -656.1909 - }, - "TerritoryId": 156, - "InteractionType": "WalkTo", - "Fly": true - }, - { - "DataId": 2002881, - "Position": { - "X": 21.133728, - "Y": 22.323914, - "Z": -631.281 - }, - "TerritoryId": 156, - "InteractionType": "Interact" - }, - { - "DataId": 1032081, - "Position": { - "X": -2.4262085, - "Y": 0, - "Z": -9.10968 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1027230, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Dossal Gate" - ] - }, - { - "DataId": 1032121, - "Position": { - "X": 0.045776367, - "Y": -5.996435E-14, - "Z": -5.5390625 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3674_A Grand Adventure.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3674_A Grand Adventure.json deleted file mode 100644 index 1da111e1..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3674_A Grand Adventure.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032121, - "Position": { - "X": 0.045776367, - "Y": -5.996435E-14, - "Z": -5.5390625 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -115.65658, - "Y": -0.67464465, - "Z": 653.1527 - }, - "TerritoryId": 813, - "InteractionType": "WalkTo", - "AetheryteShortcut": "Lakeland - Fort Jobb", - "Fly": true - }, - { - "DataId": 1031726, - "Position": { - "X": -116.80786, - "Y": -0.6811354, - "Z": 651.026 - }, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "TerritoryId": 813, - "InteractionType": "Duty", - "ContentFinderConditionId": 692 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1032451, - "Position": { - "X": -113.359314, - "Y": -0.6671539, - "Z": 656.79407 - }, - "StopDistance": 5, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3675_A Welcome Guest.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3675_A Welcome Guest.json deleted file mode 100644 index 05a1e607..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3675_A Welcome Guest.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032451, - "Position": { - "X": -113.359314, - "Y": -0.6671539, - "Z": 656.79407 - }, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1027230, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Dossal Gate" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1032122, - "Position": { - "X": 2.1820068, - "Y": 0, - "Z": -5.142395 - }, - "StopDistance": 7, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1031732, - "Position": { - "X": 366.68945, - "Y": -27.966003, - "Z": 305.19568 - }, - "TerritoryId": 815, - "InteractionType": "Interact", - "AetheryteShortcut": "Amh Araeng - Inn at Journey's Head" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1027910, - "Position": { - "X": 356.71008, - "Y": -27.8172, - "Z": 310.04797 - }, - "TerritoryId": 815, - "InteractionType": "UseItem", - "ItemId": 2002904, - "$.1": "QuestVariables if done first: 1 32 0 0 0 64" - }, - { - "DataId": 1027909, - "Position": { - "X": 357.47314, - "Y": -27.145874, - "Z": 317.28076 - }, - "TerritoryId": 815, - "InteractionType": "UseItem", - "ItemId": 2002904, - "$.1": "QuestVariables if done after [1]: 2 16 0 0 0 96" - }, - { - "DataId": 1027939, - "Position": { - "X": 415.854, - "Y": -28.357805, - "Z": 335.4391 - }, - "TerritoryId": 815, - "InteractionType": "UseItem", - "ItemId": 2002904 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1031732, - "Position": { - "X": 366.68945, - "Y": -27.966003, - "Z": 305.19568 - }, - "TerritoryId": 815, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3676_Good for the Soul.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3676_Good for the Soul.json deleted file mode 100644 index 55c47364..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3676_Good for the Soul.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031732, - "Position": { - "X": 366.68945, - "Y": -27.966003, - "Z": 305.19568 - }, - "TerritoryId": 815, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1031732, - "Position": { - "X": 366.68945, - "Y": -27.966003, - "Z": 305.19568 - }, - "TerritoryId": 815, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1031792, - "Position": { - "X": -483.7873, - "Y": 45.58319, - "Z": -235.46198 - }, - "TerritoryId": 815, - "InteractionType": "Interact", - "AetheryteShortcut": "Amh Araeng - Twine" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2010811, - "Position": { - "X": -16.922302, - "Y": 42.282715, - "Z": -470.48145 - }, - "StopDistance": 1, - "TerritoryId": 815, - "InteractionType": "Interact", - "$.1": "QuestVariables if done first: 16 16 16 0 0 32" - }, - { - "DataId": 2010810, - "Position": { - "X": 8.682312, - "Y": 42.130127, - "Z": -471.9463 - }, - "TerritoryId": 815, - "InteractionType": "Interact", - "$.1": "QuestVariables if done after [1]: 33 16 32 0 0 96" - }, - { - "DataId": 2010809, - "Position": { - "X": 19.760376, - "Y": 42.130127, - "Z": -463.3402 - }, - "TerritoryId": 815, - "InteractionType": "Interact", - "Comment": "Combat not necessary to progress quest" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1031732, - "Position": { - "X": 366.68945, - "Y": -27.966003, - "Z": 305.19568 - }, - "TerritoryId": 815, - "InteractionType": "Interact", - "AetheryteShortcut": "Amh Araeng - Inn at Journey's Head" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1031734, - "Position": { - "X": 364.58374, - "Y": -27.966003, - "Z": 304.12744 - }, - "StopDistance": 6, - "TerritoryId": 815, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3677_Nowhere to Turn.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3677_Nowhere to Turn.json deleted file mode 100644 index 32137672..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3677_Nowhere to Turn.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031736, - "Position": { - "X": 368.1848, - "Y": -27.966003, - "Z": 302.3269 - }, - "StopDistance": 5, - "TerritoryId": 815, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1031737, - "Position": { - "X": 20.950623, - "Y": 82.05, - "Z": 17.837708 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "AetheryteShortcut": "Eulmore" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1031739, - "Position": { - "X": -19.36377, - "Y": 82.83509, - "Z": -50.55316 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3678_A Notable Absence.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3678_A Notable Absence.json deleted file mode 100644 index b2cb2e43..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3678_A Notable Absence.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031742, - "Position": { - "X": -18.60083, - "Y": 82.84981, - "Z": -48.29486 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1027544, - "Position": { - "X": 12.985352, - "Y": 82.05, - "Z": -25.223206 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "$.1": "QuestValues if done first: 16 1 16 0 0 128" - }, - { - "DataId": 1027602, - "Position": { - "X": 74.35718, - "Y": -10.320814, - "Z": 4.8981323 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Eulmore] Aetheryte Plaza", - "[Eulmore] Southeast Derelicts" - ], - "$.1": "QuestValues if done after [1]: 32 17 16 16 0 160" - }, - { - "DataId": 1029990, - "Position": { - "X": 11.36792, - "Y": 5.999995, - "Z": -38.651123 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Eulmore] Southeast Derelicts", - "[Eulmore] The Glory Gate" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1031746, - "Position": { - "X": -4.043701, - "Y": -5.091193, - "Z": -98.19183 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3679_For the People.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3679_For the People.json deleted file mode 100644 index 88b51a08..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3679_For the People.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031746, - "Position": { - "X": -4.043701, - "Y": -5.091193, - "Z": -98.19183 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1027306, - "Position": { - "X": -294.94165, - "Y": 18.10139, - "Z": 403.5553 - }, - "TerritoryId": 814, - "InteractionType": "Interact", - "AetheryteShortcut": "Kholusia - Wright" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1031751, - "Position": { - "X": -468.77246, - "Y": 334.0526, - "Z": -35.05005 - }, - "TerritoryId": 814, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1031753, - "Position": { - "X": -159.19745, - "Y": 352.35825, - "Z": -212.51245 - }, - "TerritoryId": 814, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1027462, - "Position": { - "X": -121.87384, - "Y": 352.35822, - "Z": -191.08875 - }, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1031748, - "Position": { - "X": -61.417603, - "Y": 378.34897, - "Z": -454.03223 - }, - "TerritoryId": 814, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1031760, - "Position": { - "X": -60.04431, - "Y": 377.92743, - "Z": -451.6518 - }, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3680_Finding Good Help.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3680_Finding Good Help.json deleted file mode 100644 index 928906c3..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3680_Finding Good Help.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031760, - "Position": { - "X": -60.04431, - "Y": 377.92743, - "Z": -451.6518 - }, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1031761, - "Position": { - "X": -423.78882, - "Y": 334.0526, - "Z": -26.199768 - }, - "TerritoryId": 814, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2010813, - "Position": { - "X": -421.71362, - "Y": 339.62, - "Z": -161.45575 - }, - "TerritoryId": 814, - "InteractionType": "SinglePlayerDuty", - "Comment": "Help Master Chai dodge enemies" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1031765, - "Position": { - "X": -418.90594, - "Y": 339.968, - "Z": -162.03558 - }, - "StopDistance": 7, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1031769, - "Position": { - "X": 168.5968, - "Y": 39.939266, - "Z": 585.90063 - }, - "StopDistance": 7, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3681_Moving Forward.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3681_Moving Forward.json deleted file mode 100644 index 86a30561..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3681_Moving Forward.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031770, - "Position": { - "X": 170.4585, - "Y": 39.973778, - "Z": 586.1753 - }, - "StopDistance": 7, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1027549, - "Position": { - "X": 2.029419, - "Y": 83.195244, - "Z": 57.846924 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "AetheryteShortcut": "Eulmore" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1031777, - "Position": { - "X": 25.864014, - "Y": 82.78213, - "Z": 24.734863 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1031781, - "Position": { - "X": 24.246582, - "Y": 82.78206, - "Z": 25.77246 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3682_Vows of Virtue, Deeds of Cruelty.json b/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3682_Vows of Virtue, Deeds of Cruelty.json deleted file mode 100644 index 01c99d97..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/G-5.1/3682_Vows of Virtue, Deeds of Cruelty.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031777, - "Position": { - "X": 25.864014, - "Y": 82.78213, - "Z": 24.734863 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1027230, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Dossal Gate" - ] - }, - { - "DataId": 1032121, - "Position": { - "X": 0.045776367, - "Y": -5.996435E-14, - "Z": -5.5390625 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2002881, - "Position": { - "X": 21.133728, - "Y": 22.323914, - "Z": -631.281 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "AetheryteShortcut": "Mor Dhona" - }, - { - "DataId": 1032081, - "Position": { - "X": -2.4262085, - "Y": 0, - "Z": -9.10968 - }, - "TerritoryId": 351, - "InteractionType": "SinglePlayerDuty", - "Comment": "Estinien vs. Arch Ultima" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1032081, - "Position": { - "X": -2.4262085, - "Y": 0, - "Z": -9.10968 - }, - "StopDistance": 5, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3761_Old Enemies, New Threats.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3761_Old Enemies, New Threats.json deleted file mode 100644 index b79abfac..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3761_Old Enemies, New Threats.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031783, - "Position": { - "X": -3.03656, - "Y": 0.01804012, - "Z": -8.1026 - }, - "StopDistance": 5, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1032495, - "Position": { - "X": 737.63635, - "Y": 70, - "Z": 515.0072 - }, - "TerritoryId": 621, - "InteractionType": "Interact", - "AetheryteShortcut": "Lochs - Ala Mhigan Quarter", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1032494, - "Position": { - "X": 739.6504, - "Y": 70, - "Z": 514.21375 - }, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3762_The Way Home.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3762_The Way Home.json deleted file mode 100644 index cbca275e..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3762_The Way Home.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032494, - "Position": { - "X": 739.6504, - "Y": 70, - "Z": 514.21375 - }, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1027230, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Dossal Gate" - ] - }, - { - "DataId": 1032121, - "Position": { - "X": 0.045776367, - "Y": -5.996435E-14, - "Z": -5.5390625 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3763_Seeking Council.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3763_Seeking Council.json deleted file mode 100644 index 181306a1..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3763_Seeking Council.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1031722, - "Position": { - "X": -1.7853394, - "Y": 0, - "Z": -1.8158569 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2009758, - "Position": { - "X": -0.009940993, - "Y": 1.036532, - "Z": 14.22064 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - }, - { - "DataId": 1030370, - "Position": { - "X": 66.84973, - "Y": -2.9802322E-07, - "Z": 13.321045 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1032648, - "Position": { - "X": 768.6426, - "Y": 21.38111, - "Z": -8.46875 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "AetheryteShortcut": "Lakeland - Fort Jobb" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1032498, - "Position": { - "X": 628.6869, - "Y": 94.385544, - "Z": -645.9297 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1032502, - "Position": { - "X": 629.0836, - "Y": 94.39156, - "Z": -644.98364 - }, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3764_Facing the Truth.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3764_Facing the Truth.json deleted file mode 100644 index 06620c18..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3764_Facing the Truth.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032502, - "Position": { - "X": 629.0836, - "Y": 94.39156, - "Z": -644.98364 - }, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1027230, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Dossal Gate" - ] - }, - { - "DataId": 1031722, - "Position": { - "X": -1.7853394, - "Y": 0, - "Z": -1.8158569 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2009758, - "Position": { - "X": -0.015319824, - "Y": 1.0223389, - "Z": 14.206055 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - }, - { - "DataId": 1027248, - "Position": { - "X": -30.807983, - "Y": -0.64999914, - "Z": -51.438232 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "Comment": "Chessamile", - "$.0": "[1]", - "$.1": "QuestVariables if done first: 1 0 0 0 0 64" - }, - { - "DataId": 1027224, - "Position": { - "X": -57.358704, - "Y": -7.4820004, - "Z": 118.08948 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "Comment": "Bragi", - "$.0": "[2]", - "$.1": "QuestVariables if done after [1]: 2 0 0 0 0 192" - }, - { - "DataId": 1027322, - "Position": { - "X": -20.126648, - "Y": 3.9998171, - "Z": 204.24194 - }, - "StopDistance": 4, - "TerritoryId": 819, - "InteractionType": "Interact", - "Comment": "Glynard", - "$.0": "[3]", - "$.1": "QuestVariables if done after [1, 2]: 3 0 0 0 0 200" - }, - { - "DataId": 1027232, - "Position": { - "X": -9.323303, - "Y": 20.1973, - "Z": -136.52252 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "Comment": "Katliss", - "AethernetShortcut": [ - "[Crystarium] The Pendants", - "[Crystarium] The Crystalline Mean" - ], - "$.0": "[4]", - "$.1": "QuestVariables if done after [1, 2, 3]: 4 0 0 0 0 216" - }, - { - "DataId": 1027226, - "Position": { - "X": -61.84485, - "Y": -17.72202, - "Z": -266.2547 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "Comment": "Moren", - "AethernetShortcut": [ - "[Crystarium] The Crystalline Mean", - "[Crystarium] The Cabinet of Curiosity" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1032503, - "Position": { - "X": 29.709229, - "Y": -6.088685E-13, - "Z": -0.869812 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3765_A Sleep Disturbed.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3765_A Sleep Disturbed.json deleted file mode 100644 index 02e6902e..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3765_A Sleep Disturbed.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032121, - "Position": { - "X": 0.045776367, - "Y": -5.996435E-14, - "Z": -5.5390625 - }, - "StopDistance": 7, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1032506, - "Position": { - "X": 453.05554, - "Y": 33.66181, - "Z": -156.9696 - }, - "TerritoryId": 817, - "InteractionType": "Interact", - "AetheryteShortcut": "Rak'tika - Fanow" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1032509, - "Position": { - "X": 843.25916, - "Y": -65.313614, - "Z": -387.10614 - }, - "TerritoryId": 817, - "InteractionType": "SinglePlayerDuty", - "Fly": true, - "Comment": "Duty - A Sleep Disturbed (Opo-Opo, Wolf, Serpent)" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1032506, - "Position": { - "X": 453.05554, - "Y": 33.66181, - "Z": -156.9696 - }, - "StopDistance": 5, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3766_An Old Friend.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3766_An Old Friend.json deleted file mode 100644 index 9be931be..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3766_An Old Friend.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1029234, - "Position": { - "X": 449.0271, - "Y": 33.66181, - "Z": -157.94617 - }, - "StopDistance": 5, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1032263, - "Position": { - "X": -87.87671, - "Y": -19.022131, - "Z": 298.20703 - }, - "TerritoryId": 817, - "InteractionType": "Interact", - "AetheryteShortcut": "Rak'tika - Slitherbough" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1027750, - "Position": { - "X": -24.734924, - "Y": -25.324257, - "Z": 305.5924 - }, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1032513, - "Position": { - "X": -37.06427, - "Y": -18.91939, - "Z": 334.21826 - }, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1032515, - "Position": { - "X": -642.2064, - "Y": 3.1136527, - "Z": 16.861145 - }, - "TerritoryId": 817, - "InteractionType": "Interact", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3767_Deep Designs.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3767_Deep Designs.json deleted file mode 100644 index b83478e5..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3767_Deep Designs.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032518, - "Position": { - "X": -641.8402, - "Y": 3.1716232, - "Z": 19.69934 - }, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1027757, - "Position": { - "X": 609.7047, - "Y": 350.3518, - "Z": -197.95532 - }, - "TerritoryId": 818, - "InteractionType": "Interact", - "AetheryteShortcut": "Tempest - Ondo Cups" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": -423.6145, - "Y": 393.0597, - "Z": -823.20044 - }, - "TerritoryId": 818, - "InteractionType": "WalkTo", - "Fly": true - }, - { - "DataId": 2010814, - "Position": { - "X": -422.47656, - "Y": 393.9115, - "Z": -824.094 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1027757, - "Position": { - "X": 609.7047, - "Y": 350.3518, - "Z": -197.95532 - }, - "TerritoryId": 818, - "InteractionType": "Interact", - "AetheryteShortcut": "Tempest - Ondo Cups" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3768_A Whale's Tale.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3768_A Whale's Tale.json deleted file mode 100644 index 184bfce9..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3768_A Whale's Tale.json +++ /dev/null @@ -1,184 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032526, - "Position": { - "X": 606.1035, - "Y": 350.3518, - "Z": -200 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -269.44116, - "Y": -0.82486916, - "Z": 724.67255 - }, - "TerritoryId": 813, - "InteractionType": "WalkTo", - "AetheryteShortcut": "Lakeland - Ostall Imperative", - "Fly": true - }, - { - "DataId": 1032528, - "Position": { - "X": -270.98505, - "Y": -0.82573783, - "Z": 723.96423 - }, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1030333, - "Position": { - "X": -612.23773, - "Y": 27.728632, - "Z": 817.65466 - }, - "StopDistance": 5, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "Position": { - "X": -591.3982, - "Y": 26.347507, - "Z": 773.5695 - }, - "TerritoryId": 813, - "InteractionType": "WalkTo", - "Mount": true, - "Fly": true, - "DisableNavmesh": true - }, - { - "Position": { - "X": -610.2863, - "Y": -2.1544409, - "Z": 734.7734 - }, - "TerritoryId": 813, - "InteractionType": "WalkTo", - "Fly": true, - "DisableNavmesh": true - }, - { - "DataId": 2010280, - "Position": { - "X": -630.4265, - "Y": -29.862, - "Z": 752.5597 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "DisableNavmesh": true, - "$.1": "QuestVariables if done first: 1 0 0 0 0 64" - }, - { - "DataId": 2010278, - "Position": { - "X": -655.5123, - "Y": -40.299072, - "Z": 743.22107 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "DisableNavmesh": true - }, - { - "DataId": 2010282, - "Position": { - "X": -663.14185, - "Y": -25.711487, - "Z": 738.82654 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": -643.2488, - "Y": 4.133975, - "Z": 714.8211 - }, - "TerritoryId": 813, - "InteractionType": "WalkTo", - "Mount": true, - "Fly": true, - "DisableNavmesh": true - }, - { - "DataId": 1030333, - "Position": { - "X": -612.23773, - "Y": 27.728632, - "Z": 817.65466 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1032531, - "Position": { - "X": -130.90723, - "Y": 9.572956, - "Z": 697.68823 - }, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1032554, - "Position": { - "X": 237.72021, - "Y": 5.6935816, - "Z": 552.1781 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3769_Beneath the Surface.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3769_Beneath the Surface.json deleted file mode 100644 index 555ec6a0..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3769_Beneath the Surface.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "Comment": "TODO Missing quest end", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032555, - "Position": { - "X": 235.40088, - "Y": 5.733457, - "Z": 552.3612 - }, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1032539, - "Position": { - "X": -534.1726, - "Y": 63.559536, - "Z": 735.1339 - }, - "TerritoryId": 814, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "TerritoryId": 814, - "InteractionType": "Duty", - "ContentFinderConditionId": 714 - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3770_Echoes of a Fallen Star.json b/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3770_Echoes of a Fallen Star.json deleted file mode 100644 index 6ece18c3..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/H-5.2/3770_Echoes of a Fallen Star.json +++ /dev/null @@ -1,115 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032539, - "Position": { - "X": -534.1726, - "Y": 63.559536, - "Z": 735.1339 - }, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Comment": "TODO verify this is the correct sequence and/or where sequence 2 went", - "Steps": [ - { - "DataId": 1032529, - "Position": { - "X": 5.5389404, - "Y": 0.019417249, - "Z": -0.5036011 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1032558, - "Position": { - "X": 56.90088, - "Y": 36.19769, - "Z": -169.23785 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] The Dossal Gate", - "[Crystarium] The Amaro Launch" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1027230, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] The Amaro Launch", - "[Crystarium] The Dossal Gate" - ] - }, - { - "DataId": 1032121, - "Position": { - "X": 0.045776367, - "Y": -5.996435E-14, - "Z": -5.5390625 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2009758, - "Position": { - "X": -0.015319824, - "Y": 1.0223389, - "Z": 14.206055 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - }, - { - "DataId": 1030610, - "Position": { - "X": 65.11023, - "Y": 1.7160122, - "Z": 249.7749 - }, - "StopDistance": 5, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] The Dossal Gate", - "[Crystarium] The Pendants" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3771_In the Name of the Light.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3771_In the Name of the Light.json deleted file mode 100644 index 201d4589..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3771_In the Name of the Light.json +++ /dev/null @@ -1,167 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1027231, - "Position": { - "X": 65.35437, - "Y": 1.7160122, - "Z": 249.83594 - }, - "StopDistance": 5, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1027226, - "Position": { - "X": -61.84485, - "Y": -17.72202, - "Z": -266.2547 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] The Pendants", - "[Crystarium] The Cabinet of Curiosity" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1033794, - "Position": { - "X": -81.28485, - "Y": -36.750004, - "Z": -277.7906 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1027248, - "Position": { - "X": -30.807983, - "Y": -0.64999914, - "Z": -51.438232 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] The Cabinet of Curiosity", - "[Crystarium] The Dossal Gate" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1028335, - "Position": { - "X": -146.65448, - "Y": 1.490116E-08, - "Z": 132.61609 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2011072, - "Position": { - "X": -137.4685, - "Y": 1.2664795, - "Z": 166.67432 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "$.1": "QuestVariables if done first: 1 16 0 0 0 64" - }, - { - "DataId": 2011071, - "Position": { - "X": -139.3302, - "Y": 0.99176025, - "Z": 167.65088 - }, - "StopDistance": 5, - "TerritoryId": 819, - "InteractionType": "Interact", - "$.1": "QuestVariables if done after [1]: 2 32 0 0 0 192" - }, - { - "DataId": 2011073, - "Position": { - "X": -142.2904, - "Y": 1.0527954, - "Z": 173.38818 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1033805, - "Position": { - "X": -141.71057, - "Y": 1.4901161E-08, - "Z": 160.6012 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "Position": { - "X": -140.22343, - "Y": 0.05337119, - "Z": 34.20123 - }, - "TerritoryId": 819, - "InteractionType": "WalkTo" - }, - { - "DataId": 1027248, - "Position": { - "X": -30.807983, - "Y": -0.64999914, - "Z": -51.438232 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3772_Heroic Dreams.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3772_Heroic Dreams.json deleted file mode 100644 index 4323f42b..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3772_Heroic Dreams.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033800, - "Position": { - "X": -27.878296, - "Y": -0.65, - "Z": -51.285645 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1033807, - "Position": { - "X": 761.2573, - "Y": 25.95656, - "Z": 417.99023 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Crystarium] The Dossal Gate", - "[Crystarium] Tessellation (Lakeland)" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011078, - "Position": { - "X": 754.45166, - "Y": 15.8845825, - "Z": 273.88416 - }, - "StopDistance": 1, - "TerritoryId": 813, - "InteractionType": "Combat", - "EnemySpawnType": "AfterItemUse", - "ItemId": 2003001, - "KillEnemyDataIds": [ - 12168 - ], - "Fly": true, - "$.0": "[1]", - "$.1": "QuestVariables if done first: 0 0 0 3 0 0 during fight; 16 1 0 2 16 8 after" - }, - { - "DataId": 2011076, - "Position": { - "X": 495.4756, - "Y": 10.299805, - "Z": 290.547 - }, - "TerritoryId": 813, - "InteractionType": "Combat", - "EnemySpawnType": "AfterItemUse", - "ItemId": 2003001, - "KillEnemyDataIds": [], - "Comment": "TODO Missing enemy ids", - "Fly": true, - "$.1": "QuestVariables if done after [1]: 34 1 0 1 48 40" - }, - { - "DataId": 2011079, - "Position": { - "X": 685.5725, - "Y": 6.881775, - "Z": 497.12354 - }, - "TerritoryId": 813, - "InteractionType": "Combat", - "EnemySpawnType": "AfterItemUse", - "ItemId": 2003001, - "KillEnemyDataIds": [ - ], - "Comment": "TODO Missing enemy ids", - "Fly": true, - "$.2": "QuestVariables if done after [1, 2]: 0 64 0 0 0 0" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1033808, - "Position": { - "X": 763.9734, - "Y": 25.874697, - "Z": 419.51624 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Comment": "TODO Verify Area Transition", - "Position": { - "X": 837.8474, - "Y": 37.845993, - "Z": 408.60828 - }, - "TerritoryId": 813, - "InteractionType": "WalkTo", - "Fly": true - }, - { - "DataId": 2011107, - "Position": { - "X": -223.13275, - "Y": 38.590088, - "Z": -86.80859 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033811, - "Position": { - "X": -208.11786, - "Y": 38.64859, - "Z": -82.65814 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3773_Fraying Threads.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3773_Fraying Threads.json deleted file mode 100644 index abf79b01..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3773_Fraying Threads.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033812, - "Position": { - "X": -205.8595, - "Y": 38.614662, - "Z": -82.81073 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1034900, - "Position": { - "X": -32.791687, - "Y": -0.6250627, - "Z": -44.663208 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2002881, - "Position": { - "X": 21.133728, - "Y": 22.323914, - "Z": -631.281 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "AetheryteShortcut": "Mor Dhona" - }, - { - "DataId": 1032081, - "Position": { - "X": -2.4262085, - "Y": 0, - "Z": -9.10968 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2011080, - "Position": { - "X": -11.39856, - "Y": 1.449585, - "Z": -6.942932 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033817, - "Position": { - "X": -3.03656, - "Y": 0.01804012, - "Z": -8.1026 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3774_Food for the Soul.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3774_Food for the Soul.json deleted file mode 100644 index ba0307fe..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3774_Food for the Soul.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032081, - "Position": { - "X": -2.4262085, - "Y": 0, - "Z": -9.10968 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2002879, - "Position": { - "X": 0, - "Y": 3, - "Z": 27.5 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - }, - { - "Position": { - "X": 29.958076, - "Y": 21.232033, - "Z": -653.85443 - }, - "TerritoryId": 156, - "InteractionType": "WalkTo" - }, - { - "Position": { - "X": 26.789001, - "Y": 54.865185, - "Z": -770.47614 - }, - "TerritoryId": 156, - "InteractionType": "WalkTo", - "Fly": true - }, - { - "Comment": "TODO Verify", - "DataId": 1033818, - "Position": { - "X": 24.551636, - "Y": 50.99997, - "Z": -815.18274 - }, - "TerritoryId": 156, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1027230, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact", - "AetheryteShortcut": "Crystarium", - "AethernetShortcut": [ - "[Crystarium] Aetheryte Plaza", - "[Crystarium] The Dossal Gate" - ] - }, - { - "DataId": 1033819, - "Position": { - "X": -0.015319824, - "Y": 0, - "Z": -4.043701 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033822, - "Position": { - "X": 39.6886, - "Y": -6.9874797E-13, - "Z": -0.83929443 - }, - "StopDistance": 5, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3775_Faded Memories.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3775_Faded Memories.json deleted file mode 100644 index 2f217bcb..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3775_Faded Memories.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033823, - "Position": { - "X": 40.329468, - "Y": -2.0168546E-08, - "Z": 1.9378662 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "Position": { - "X": -496.10434, - "Y": 8.986935, - "Z": 603.11676 - }, - "TerritoryId": 814, - "InteractionType": "WalkTo", - "AetheryteShortcut": "Kholusia - Wright", - "Fly": true - }, - { - "DataId": 1033827, - "Position": { - "X": -495.079, - "Y": 8.986954, - "Z": 604.27246 - }, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2011085, - "Position": { - "X": 1.822433, - "Y": -200.0001, - "Z": -448.3325 - }, - "TerritoryId": 918, - "InteractionType": "SinglePlayerDuty", - "Comment": "Fight NPCs, then Elidibus" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033828, - "Position": { - "X": -396.2005, - "Y": -229.06482, - "Z": 782.9861 - }, - "StopDistance": 5, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3776_Etched in the Stars.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3776_Etched in the Stars.json deleted file mode 100644 index 0231e03d..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3776_Etched in the Stars.json +++ /dev/null @@ -1,126 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 2011087, - "Position": { - "X": -382.8231, - "Y": -229.0648, - "Z": 755.3434 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011089, - "Position": { - "X": -372.0399, - "Y": -229.0648, - "Z": 712.4863 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011091, - "Position": { - "X": -251.9112, - "Y": -229.20581, - "Z": 657.3739 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2011093, - "Position": { - "X": -196.1242, - "Y": -244.89203, - "Z": 679.9878 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2011095, - "Position": { - "X": -132.1889, - "Y": -244.89203, - "Z": 687.9529 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 2011097, - "Position": { - "X": -70.78668, - "Y": -263.9353, - "Z": 710.2921 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 2011099, - "Position": { - "X": -29.221008, - "Y": -263.9353, - "Z": 717.28076 - }, - "TerritoryId": 818, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033829, - "Position": { - "X": -497.94766, - "Y": 8.986913, - "Z": 584.1915 - }, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3777_The Converging Light.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3777_The Converging Light.json deleted file mode 100644 index 7d1d4e19..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3777_The Converging Light.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033829, - "Position": { - "X": -497.94766, - "Y": 8.986913, - "Z": 584.1915 - }, - "TerritoryId": 814, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1033838, - "Position": { - "X": 12.954895, - "Y": 82.05, - "Z": 7.095398 - }, - "TerritoryId": 820, - "InteractionType": "Interact", - "AetheryteShortcut": "Eulmore" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1033830, - "Position": { - "X": 23.819275, - "Y": 82.049995, - "Z": 16.342407 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "TerritoryId": 820, - "InteractionType": "Duty", - "ContentFinderConditionId": 737 - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1033850, - "Position": { - "X": 291.49304, - "Y": 9.905235, - "Z": 153.2157 - }, - "TerritoryId": 813, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 6, - "Steps": [ - { - "DataId": 1033852, - "Position": { - "X": 574.9751, - "Y": 8.563855, - "Z": 336.8734 - }, - "TerritoryId": 813, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033854, - "Position": { - "X": 59.983154, - "Y": -3.0654925E-07, - "Z": 1.6021729 - }, - "StopDistance": 5, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3778_Hope's Confluence.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3778_Hope's Confluence.json deleted file mode 100644 index 0c53c5ee..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3778_Hope's Confluence.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033854, - "Position": { - "X": 59.983154, - "Y": -3.0654925E-07, - "Z": 1.6021729 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "TerritoryId": 931, - "InteractionType": "Duty", - "ContentFinderConditionId": 738 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033856, - "Position": { - "X": 53.421753, - "Y": 0.019417252, - "Z": -0.045776367 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3779_Nothing Unsaid.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3779_Nothing Unsaid.json deleted file mode 100644 index 3d345012..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3779_Nothing Unsaid.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033860, - "Position": { - "X": 53.269165, - "Y": -2.8964132E-07, - "Z": 1.4190674 - }, - "StopDistance": 5, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1034902, - "Position": { - "X": 51.285522, - "Y": -2.59839E-07, - "Z": -1.4801636 - }, - "StopDistance": 5, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1033864, - "Position": { - "X": 384.60352, - "Y": -28.36043, - "Z": 322.56042 - }, - "TerritoryId": 815, - "InteractionType": "Interact", - "AetheryteShortcut": "Amh Araeng - Inn at Journey's Head" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1033865, - "Position": { - "X": 251.8501, - "Y": -46.667526, - "Z": 336.90393 - }, - "TerritoryId": 815, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1033867, - "Position": { - "X": 253.28442, - "Y": -46.571102, - "Z": 337.02588 - }, - "TerritoryId": 815, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "TerritoryId": 820, - "InteractionType": "Interact", - "AetheryteShortcut": "Eulmore" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033868, - "Position": { - "X": 19.57727, - "Y": 82.78207, - "Z": 48.53894 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3780_The Journey Continues.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3780_The Journey Continues.json deleted file mode 100644 index 4d36d100..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3780_The Journey Continues.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033868, - "Position": { - "X": 19.57727, - "Y": 82.78207, - "Z": 48.53894 - }, - "TerritoryId": 820, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1033872, - "Position": { - "X": -634.2717, - "Y": 35.86156, - "Z": -234.21082 - }, - "TerritoryId": 816, - "InteractionType": "Interact", - "AetheryteShortcut": "Il Mheg - Lydha Lran", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1027690, - "Position": { - "X": 452.9945, - "Y": 87.48282, - "Z": -691.9814 - }, - "StopDistance": 5, - "TerritoryId": 816, - "InteractionType": "Interact", - "AetheryteShortcut": "Il Mheg - Wolekdorf" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033872, - "Position": { - "X": -634.2717, - "Y": 35.86156, - "Z": -234.21082 - }, - "TerritoryId": 816, - "InteractionType": "Interact", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3781_Unto the Morrow.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3781_Unto the Morrow.json deleted file mode 100644 index a72457b2..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3781_Unto the Morrow.json +++ /dev/null @@ -1,98 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033872, - "Position": { - "X": -634.2717, - "Y": 35.86156, - "Z": -234.21082 - }, - "TerritoryId": 816, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1032532, - "Position": { - "X": -88.33453, - "Y": -19.033354, - "Z": 296.31494 - }, - "TerritoryId": 817, - "InteractionType": "Interact", - "AetheryteShortcut": "Rak'tika - Slitherbough" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1032532, - "Position": { - "X": -88.33453, - "Y": -19.033354, - "Z": 296.31494 - }, - "TerritoryId": 817, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1033878, - "Position": { - "X": -483.8178, - "Y": 45.586155, - "Z": -236.68274 - }, - "TerritoryId": 815, - "InteractionType": "Interact", - "AetheryteShortcut": "Amh Araeng - Twine" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1033881, - "Position": { - "X": -37.43042, - "Y": 4.583, - "Z": 3.982544 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033884, - "Position": { - "X": 26.230225, - "Y": 0, - "Z": 1.4190674 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3782_Reflections in Crystal.json b/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3782_Reflections in Crystal.json deleted file mode 100644 index 3d1d798a..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/I-5.3/3782_Reflections in Crystal.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1033887, - "Position": { - "X": 24.2771, - "Y": -5.234193E-13, - "Z": -0.7477417 - }, - "StopDistance": 5, - "TerritoryId": 819, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1030533, - "Position": { - "X": 117.997925, - "Y": 14.649025, - "Z": 7.156433 - }, - "TerritoryId": 819, - "InteractionType": "Interact" - }, - { - "DataId": 1033888, - "Position": { - "X": 1.3580322, - "Y": 0, - "Z": -5.081299 - }, - "TerritoryId": 844, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1033896, - "Position": { - "X": 1.5106201, - "Y": 0, - "Z": -3.1586914 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4007_Alisaie's Quest.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4007_Alisaie's Quest.json deleted file mode 100644 index a0a9a958..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4007_Alisaie's Quest.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1032694, - "Position": { - "X": -3.03656, - "Y": 0.01804012, - "Z": -8.133057 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1035339, - "Position": { - "X": -54.8562, - "Y": 2.0050092, - "Z": 11.276367 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1035342, - "Position": { - "X": 125.50537, - "Y": -15.184305, - "Z": -424.21613 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "AetheryteShortcut": "Mor Dhona", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1035344, - "Position": { - "X": -894.5907, - "Y": -184.29301, - "Z": -639.33777 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4008_The Wisdom of Allag.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4008_The Wisdom of Allag.json deleted file mode 100644 index a5ad7121..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4008_The Wisdom of Allag.json +++ /dev/null @@ -1,104 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035345, - "Position": { - "X": -894.52966, - "Y": -184.293, - "Z": -637.6593 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1035348, - "Position": { - "X": -639.33777, - "Y": -176.4502, - "Z": -577.2335 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1035350, - "Position": { - "X": 641.3214, - "Y": -2.8402345, - "Z": -350.3319 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 2011330, - "Position": { - "X": 585.1072, - "Y": -64.83563, - "Z": -692.19507 - }, - "TerritoryId": 402, - "InteractionType": "Combat", - "EnemySpawnType": "AfterInteraction", - "KillEnemyDataIds": [ - 12661 - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2011331, - "Position": { - "X": 585.1072, - "Y": -64.83563, - "Z": -692.19507 - }, - "StopDistance": 5, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1035350, - "Position": { - "X": 641.3214, - "Y": -2.8402345, - "Z": -350.3319 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4009_Reviving the Legacy.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4009_Reviving the Legacy.json deleted file mode 100644 index f32678b2..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4009_Reviving the Legacy.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035350, - "Position": { - "X": 641.3214, - "Y": -2.8402345, - "Z": -350.3319 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2002881, - "Position": { - "X": 21.133728, - "Y": 22.323914, - "Z": -631.281 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "AetheryteShortcut": "Mor Dhona" - }, - { - "DataId": 1035355, - "Position": { - "X": -0.35101318, - "Y": 0, - "Z": -6.9123535 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 2011104, - "Position": { - "X": -11.001831, - "Y": 1.4800415, - "Z": -6.9733887 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - }, - { - "DataId": 2011332, - "Position": { - "X": -56.717834, - "Y": 1.9989014, - "Z": 14.633362 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1035360, - "Position": { - "X": -58.15222, - "Y": 2.0050092, - "Z": 14.541748 - }, - "StopDistance": 5, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "Position": { - "X": -150.08533, - "Y": 16.999998, - "Z": -48.293888 - }, - "TerritoryId": 418, - "InteractionType": "WalkTo", - "AetheryteShortcut": "Ishgard", - "AethernetShortcut": [ - "[Ishgard] Aetheryte Plaza", - "[Ishgard] Skysteel Manufactory" - ] - }, - { - "DataId": 1014578, - "Position": { - "X": -148.02783, - "Y": 16.999998, - "Z": -48.844177 - }, - "TerritoryId": 418, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1035363, - "Position": { - "X": 164.47693, - "Y": -12.634913, - "Z": -13.290649 - }, - "TerritoryId": 419, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Ishgard] Skysteel Manufactory", - "[Ishgard] Athenaeum Astrologicum" - ] - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4010_Forget Us Not.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4010_Forget Us Not.json deleted file mode 100644 index a7027a98..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4010_Forget Us Not.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035354, - "Position": { - "X": -1.0223389, - "Y": 0, - "Z": -8.529846 - }, - "StopDistance": 5, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1035364, - "Position": { - "X": 68.558716, - "Y": 40, - "Z": 69.90149 - }, - "TerritoryId": 128, - "InteractionType": "Interact", - "AetheryteShortcut": "Limsa Lominsa", - "AethernetShortcut": [ - "[Limsa Lominsa] Aetheryte Plaza", - "[Limsa Lominsa] The Aftcastle" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1035366, - "Position": { - "X": -110.09387, - "Y": 39.999992, - "Z": 116.990845 - }, - "StopDistance": 5, - "TerritoryId": 128, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4011_Like Master, Like Pupil.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4011_Like Master, Like Pupil.json deleted file mode 100644 index a2effa72..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4011_Like Master, Like Pupil.json +++ /dev/null @@ -1,105 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035367, - "Position": { - "X": -108.72058, - "Y": 39.999996, - "Z": 117.17395 - }, - "StopDistance": 5, - "TerritoryId": 128, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1035374, - "Position": { - "X": -481.80365, - "Y": 137.42972, - "Z": 698.63416 - }, - "TerritoryId": 399, - "InteractionType": "Interact", - "AetheryteShortcut": "Idyllshire", - "AethernetShortcut": [ - "[Idyllshire] Aetheryte Plaza", - "[Idyllshire] Prologue Gate" - ], - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1012138, - "Position": { - "X": 19.272095, - "Y": 38.43, - "Z": 15.854065 - }, - "StopDistance": 5, - "TerritoryId": 463, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1035380, - "Position": { - "X": 382.77246, - "Y": 75.28701, - "Z": -222.03406 - }, - "TerritoryId": 399, - "InteractionType": "Interact", - "AetheryteShortcut": "Idyllshire", - "AethernetShortcut": [ - "[Idyllshire] Aetheryte Plaza", - "[Idyllshire] Epilogue Gate" - ], - "Fly": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "TerritoryId": 399, - "InteractionType": "Duty", - "ContentFinderConditionId": 746 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1035381, - "Position": { - "X": 382.25366, - "Y": 75.22071, - "Z": -223.40735 - }, - "TerritoryId": 399, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4012_The Admiral's Resolve.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4012_The Admiral's Resolve.json deleted file mode 100644 index 23d96ee2..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4012_The Admiral's Resolve.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035381, - "Position": { - "X": 382.25366, - "Y": 75.22071, - "Z": -223.40735 - }, - "TerritoryId": 399, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1001029, - "Position": { - "X": 9.170593, - "Y": 20.999403, - "Z": -15.213318 - }, - "TerritoryId": 129, - "InteractionType": "Interact", - "AetheryteShortcut": "Limsa Lominsa" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1035386, - "Position": { - "X": -0.4730835, - "Y": 19.999977, - "Z": -13.839966 - }, - "TerritoryId": 129, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1000915, - "Position": { - "X": 18.387085, - "Y": 47.600006, - "Z": -162.12714 - }, - "TerritoryId": 128, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Limsa Lominsa] Aetheryte Plaza", - "[Limsa Lominsa] Marauder's Guild" - ], - "$.1": "QuestVariables if done first: 1 0 0 0 0 128" - }, - { - "DataId": 1000918, - "Position": { - "X": 84.09241, - "Y": 44.399914, - "Z": 132.34143 - }, - "StopDistance": 5, - "TerritoryId": 128, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Limsa Lominsa] Marauder's Guild", - "[Limsa Lominsa] The Aftcastle" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1035386, - "Position": { - "X": -0.4730835, - "Y": 19.999977, - "Z": -13.839966 - }, - "TerritoryId": 129, - "InteractionType": "Interact", - "AetheryteShortcut": "Limsa Lominsa" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4013_The Search for Sicard.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4013_The Search for Sicard.json deleted file mode 100644 index eb29765a..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4013_The Search for Sicard.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035386, - "Position": { - "X": -0.4730835, - "Y": 19.999977, - "Z": -13.839966 - }, - "StopDistance": 5, - "TerritoryId": 129, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1035389, - "Position": { - "X": 85.09949, - "Y": 68.15523, - "Z": 341.90894 - }, - "TerritoryId": 135, - "InteractionType": "Interact", - "AetheryteShortcut": "Lower La Noscea - Moraby Drydocks", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1035391, - "Position": { - "X": 296.86414, - "Y": 69.333755, - "Z": -147.32587 - }, - "TerritoryId": 135, - "InteractionType": "Interact", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4014_On Rough Seas.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4014_On Rough Seas.json deleted file mode 100644 index 4096808f..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4014_On Rough Seas.json +++ /dev/null @@ -1,62 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035391, - "Position": { - "X": 296.86414, - "Y": 69.333755, - "Z": -147.32587 - }, - "TerritoryId": 135, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1001029, - "Position": { - "X": 9.170593, - "Y": 20.999403, - "Z": -15.213318 - }, - "TerritoryId": 129, - "InteractionType": "Interact", - "AetheryteShortcut": "Limsa Lominsa" - }, - { - "DataId": 1002694, - "Position": { - "X": -0.045776367, - "Y": 1.6001425, - "Z": -7.0039062 - }, - "TerritoryId": 198, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1002694, - "Position": { - "X": -0.045776367, - "Y": 1.6001425, - "Z": -7.0039062 - }, - "TerritoryId": 198, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4015_The Great Ship Vylbrand.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4015_The Great Ship Vylbrand.json deleted file mode 100644 index c42b21e6..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4015_The Great Ship Vylbrand.json +++ /dev/null @@ -1,88 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1002694, - "Position": { - "X": -0.045776367, - "Y": 1.6001425, - "Z": -7.0039062 - }, - "TerritoryId": 198, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1035399, - "Position": { - "X": -105.21106, - "Y": 64.43899, - "Z": -243.15253 - }, - "TerritoryId": 180, - "InteractionType": "Interact", - "AetheryteShortcut": "Outer La Noscea - Camp Overlook" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "Position": { - "X": 82.19566, - "Y": 25.922153, - "Z": -711.6839 - }, - "TerritoryId": 180, - "InteractionType": "WalkTo", - "Fly": true - }, - { - "Position": { - "X": 129.6921, - "Y": 23.33508, - "Z": -719.46643 - }, - "TerritoryId": 180, - "InteractionType": "WalkTo" - }, - { - "DataId": 1035401, - "Position": { - "X": 142.71753, - "Y": 24.40421, - "Z": -634.54645 - }, - "TerritoryId": 180, - "InteractionType": "SinglePlayerDuty", - "Comment": "Great Ship Vylbrand" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1035407, - "Position": { - "X": -103.71564, - "Y": 64.39152, - "Z": -241.32147 - }, - "StopDistance": 5, - "TerritoryId": 180, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4016_Futures Rewritten.json b/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4016_Futures Rewritten.json deleted file mode 100644 index ae3d0769..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/J-5.4/4016_Futures Rewritten.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035398, - "Position": { - "X": -106.126526, - "Y": 64.45569, - "Z": -242.66425 - }, - "StopDistance": 5, - "TerritoryId": 180, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1035409, - "Position": { - "X": 581.62805, - "Y": 80, - "Z": 621.7898 - }, - "TerritoryId": 621, - "InteractionType": "Interact", - "AetheryteShortcut": "Lochs - Ala Mhigan Quarter" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1035414, - "Position": { - "X": 739.4979, - "Y": 70, - "Z": 526.48206 - }, - "StopDistance": 5, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 2002881, - "Position": { - "X": 21.133728, - "Y": 22.323914, - "Z": -631.281 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "AetheryteShortcut": "Mor Dhona" - }, - { - "DataId": 1032694, - "Position": { - "X": -3.03656, - "Y": 0.01804012, - "Z": -8.133057 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4058_Unto the Breach.json b/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4058_Unto the Breach.json deleted file mode 100644 index d27f3053..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4058_Unto the Breach.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1035613, - "Position": { - "X": -2.456726, - "Y": 0, - "Z": -9.720032 - }, - "StopDistance": 5, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1036324, - "Position": { - "X": 739.681, - "Y": 70, - "Z": 535.4237 - }, - "TerritoryId": 621, - "InteractionType": "Interact", - "AetheryteShortcut": "Lochs - Ala Mhigan Quarter", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036329, - "Position": { - "X": 741.1155, - "Y": 70, - "Z": 527.7333 - }, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4059_Here Be Dragons.json b/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4059_Here Be Dragons.json deleted file mode 100644 index fe385bd3..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4059_Here Be Dragons.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1036330, - "Position": { - "X": 742.1836, - "Y": 70, - "Z": 529.0454 - }, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1036334, - "Position": { - "X": -73.56378, - "Y": 8.05915, - "Z": 29.3125 - }, - "TerritoryId": 418, - "InteractionType": "Interact", - "AetheryteShortcut": "Ishgard" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1013167, - "Position": { - "X": 125.68848, - "Y": 24.458836, - "Z": 2.456604 - }, - "TerritoryId": 418, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Ishgard] Aetheryte Plaza", - "[Ishgard] The Forgotten Knight" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1036342, - "Position": { - "X": 161.91345, - "Y": -15.134371, - "Z": 33.279907 - }, - "TerritoryId": 419, - "InteractionType": "Interact", - "AethernetShortcut": [ - "[Ishgard] The Forgotten Knight", - "[Ishgard] Athenaeum Astrologicum" - ] - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036344, - "Position": { - "X": -521.5991, - "Y": -103.946754, - "Z": 143.63306 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4060_Righteous Indignation.json b/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4060_Righteous Indignation.json deleted file mode 100644 index 6967106f..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4060_Righteous Indignation.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1036346, - "Position": { - "X": -520.531, - "Y": -103.99243, - "Z": 144.24353 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011483, - "Position": { - "X": -681.5442, - "Y": -41.153625, - "Z": 424.58215 - }, - "StopDistance": 1, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1036588, - "Position": { - "X": -683.3448, - "Y": -41.403988, - "Z": 426.44385 - }, - "StopDistance": 5, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1036353, - "Position": { - "X": -229.38892, - "Y": 246.3967, - "Z": 96.75745 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1036358, - "Position": { - "X": -215.16754, - "Y": 253.81813, - "Z": -13.16864 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true, - "$.1": "QuestVariables if done first: 1 16 0 0 0 64" - }, - { - "DataId": 1036359, - "Position": { - "X": -244.55634, - "Y": 263.18918, - "Z": -24.521301 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Mount": true, - "Fly": true, - "$.1": "QuestVariables if done after [1]: 2 16 0 0 0 96" - }, - { - "DataId": 1036357, - "Position": { - "X": -275.4406, - "Y": 252, - "Z": -20.981201 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "DisableNavmesh": true - } - ] - }, - { - "Sequence": 5, - "Steps": [ - { - "DataId": 1036353, - "Position": { - "X": -229.38892, - "Y": 246.3967, - "Z": 96.75745 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036357, - "Position": { - "X": -275.4406, - "Y": 252, - "Z": -20.981201 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4061_For Vengeance.json b/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4061_For Vengeance.json deleted file mode 100644 index 31cc0d45..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4061_For Vengeance.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1036953, - "Position": { - "X": -275.4406, - "Y": 252, - "Z": -20.981201 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 2011484, - "Position": { - "X": 28.366455, - "Y": 271.229, - "Z": -35.355164 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1036351, - "Position": { - "X": -681.33057, - "Y": -41.32259, - "Z": 427.66455 - }, - "TerritoryId": 402, - "InteractionType": "Interact", - "Fly": true - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1036351, - "Position": { - "X": -681.33057, - "Y": -41.32259, - "Z": 427.66455 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036352, - "Position": { - "X": -679.92676, - "Y": -41.30151, - "Z": 429.00732 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4062_The Flames of War.json b/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4062_The Flames of War.json deleted file mode 100644 index 5c03ea94..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4062_The Flames of War.json +++ /dev/null @@ -1,83 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1036352, - "Position": { - "X": -679.92676, - "Y": -41.30151, - "Z": 429.00732 - }, - "TerritoryId": 402, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1036368, - "Position": { - "X": -137.56012, - "Y": 4.1, - "Z": -109.819214 - }, - "StopDistance": 5, - "TerritoryId": 130, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1036374, - "Position": { - "X": -25.0401, - "Y": 83.19998, - "Z": 10.452393 - }, - "TerritoryId": 130, - "InteractionType": "Interact", - "AetheryteShortcut": "Ul'dah", - "AethernetShortcut": [ - "[Ul'dah] Aetheryte Plaza", - "[Ul'dah] Airship Landing" - ] - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "TerritoryId": 130, - "InteractionType": "Duty", - "ContentFinderConditionId": 777 - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036376, - "Position": { - "X": -20.065674, - "Y": 83.2, - "Z": 15.121643 - }, - "StopDistance": 5, - "TerritoryId": 130, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4063_When the Dust Settles.json b/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4063_When the Dust Settles.json deleted file mode 100644 index 102cef09..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/K-5.5/4063_When the Dust Settles.json +++ /dev/null @@ -1,102 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1036376, - "Position": { - "X": -20.065674, - "Y": 83.2, - "Z": 15.121643 - }, - "TerritoryId": 130, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1036388, - "Position": { - "X": -76.46301, - "Y": 42, - "Z": 58.243652 - }, - "TerritoryId": 131, - "InteractionType": "Interact", - "AetheryteShortcut": "Ul'dah", - "AethernetShortcut": [ - "[Ul'dah] Aetheryte Plaza", - "[Ul'dah] Alchemists' Guild" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1036391, - "Position": { - "X": -77.71423, - "Y": 42, - "Z": 58.854004 - }, - "TerritoryId": 131, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1036392, - "Position": { - "X": -14.328308, - "Y": 36.01278, - "Z": 61.08191 - }, - "TerritoryId": 131, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 2002881, - "Position": { - "X": 21.133728, - "Y": 22.323914, - "Z": -631.281 - }, - "TerritoryId": 156, - "InteractionType": "Interact", - "AetheryteShortcut": "Mor Dhona" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036399, - "Position": { - "X": -3.402832, - "Y": 0.01804012, - "Z": -8.499329 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4064_The Company We Keep.json b/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4064_The Company We Keep.json deleted file mode 100644 index dc3c0d3a..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4064_The Company We Keep.json +++ /dev/null @@ -1,84 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1036400, - "Position": { - "X": -2.5177612, - "Y": 0, - "Z": -9.170715 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1024065, - "Position": { - "X": 749.9961, - "Y": 70.139626, - "Z": 522.88086 - }, - "TerritoryId": 621, - "InteractionType": "Interact", - "AetheryteShortcut": "Lochs - Ala Mhigan Quarter", - "Fly": true - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1036325, - "Position": { - "X": 740.0167, - "Y": 70, - "Z": 534.02 - }, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1037011, - "Position": { - "X": 741.7257, - "Y": 70, - "Z": 534.63025 - }, - "TerritoryId": 621, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036424, - "Position": { - "X": -641.93176, - "Y": 130, - "Z": -503.19678 - }, - "TerritoryId": 612, - "InteractionType": "Interact", - "AetheryteShortcut": "Fringes - Castrum Oriens" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4065_On Official Business.json b/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4065_On Official Business.json deleted file mode 100644 index efc7471f..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4065_On Official Business.json +++ /dev/null @@ -1,109 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1036426, - "Position": { - "X": -642.3591, - "Y": 130, - "Z": -504.63113 - }, - "StopDistance": 5, - "TerritoryId": 612, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1036428, - "Position": { - "X": 125.993774, - "Y": 12.9667015, - "Z": -249.37823 - }, - "TerritoryId": 133, - "InteractionType": "Interact", - "AetheryteShortcut": "Gridania", - "AethernetShortcut": [ - "[Gridania] Aetheryte Plaza", - "[Gridania] Lancer's Guild" - ] - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1005577, - "Position": { - "X": 28.488525, - "Y": -3.6319542, - "Z": 210.62024 - }, - "TerritoryId": 152, - "InteractionType": "Interact", - "AetheryteShortcut": "East Shroud - Hawthorne Hut", - "Fly": true - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "DataId": 1000460, - "Position": { - "X": -159.41101, - "Y": 4.054107, - "Z": -4.1047363 - }, - "TerritoryId": 133, - "InteractionType": "Interact", - "AetheryteShortcut": "Gridania", - "AethernetShortcut": [ - "[Gridania] Aetheryte Plaza", - "[Gridania] Conjurer's Guild" - ] - } - ] - }, - { - "Sequence": 4, - "Steps": [ - { - "DataId": 1003027, - "Position": { - "X": 4.8981323, - "Y": -1.92944, - "Z": -0.19836426 - }, - "TerritoryId": 205, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036436, - "Position": { - "X": 4.2266846, - "Y": -1.858, - "Z": 2.7922974 - }, - "TerritoryId": 205, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4066_Death Unto Dawn.json b/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4066_Death Unto Dawn.json deleted file mode 100644 index 97898850..00000000 --- a/Questionable/QuestPaths/Shadowbringers/MSQ/L-5.55/4066_Death Unto Dawn.json +++ /dev/null @@ -1,79 +0,0 @@ -{ - "Version": 1, - "Author": "liza", - "QuestSequence": [ - { - "Sequence": 0, - "Steps": [ - { - "DataId": 1003027, - "Position": { - "X": 4.8981323, - "Y": -1.92944, - "Z": -0.19836426 - }, - "TerritoryId": 205, - "InteractionType": "Interact" - } - ] - }, - { - "Sequence": 1, - "Steps": [ - { - "DataId": 1036439, - "Position": { - "X": 57.90796, - "Y": -8.556444, - "Z": 107.16406 - }, - "TerritoryId": 132, - "InteractionType": "Interact", - "AetheryteShortcut": "Gridania" - } - ] - }, - { - "Sequence": 2, - "Steps": [ - { - "DataId": 1036441, - "Position": { - "X": 32.60852, - "Y": -19.000002, - "Z": 103.34924 - }, - "StopDistance": 7, - "TerritoryId": 132, - "InteractionType": "SinglePlayerDuty", - "Comment": "Death Unto Dawn" - } - ] - }, - { - "Sequence": 3, - "Steps": [ - { - "TerritoryId": 351, - "InteractionType": "WaitForManualProgress", - "Comment": "Credits" - } - ] - }, - { - "Sequence": 255, - "Steps": [ - { - "DataId": 1036444, - "Position": { - "X": -1.6937866, - "Y": 0, - "Z": -4.135254 - }, - "TerritoryId": 351, - "InteractionType": "Interact" - } - ] - } - ] -} diff --git a/Questionable/QuestSchema/schema_v1.json b/Questionable/QuestSchema/schema_v1.json deleted file mode 100644 index a75af5c6..00000000 --- a/Questionable/QuestSchema/schema_v1.json +++ /dev/null @@ -1,516 +0,0 @@ -{ - "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "/quest/1.0", - "title": "Questionable V1", - "description": "A series of quest sequences", - "type": "object", - "properties": { - "Version": { - "description": "Version of the schema", - "type": "integer", - "minimum": 1, - "maximum": 1 - }, - "Author": { - "description": "Author of the quest sequence", - "type": "string" - }, - "Contributors": { - "type": "array", - "items": { - "type": "string" - } - }, - "Comment": { - "type": "string" - }, - "TerritoryBlacklist": { - "type": "array", - "items": { - "type": "integer" - } - }, - "QuestSequence": { - "type": "array", - "items": { - "type": "object", - "properties": { - "Sequence": { - "type": "integer", - "minimum": 0, - "maximum": 255 - }, - "Steps": { - "type": "array", - "items": { - "type": "object", - "properties": { - "DataId": { - "type": "integer", - "description": "The data id of the NPC/Object/Aetheryte/Aether Current", - "exclusiveMinimum": 0 - }, - "Position": { - "type": "object", - "description": "Position to (typically) walk to", - "properties": { - "X": { - "type": "number" - }, - "Y": { - "type": "number" - }, - "Z": { - "type": "number" - } - }, - "required": [ - "X", - "Y", - "Z" - ] - }, - "StopDistance": { - "type": [ - "number", - "null" - ], - "description": "Set if pathfinding should stop closer or further away from the default stop distance", - "exclusiveMinimum": 0 - }, - "TerritoryId": { - "type": "integer", - "description": "The territory id associated with the location", - "exclusiveMinimum": 0 - }, - "TargetTerritoryId": { - "type": "integer", - "description": "If set, this step is complete (movement-wise) if this territory id is reached", - "exclusiveMinimum": 0 - }, - "InteractionType": { - "type": "string", - "description": "What to do at the position", - "enum": [ - "Interact", - "WalkTo", - "AttuneAethernetShard", - "AttuneAetheryte", - "AttuneAetherCurrent", - "Combat", - "UseItem", - "Say", - "Emote", - "WaitForNpcAtPosition", - "WaitForManualProgress", - "Duty", - "SinglePlayerDuty", - "Jump", - "CutsceneSelectString", - "ShouldBeAJump", - "Instruction" - ] - }, - "Disabled": { - "description": "Whether this step is disabled (see SkipIf for more control)", - "type": "boolean" - }, - "DisableNavmesh": { - "description": "If true, will go to the position in a straight line instead of using pathfinding", - "type": "boolean" - }, - "Mount": { - "type": [ - "boolean", - "null" - ], - "description": "If true, will mount regardless of distance to position. If false, will unmount." - }, - "Fly": { - "type": "boolean", - "description": "If true and flying is unlocked in a zone, will use a flight path" - }, - "Sprint": { - "type": [ - "boolean", - "null" - ] - }, - "AetheryteShortcut": { - "type": "string", - "description": "The Aetheryte to teleport to (before moving)", - "enum": [ - "Gridania", - "Central Shroud - Bentbranch Meadows", - "East Shroud - Hawthorne Hut", - "South Shroud - Quarrymill", - "South Shroud - Camp Tranquil", - "North Shroud - Fallgourd Float", - "Ul'dah", - "Western Thanalan - Horizon", - "Central Thanalan - Black Brush Station", - "Eastern Thanalan - Camp Drybone", - "Southern Thanalan - Little Ala Mhigo", - "Southern Thanalan - Forgotten Springs", - "Northern Thanalan - Camp Bluefog", - "Northern Thanalan - Ceruleum Processing Plant", - "Limsa Lominsa", - "Middle La Noscea - Summerford Farms", - "Lower La Noscea - Moraby Drydocks", - "Eastern La Noscea - Costa Del Sol", - "Eastern La Noscea - Wineport", - "Western La Noscea - Swiftperch", - "Western La Noscea - Aleport", - "Upper La Noscea - Camp Bronze Lake", - "Outer La Noscea - Camp Overlook", - "Coerthas Central Highlands - Camp Dragonhead", - "Mor Dhona", - "Gold Saucer", - "Wolves' Den Pier", - "Ishgard", - "Idyllshire", - "Coerthas Western Highlands - Falcon's Nest", - "The Sea of Clouds - Camp Cloudtop", - "The Sea of Clouds - Ok' Zundu", - "Azys Lla - Helix", - "The Dravanian Forelands - Tailfeather", - "The Dravanian Forelands - Anyx Trine", - "The Churning Mists - Moghome", - "The Churning Mists - Zenith", - "Rhalgr's Reach", - "Fringes - Castrum Oriens", - "Fringes - Peering Stones", - "Peaks - Ala Gannha", - "Peaks - Ala Ghiri", - "Lochs - Porta Praetoria", - "Lochs - Ala Mhigan Quarter", - "Kugane", - "Ruby Sea - Tamamizu", - "Ruby Sea - Onokoro", - "Yanxia - Namai", - "Yanxia - House of the Fierce", - "Azim Steppe - Reunion", - "Azim Steppe - Dawn Throne", - "Azim Steppe - Dhoro Iloh", - "Doman Enclave", - "Crystarium", - "Eulmore", - "Lakeland - Fort Jobb", - "Lakeland - Ostall Imperative", - "Kholusia - Stilltide", - "Kholusia - Wright", - "Kholusia - Tomra", - "Amh Araeng - Mord Souq", - "Amh Araeng - Inn at Journey's Head", - "Amh Araeng - Twine", - "Rak'tika - Slitherbough", - "Rak'tika - Fanow", - "Il Mheg - Lydha Lran", - "Il Mheg - Pia Enni", - "Il Mheg - Wolekdorf", - "Tempest - Ondo Cups", - "Tempest - Macarenses Angle", - "Old Sharlayan", - "Radz-at-Han", - "Labyrinthos - Archeion", - "Labyrinthos - Sharlayan Hamlet", - "Labyrinthos - Aporia", - "Thavnair - Yedlihmad", - "Thavnair - Great Work", - "Thavnair - Palaka's Stand", - "Garlemald - Camp Broken Glass", - "Garlemald - Tertium", - "Mare Lamentorum - Sinus Lacrimarum", - "Mare Lamentorum - Bestways Burrow", - "Elpis - Anagnorisis", - "Elpis - Twelve Wonders", - "Elpis - Poieten Oikos", - "Ultima Thule - Reah Tahra", - "Ultima Thule - Abode of the Ea", - "Ultima Thule - Base Omicron" - ] - }, - "AethernetShortcut": { - "type": "array", - "description": "A pair of aethernet locations (from + to) to use as a shortcut", - "minItems": 1, - "maxItems": 2, - "items": { - "type": "string", - "enum": [ - "[Gridania] Aetheryte Plaza", - "[Gridania] Archer's Guild", - "[Gridania] Leatherworker's Guild & Shaded Bower", - "[Gridania] Lancer's Guild", - "[Gridania] Conjurer's Guild", - "[Gridania] Botanist's Guild", - "[Gridania] Mih Khetto's Amphitheatre", - "[Gridania] Blue Badger Gate (Central Shroud)", - "[Gridania] Yellow Serpent Gate (North Shroud)", - "[Gridania] White Wolf Gate (Central Shroud)", - "[Gridania] Airship Landing", - "[Ul'dah] Aetheryte Plaza", - "[Ul'dah] Adventurer's Guild", - "[Ul'dah] Thaumaturge's Guild", - "[Ul'dah] Gladiator's Guild", - "[Ul'dah] Miner's Guild", - "[Ul'dah] Weavers' Guild", - "[Ul'dah] Goldsmiths' Guild", - "[Ul'dah] Sapphire Avenue Exchange", - "[Ul'dah] Alchemists' Guild", - "[Ul'dah] Gate of the Sultana (Western Thanalan)", - "[Ul'dah] Gate of Nald (Central Thanalan)", - "[Ul'dah] Gate of Thal (Central Thanalan)", - "[Ul'dah] The Chamber of Rule", - "[Ul'dah] Airship Landing", - "[Limsa Lominsa] Aetheryte Plaza", - "[Limsa Lominsa] Arcanist's Guild", - "[Limsa Lominsa] Fishermen's Guild", - "[Limsa Lominsa] Hawker's Alley", - "[Limsa Lominsa] The Aftcastle", - "[Limsa Lominsa] Culinarian's Guild", - "[Limsa Lominsa] Marauder's Guild", - "[Limsa Lominsa] Zephyr Gate (Middle La Noscea)", - "[Limsa Lominsa] Tempest Gate (Lower La Noscea)", - "[Limsa Lominsa] Airship Landing", - "[Ishgard] Aetheryte Plaza", - "[Ishgard] The Forgotten Knight", - "[Ishgard] Skysteel Manufactory", - "[Ishgard] The Brume", - "[Ishgard] Athenaeum Astrologicum", - "[Ishgard] The Jeweled Crozier", - "[Ishgard] Saint Reymanaud's Cathedral", - "[Ishgard] The Tribunal", - "[Ishgard] The Last Vigil", - "[Ishgard] The Gates of Judgement (Coerthas Central Highlands)", - "[Idyllshire] Aetheryte Plaza", - "[Idyllshire] West Idyllshire", - "[Idyllshire] Prologue Gate", - "[Idyllshire] Epilogue Gate", - "[Rhalgr's Reach] Aetheryte Plaza", - "[Rhalgr's Reach] Western Rhalgr's Reach", - "[Rhalgr's Reach] Northeastern Rhalgr's Reach", - "[Rhalgr's Reach] Fringes Gate", - "[Rhalgr's Reach] Peaks Gate", - "[Kugane] Aetheryte Plaza", - "[Kugane] Shiokaze Hostelry", - "[Kugane] Pier #1", - "[Kugane] Thavnairian Consulate", - "[Kugane] Kogane Dori Markets", - "[Kugane] Bokairo Inn", - "[Kugane] The Ruby Bazaar", - "[Kugane] Sekiseigumi Barracks", - "[Kugane] Rakuza District", - "[Kugane] The Ruby Price", - "[Kugane] Airship Landing", - "[Crystarium] Aetheryte Plaza", - "[Crystarium] Musica Universalis Markets", - "[Crystarium] Themenos Rookery", - "[Crystarium] The Dossal Gate", - "[Crystarium] The Pendants", - "[Crystarium] The Amaro Launch", - "[Crystarium] The Crystalline Mean", - "[Crystarium] The Cabinet of Curiosity", - "[Crystarium] Tessellation (Lakeland)", - "[Eulmore] Aetheryte Plaza", - "[Eulmore] Southeast Derelicts", - "[Eulmore] Nightsoil Pots", - "[Eulmore] The Glory Gate", - "[Eulmore] The Mainstay", - "[Eulmore] The Path to Glory (Kholusia)", - "[Old Sharlayan] Aetheryte Plaza", - "[Old Sharlayan] The Studium", - "[Old Sharlayan] The Baldesion Annex", - "[Old Sharlayan] The Rostra", - "[Old Sharlayan] The Leveilleur Estate", - "[Old Sharlayan] Journey's End", - "[Old Sharlayan] Scholar's Harbor", - "[Old Sharlayan] The Hall of Artifice (Labyrinthos)", - "[Radz-at-Han] Aetheryte Plaza", - "[Radz-at-Han] Meghaduta", - "[Radz-at-Han] Ruveydah Fibers", - "[Radz-at-Han] Airship Landing", - "[Radz-at-Han] Alzadaal's Peace", - "[Radz-at-Han] Hall of the Radiant Host", - "[Radz-at-Han] Mehryde's Meyhane", - "[Radz-at-Han] Kama", - "[Radz-at-Han] The High Crucible of Al-Kimiya", - "[Radz-at-Han] The Gate of First Sight (Thavnair)" - ] - } - }, - "AetherCurrentId": { - "type": "number", - "description": "The aether current id, used to check if a given aetheryte is unlocked" - }, - "EnemySpawnType": { - "type": "string", - "description": "Determines how enemy spawning is handled in combat locations", - "enum": [ - "AutoOnEnterArea", - "AfterInteraction", - "AfterItemUse", - "OverworldEnemies" - ] - }, - "KillEnemyDataIds": { - "description": "The enemy data ids which are supposed to be killed", - "type": "array", - "items": { - "type": "integer" - } - }, - "Emote": { - "type": "string", - "description": "The emote to use", - "enum": [ - "stretch", - "wave", - "rally", - "deny", - "pray" - ] - }, - "ChatMessage": { - "type": "string", - "description": "The text to use with /say" - }, - "ItemId": { - "type": [ - "number", - "null" - ], - "description": "The Item to use", - "exclusiveMinimum": 0 - }, - "JumpDestination": { - "type": "object", - "properties": { - "Position": { - "type": "object", - "description": "Position to try reaching after the jump", - "properties": { - "X": { - "type": "number" - }, - "Y": { - "type": "number" - }, - "Z": { - "type": "number" - } - }, - "required": [ - "X", - "Y", - "Z" - ] - }, - "StopDistance": { - "type": [ - "number", - "null" - ], - "description": "Set if pathfinding should stop closer or further away from the default stop distance", - "exclusiveMinimum": 0 - }, - "DelaySeconds": { - "type": [ - "number", - "null" - ] - } - }, - "required": [ - "Position" - ] - }, - "ContentFinderConditionId": { - "type": "integer", - "exclusiveMinimum": 0 - }, - "SkipIf": { - "type": "array", - "description": "TODO Not implemented", - "items": { - "type": "string", - "enum": [ - "Never", - "FlyingUnlocked" - ] - } - }, - "CompletionQuestVariablesFlags": { - "type": "array", - "description": "Quest Variables that dictate whether or not this step is skipped: null is don't check, positive values need to be set, negative values need to be unset", - "items": { - "type": [ - "integer", - "null" - ], - "enum": [ - null, - 1, - 2, - 4, - 8, - 16, - 32, - 64, - 128, - -1, - -2, - -4, - -8, - -16, - -32, - -64, - -128 - ] - }, - "minItems": 6, - "maxItems": 6 - }, - "DialogueChoices": { - "type": "array", - "items": { - "type": "object", - "properties": { - "ExcelSheet": { - "type": "string" - }, - "Answer": { - "type": "string" - } - }, - "required": [ - "ExcelSheet", - "Answer" - ] - } - }, - "Comment": { - "type": "string" - } - }, - "required": [ - "TerritoryId", - "InteractionType" - ] - } - }, - "Comment": { - "type": "string" - } - }, - "required": [ - "Sequence" - ] - } - } - }, - "required": [ - "Version", - "Author" - ] -} diff --git a/Questionable/Questionable.csproj b/Questionable/Questionable.csproj index 177892f4..47bc84b0 100644 --- a/Questionable/Questionable.csproj +++ b/Questionable/Questionable.csproj @@ -56,15 +56,6 @@ + - - - - - - diff --git a/Questionable/QuestionablePlugin.cs b/Questionable/QuestionablePlugin.cs index 6142d47f..4d04fec2 100644 --- a/Questionable/QuestionablePlugin.cs +++ b/Questionable/QuestionablePlugin.cs @@ -11,6 +11,7 @@ using FFXIVClientStructs.FFXIV.Client.UI; using Questionable.Controller; using Questionable.Data; using Questionable.External; +using Questionable.Model; using Questionable.Windows; namespace Questionable; diff --git a/Questionable/Windows/DebugWindow.cs b/Questionable/Windows/DebugWindow.cs index 32a073bd..845fd530 100644 --- a/Questionable/Windows/DebugWindow.cs +++ b/Questionable/Windows/DebugWindow.cs @@ -13,6 +13,7 @@ using FFXIVClientStructs.FFXIV.Client.Game.Control; using FFXIVClientStructs.FFXIV.Client.UI.Agent; using ImGuiNET; using Questionable.Controller; +using Questionable.Model; using Questionable.Model.V1; namespace Questionable.Windows; diff --git a/Questionable/packages.lock.json b/Questionable/packages.lock.json index e5fcfce9..1ff84635 100644 --- a/Questionable/packages.lock.json +++ b/Questionable/packages.lock.json @@ -24,6 +24,9 @@ }, "llib": { "type": "Project" + }, + "questpaths": { + "type": "Project" } } }