Compare commits
85 Commits
Author | SHA1 | Date | |
---|---|---|---|
6ff89eefb3 | |||
6548b5206e | |||
58ec1259f5 | |||
98aa8f2469 | |||
9de05fee09 | |||
9e3a5e5e93 | |||
5d45f7acb6 | |||
5d9a622e16 | |||
a9ee678c2b | |||
286f2c4d77 | |||
fadc80eaff | |||
6654ebc676 | |||
c929e29e39 | |||
c6a783132e | |||
dc4d216fba | |||
817abdd882 | |||
ac9f768897 | |||
de07465368 | |||
b08110a9c0 | |||
9098bdc6b4 | |||
3f2b9b04e4 | |||
68a0986e96 | |||
d5a77209d4 | |||
d9d090e980 | |||
3d9a1cec7c | |||
5d82d923d4 | |||
|
8e3dab044d | ||
f760be3424 | |||
71b9bb19f6 | |||
0cb0d88984 | |||
04aa0d9052 | |||
f3e418f440 | |||
|
05effd49f0 | ||
|
c905b3b6be | ||
35f1079bc3 | |||
|
2def76ce9a | ||
fb43cf05b7 | |||
|
50119e9bd1 | ||
f51a51c547 | |||
422a98cc1c | |||
e84b5ad665 | |||
|
59f3ae6c21 | ||
|
745b1c4390 | ||
|
6d86c3897c | ||
|
3c1677b506 | ||
|
dad21274ef | ||
71a34e7b21 | |||
61c160ecfb | |||
009b81a90d | |||
|
260a9c1d30 | ||
|
ba54a1601c | ||
4d966e4353 | |||
|
70a7d22afc | ||
5a18813c9f | |||
e0a7b09848 | |||
238641f350 | |||
|
0e71d37424 | ||
|
501a2bd06d | ||
|
ccf077ed6b | ||
|
9dfe110d38 | ||
92b97a7caa | |||
c86f9955f7 | |||
5da2dc9f8e | |||
0265fcc0ae | |||
73e030b620 | |||
145a989a07 | |||
6c1c66971d | |||
07c5faa781 | |||
c1aadb8c9c | |||
6e1ee729da | |||
4d397022b9 | |||
1d9198eacd | |||
472aeac04a | |||
03f4c39ba8 | |||
28795e68e4 | |||
3ab1069ab7 | |||
f71ddeddfa | |||
c65da42cd1 | |||
ed4d279432 | |||
d4c1b4b3ac | |||
3b1bfcaade | |||
0d7263604b | |||
a540fd8b86 | |||
993d6918ec | |||
|
f3343ea306 |
@ -1,5 +1,5 @@
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<Version>4.1</Version>
|
||||
<Version>4.6</Version>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
@ -3,16 +3,12 @@ using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Nodes;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization.Metadata;
|
||||
using Dalamud.Game.ClientState.Objects;
|
||||
using Dalamud.Game.ClientState.Objects.Enums;
|
||||
using Dalamud.Game.ClientState.Objects.Types;
|
||||
using Dalamud.Game.Command;
|
||||
using Dalamud.Plugin.Services;
|
||||
using Lumina.Excel.GeneratedSheets;
|
||||
using Lumina.Excel.Sheets;
|
||||
using Questionable.Model;
|
||||
using Questionable.Model.Gathering;
|
||||
using Questionable.Model.Questing;
|
||||
@ -70,14 +66,14 @@ internal sealed class EditorCommands : IDisposable
|
||||
if (target == null || target.ObjectKind != ObjectKind.GatheringPoint)
|
||||
throw new Exception("No valid target");
|
||||
|
||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(target.DataId);
|
||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>().GetRowOrDefault(target.DataId);
|
||||
if (gatheringPoint == null)
|
||||
throw new Exception("Invalid gathering point");
|
||||
|
||||
FileInfo targetFile;
|
||||
GatheringRoot root;
|
||||
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
|
||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.Value.GatheringPointBase.RowId);
|
||||
if (location != null)
|
||||
{
|
||||
targetFile = location.File;
|
||||
@ -96,7 +92,7 @@ internal sealed class EditorCommands : IDisposable
|
||||
}
|
||||
else
|
||||
{
|
||||
(targetFile, root) = CreateNewFile(gatheringPoint, target);
|
||||
(targetFile, root) = CreateNewFile(gatheringPoint.Value, target);
|
||||
_chatGui.Print($"Creating new file under {targetFile.FullName}", "qG");
|
||||
}
|
||||
|
||||
@ -174,16 +170,16 @@ internal sealed class EditorCommands : IDisposable
|
||||
?.File.Directory;
|
||||
if (targetFolder == null)
|
||||
{
|
||||
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>()!.GetRow(_clientState.TerritoryType)!;
|
||||
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>().GetRow(_clientState.TerritoryType);
|
||||
targetFolder = _plugin.PathsDirectory
|
||||
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.Row])
|
||||
.CreateSubdirectory(territoryInfo.PlaceName.Value!.Name.ToString());
|
||||
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.RowId])
|
||||
.CreateSubdirectory(territoryInfo.PlaceName.Value.Name.ToString());
|
||||
}
|
||||
|
||||
FileInfo targetFile =
|
||||
new FileInfo(
|
||||
Path.Combine(targetFolder.FullName,
|
||||
$"{gatheringPoint.GatheringPointBase.Row}_{gatheringPoint.PlaceName.Value!.Name}_{(_clientState.LocalPlayer!.ClassJob.Id == 16 ? "MIN" : "BTN")}.json"));
|
||||
$"{gatheringPoint.GatheringPointBase.RowId}_{gatheringPoint.PlaceName.Value.Name}_{(_clientState.LocalPlayer!.ClassJob.RowId == 16 ? "MIN" : "BTN")}.json"));
|
||||
var root = new GatheringRoot
|
||||
{
|
||||
Author = [_configuration.AuthorName],
|
||||
|
@ -59,7 +59,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
||||
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
|
||||
{ IsOpen = true };
|
||||
_windowSystem.AddWindow(_editorWindow);
|
||||
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.Id ?? EClassJob.Adventurer;
|
||||
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.RowId ?? EClassJob.Adventurer;
|
||||
|
||||
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
|
||||
.Subscribe(Reload);
|
||||
|
@ -1,7 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
using Dalamud.Game.ClientState.Objects;
|
||||
@ -11,7 +10,7 @@ using Dalamud.Interface.Colors;
|
||||
using Dalamud.Interface.Windowing;
|
||||
using Dalamud.Plugin.Services;
|
||||
using ImGuiNET;
|
||||
using Lumina.Excel.GeneratedSheets;
|
||||
using Lumina.Excel.Sheets;
|
||||
using Questionable.Model.Gathering;
|
||||
|
||||
namespace GatheringPathRenderer.Windows;
|
||||
@ -205,12 +204,12 @@ internal sealed class EditorWindow : Window
|
||||
}
|
||||
else if (_target != null)
|
||||
{
|
||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(_target.DataId);
|
||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>().GetRowOrDefault(_target.DataId);
|
||||
if (gatheringPoint == null)
|
||||
return;
|
||||
|
||||
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
|
||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.Value.GatheringPointBase.RowId);
|
||||
if (location != null)
|
||||
{
|
||||
var targetFile = location.File;
|
||||
@ -234,9 +233,9 @@ internal sealed class EditorWindow : Window
|
||||
}
|
||||
else
|
||||
{
|
||||
if (ImGui.Button($"Create location ({gatheringPoint.GatheringPointBase.Row})"))
|
||||
if (ImGui.Button($"Create location ({gatheringPoint.Value.GatheringPointBase.RowId})"))
|
||||
{
|
||||
var (targetFile, root) = _editorCommands.CreateNewFile(gatheringPoint, _target);
|
||||
var (targetFile, root) = _editorCommands.CreateNewFile(gatheringPoint.Value, _target);
|
||||
_plugin.Save(targetFile, root);
|
||||
}
|
||||
}
|
||||
|
2
LLib
2
LLib
@ -1 +1 @@
|
||||
Subproject commit 70b0bef2459898a70f7b34b4d196bbaeb72397b1
|
||||
Subproject commit 783fea977a2524dd63e717367fc026c52efe6c23
|
@ -48,6 +48,9 @@ internal static class SkipConditionsExtensions
|
||||
Assignment(nameof(SkipStepConditions.Flying), skipStepConditions.Flying,
|
||||
emptyStep.Flying)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(SkipStepConditions.Diving), skipStepConditions.Diving,
|
||||
emptyStep.Diving)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(SkipStepConditions.Chocobo), skipStepConditions.Chocobo,
|
||||
emptyStep.Chocobo)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
@ -1,6 +1,8 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"Disabled": true,
|
||||
"Comment": "WIP too many cases",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -17,9 +19,118 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -175.15483,
|
||||
"Y": 40,
|
||||
"Z": 159.05237
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003019,
|
||||
"Position": {
|
||||
"X": -88.059875,
|
||||
"Y": 43.503418,
|
||||
"Z": 149.00427
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, [4], null, null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003022,
|
||||
"Position": {
|
||||
"X": -170.85535,
|
||||
"Y": 39.993896,
|
||||
"Z": 135.45422
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, [5], null, null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003017,
|
||||
"Position": {
|
||||
"X": -97.48993,
|
||||
"Y": 45.792236,
|
||||
"Z": 197.28381
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, [20], null, null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003020,
|
||||
"Position": {
|
||||
"X": -77.836365,
|
||||
"Y": 43.4729,
|
||||
"Z": 155.50464
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, [21], null, null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003015,
|
||||
"Position": {
|
||||
"X": 133.62317,
|
||||
"Y": 13.961914,
|
||||
"Z": 152.26978
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, [36], null, null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003018,
|
||||
"Position": {
|
||||
"X": -100.572266,
|
||||
"Y": 45.76172,
|
||||
"Z": 211.04749
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, [37], null, null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003016,
|
||||
"Position": {
|
||||
"X": 185.19873,
|
||||
"Y": 13.992493,
|
||||
"Z": 231.89136
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, [52, 53], null, null, null, null],
|
||||
"Mount": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.256956,
|
||||
"Y": 38.639523,
|
||||
"Z": 145.03891
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1005551,
|
||||
"Position": {
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
@ -0,0 +1,213 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005551,
|
||||
"Position": {
|
||||
"X": 98.924194,
|
||||
"Y": 15.29447,
|
||||
"Z": -349.4469
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005745,
|
||||
"Position": {
|
||||
"X": 22.720581,
|
||||
"Y": 4.240738,
|
||||
"Z": -443.07623
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -126.48953,
|
||||
"Y": 27.57419,
|
||||
"Z": 138.61473
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003048,
|
||||
"Position": {
|
||||
"X": -136.85822,
|
||||
"Y": 18.753235,
|
||||
"Z": 116.50256
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [1, 2], null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003049,
|
||||
"Position": {
|
||||
"X": -121.78229,
|
||||
"Y": 28.732666,
|
||||
"Z": 140.33716
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [3], null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003050,
|
||||
"Position": {
|
||||
"X": -91.96619,
|
||||
"Y": 43.07617,
|
||||
"Z": 156.84741
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [4], null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003051,
|
||||
"Position": {
|
||||
"X": -55.40558,
|
||||
"Y": 42.526855,
|
||||
"Z": 192.18738
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [1, 3, 4], null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003052,
|
||||
"Position": {
|
||||
"X": 6.668152,
|
||||
"Y": 36.9115,
|
||||
"Z": 207.01917
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [2], null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003053,
|
||||
"Position": {
|
||||
"X": 73.31958,
|
||||
"Y": 31.784546,
|
||||
"Z": 153.76514
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [1], null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003054,
|
||||
"Position": {
|
||||
"X": 79.42322,
|
||||
"Y": 25.802979,
|
||||
"Z": 208.66711
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [2, 4], null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003055,
|
||||
"Position": {
|
||||
"X": 106.889404,
|
||||
"Y": 14.602844,
|
||||
"Z": 147.53943
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [3], null, null, null],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 135.42383,
|
||||
"Y": 8.102478,
|
||||
"Z": 178.36267
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [2456],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003056,
|
||||
"Position": {
|
||||
"X": 135.42383,
|
||||
"Y": 8.102478,
|
||||
"Z": 178.36267
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -63.849556,
|
||||
"Y": 26.409807,
|
||||
"Z": -383.9894
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1005745,
|
||||
"Position": {
|
||||
"X": 22.720581,
|
||||
"Y": 4.240738,
|
||||
"Z": -443.07623
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005551,
|
||||
"Position": {
|
||||
"X": 98.924194,
|
||||
"Y": 15.29447,
|
||||
"Z": -349.4469
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,118 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002279,
|
||||
"Position": {
|
||||
"X": -196.8872,
|
||||
"Y": 18.459997,
|
||||
"Z": 59.952637
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
130
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002533,
|
||||
"Position": {
|
||||
"X": -72.67877,
|
||||
"Y": -32.059265,
|
||||
"Z": -46.830017
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Combat",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
305
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002429,
|
||||
"Position": {
|
||||
"X": -72.67877,
|
||||
"Y": -32.059265,
|
||||
"Z": -46.830017
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000954
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002279,
|
||||
"Position": {
|
||||
"X": -196.8872,
|
||||
"Y": 18.459997,
|
||||
"Z": 59.952637
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006752,
|
||||
"Position": {
|
||||
"X": 87.5105,
|
||||
"Y": 18,
|
||||
"Z": 113.725464
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Thaumaturges' Guild",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
130
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,131 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006752,
|
||||
"Position": {
|
||||
"X": 87.5105,
|
||||
"Y": 18,
|
||||
"Z": 113.725464
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 4548,
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1006752,
|
||||
"Position": {
|
||||
"X": 87.5105,
|
||||
"Y": 18,
|
||||
"Z": 113.725464
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002534,
|
||||
"Position": {
|
||||
"X": -7.9194946,
|
||||
"Y": 13.687317,
|
||||
"Z": 866.54443
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Combat",
|
||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
21
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002430,
|
||||
"Position": {
|
||||
"X": -7.9194946,
|
||||
"Y": 13.687317,
|
||||
"Z": 866.54443
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000809
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002279,
|
||||
"Position": {
|
||||
"X": -196.8872,
|
||||
"Y": 18.459997,
|
||||
"Z": 59.952637
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006752,
|
||||
"Position": {
|
||||
"X": 87.5105,
|
||||
"Y": 18,
|
||||
"Z": 113.725464
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
130
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,217 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006752,
|
||||
"Position": {
|
||||
"X": 87.5105,
|
||||
"Y": 18,
|
||||
"Z": 113.725464
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007864,
|
||||
"Position": {
|
||||
"X": -167.40674,
|
||||
"Y": 14.513778,
|
||||
"Z": -251.3009
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002535,
|
||||
"Position": {
|
||||
"X": -178.39331,
|
||||
"Y": 15.42688,
|
||||
"Z": -244.64789
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
182
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002431,
|
||||
"Position": {
|
||||
"X": -178.39331,
|
||||
"Y": 15.42688,
|
||||
"Z": -244.64789
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000810
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007864,
|
||||
"Position": {
|
||||
"X": -167.40674,
|
||||
"Y": 14.513778,
|
||||
"Z": -251.3009
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007865,
|
||||
"Position": {
|
||||
"X": -223.10223,
|
||||
"Y": 14.513845,
|
||||
"Z": -365.25525
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002536,
|
||||
"Position": {
|
||||
"X": -211.16962,
|
||||
"Y": 15.396301,
|
||||
"Z": -345.41852
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
182
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002432,
|
||||
"Position": {
|
||||
"X": -211.16962,
|
||||
"Y": 15.396301,
|
||||
"Z": -345.41852
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000811
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007865,
|
||||
"Position": {
|
||||
"X": -223.10223,
|
||||
"Y": 14.513845,
|
||||
"Z": -365.25525
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007863,
|
||||
"Position": {
|
||||
"X": -131.70062,
|
||||
"Y": 17.982016,
|
||||
"Z": -278.8587
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,111 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_JOBBLM450_01076_Q1_000_1",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002433,
|
||||
"Position": {
|
||||
"X": 374.28845,
|
||||
"Y": 3.40271,
|
||||
"Z": 161.73035
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007866,
|
||||
"Position": {
|
||||
"X": 376.29065,
|
||||
"Y": 2.505473,
|
||||
"Z": 159.52626
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007867,
|
||||
"Position": {
|
||||
"X": 282.39868,
|
||||
"Y": 11.151184,
|
||||
"Z": -6.729248
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,172 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002434,
|
||||
"Position": {
|
||||
"X": -101.27417,
|
||||
"Y": 28.213867,
|
||||
"Z": 117.234985
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000812,
|
||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002435,
|
||||
"Position": {
|
||||
"X": -1.8158569,
|
||||
"Y": -11.703674,
|
||||
"Z": -37.79669
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000955,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002436,
|
||||
"Position": {
|
||||
"X": 68.680786,
|
||||
"Y": 55.832764,
|
||||
"Z": -503.95975
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000956,
|
||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002537,
|
||||
"Position": {
|
||||
"X": 220.87427,
|
||||
"Y": 5.5999756,
|
||||
"Z": -269.9779
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
1935,
|
||||
1936
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002437,
|
||||
"Position": {
|
||||
"X": 220.87427,
|
||||
"Y": 5.5999756,
|
||||
"Z": -269.9779
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000957
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,209 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006752,
|
||||
"Position": {
|
||||
"X": 87.5105,
|
||||
"Y": 18,
|
||||
"Z": 113.725464
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -173.17781,
|
||||
"Y": 18.28456,
|
||||
"Z": -280.36884
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Unlocked"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -180.27478,
|
||||
"Y": 3.2999475,
|
||||
"Z": -243.23695
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Unlocked"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -261.198,
|
||||
"Y": 18.43726,
|
||||
"Z": -104.834755
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Locked"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -428.2874,
|
||||
"Y": 5.952176,
|
||||
"Z": -21.0684
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -431.92166,
|
||||
"Y": 6.5580425,
|
||||
"Z": -17.561014
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Mount": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007872,
|
||||
"Position": {
|
||||
"X": -468.925,
|
||||
"Y": -3.1649342,
|
||||
"Z": 59.464355
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1007871,
|
||||
"Position": {
|
||||
"X": -464.46936,
|
||||
"Y": -3.1649272,
|
||||
"Z": 65.415405
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1007873,
|
||||
"Position": {
|
||||
"X": -458.70148,
|
||||
"Y": -3.164927,
|
||||
"Z": 63.370728
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006753,
|
||||
"Position": {
|
||||
"X": 325.063,
|
||||
"Y": 11.236564,
|
||||
"Z": -6.2105103
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -36,6 +36,27 @@
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 570.48596,
|
||||
"Y": 96.46625,
|
||||
"Z": -526.59546
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"TargetTerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"Fly": true,
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"AetheryteUnlocked": "Eastern La Noscea - Wineport"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2002366,
|
||||
"Position": {
|
||||
|
@ -0,0 +1,453 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002499,
|
||||
"Position": {
|
||||
"X": -319.17297,
|
||||
"Y": -36.636963,
|
||||
"Z": -278.73657
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "WaitForManualProgress",
|
||||
"Comment": "Craft/purchase off marketboard an erudite's picatrix of healing and meld 2 grade 3 quicktongue materia to it."
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TerritoryId": 154,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 74,
|
||||
"Comment": "Queue for A Relic Reborn: The Chimera"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001304,
|
||||
"Position": {
|
||||
"X": 25.589355,
|
||||
"Y": 29,
|
||||
"Z": -825.37573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 14,
|
||||
"Comment": "Queue for Amdapor Keep"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001304,
|
||||
"Position": {
|
||||
"X": 25.589355,
|
||||
"Y": 29,
|
||||
"Z": -825.37573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 2192,
|
||||
"TerritoryId": 138,
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 768,
|
||||
"Position": {
|
||||
"X": -317.9305,
|
||||
"Y": -39.35494,
|
||||
"Z": -298.3956
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [
|
||||
766,
|
||||
767,
|
||||
768
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 8
|
||||
},
|
||||
{
|
||||
"High": 8,
|
||||
"Low": 8
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 11,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 12,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 75,
|
||||
"Comment": "Queue for A Relic Reborn: The Hydra"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 13,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 14,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "EquipRecommended"
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 15,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 59
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 16,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 61
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 17,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 60
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 18,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008119,
|
||||
"Position": {
|
||||
"X": 62.333008,
|
||||
"Y": 31.28805,
|
||||
"Z": -739.98627
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "PurchaseItem",
|
||||
"ItemId": 6267,
|
||||
"ItemCount": 1,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": false
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -35,18 +35,6 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000465,
|
||||
"Position": {
|
||||
"X": 298.63428,
|
||||
"Y": 9.999997,
|
||||
"Z": 119.035645
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WaitForManualProgress",
|
||||
"Comment": "Manual Quest Progress (very combat heavy)",
|
||||
"$": "TODO Remove later"
|
||||
},
|
||||
{
|
||||
"DataId": 1000512,
|
||||
"Position": {
|
||||
@ -56,7 +44,6 @@
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact",
|
||||
"Disabled": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
@ -75,7 +62,6 @@
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact",
|
||||
"Disabled": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
@ -94,7 +80,6 @@
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact",
|
||||
"Disabled": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
@ -113,7 +98,6 @@
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact",
|
||||
"Disabled": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
@ -132,7 +116,6 @@
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact",
|
||||
"Disabled": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
|
@ -21,6 +21,26 @@
|
||||
"Sequence": 1,
|
||||
"Comment": "Very likely this needs manual combat and/or manual continues",
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 192.07129,
|
||||
"Y": -12.000001,
|
||||
"Z": 38.204
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 190.28528,
|
||||
"Y": -12,
|
||||
"Z": 77.53861
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": []
|
||||
},
|
||||
{
|
||||
"DataId": 2000141,
|
||||
"Position": {
|
||||
|
@ -24,6 +24,75 @@
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "EquipRecommended"
|
||||
},
|
||||
{
|
||||
"DataId": 1000396,
|
||||
"Position": {
|
||||
"X": 82.597046,
|
||||
"Y": -7.893894,
|
||||
"Z": -103.349365
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "PurchaseItem",
|
||||
"PurchaseMenu": {
|
||||
"ExcelSheet": "GilShop",
|
||||
"Key": 262186
|
||||
},
|
||||
"ItemId": 2653,
|
||||
"ItemCount": 1,
|
||||
"RequiredCurrentJob": [
|
||||
"DoW"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": false
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1000396,
|
||||
"Position": {
|
||||
"X": 82.597046,
|
||||
"Y": -7.893894,
|
||||
"Z": -103.349365
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "PurchaseItem",
|
||||
"PurchaseMenu": {
|
||||
"ExcelSheet": "GilShop",
|
||||
"Key": 262186
|
||||
},
|
||||
"ItemId": 2655,
|
||||
"ItemCount": 1,
|
||||
"RequiredCurrentJob": [
|
||||
"DoM"
|
||||
]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 2653,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 2655,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1000421,
|
||||
"Position": {
|
||||
|
@ -20,6 +20,17 @@
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 486.40424,
|
||||
"Y": 24.968294,
|
||||
"Z": -88.684456
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": []
|
||||
},
|
||||
{
|
||||
"DataId": 2000010,
|
||||
"Position": {
|
||||
|
@ -24,6 +24,75 @@
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "EquipRecommended"
|
||||
},
|
||||
{
|
||||
"DataId": 1003257,
|
||||
"Position": {
|
||||
"X": 201.70898,
|
||||
"Y": 98.422874,
|
||||
"Z": -206.10364
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "PurchaseItem",
|
||||
"PurchaseMenu": {
|
||||
"ExcelSheet": "GilShop",
|
||||
"Key": 262186
|
||||
},
|
||||
"ItemId": 2653,
|
||||
"ItemCount": 1,
|
||||
"RequiredCurrentJob": [
|
||||
"DoW"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": false
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003257,
|
||||
"Position": {
|
||||
"X": 201.70898,
|
||||
"Y": 98.422874,
|
||||
"Z": -206.10364
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "PurchaseItem",
|
||||
"PurchaseMenu": {
|
||||
"ExcelSheet": "GilShop",
|
||||
"Key": 262186
|
||||
},
|
||||
"ItemId": 2655,
|
||||
"ItemCount": 1,
|
||||
"RequiredCurrentJob": [
|
||||
"DoM"
|
||||
]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 2653,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 2655,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1002626,
|
||||
"Position": {
|
||||
|
@ -0,0 +1,37 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011030,
|
||||
"Position": {
|
||||
"X": 7.522644,
|
||||
"Y": -1.7667189E-06,
|
||||
"Z": -68.589294
|
||||
},
|
||||
"TerritoryId": 388,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010472,
|
||||
"Position": {
|
||||
"X": -53.26935,
|
||||
"Y": 0.3093315,
|
||||
"Z": 69.41321
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,190 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012132,
|
||||
"Position": {
|
||||
"X": 43.015137,
|
||||
"Y": 206.04718,
|
||||
"Z": 56.50415
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Idyllshire",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016802,
|
||||
"Position": {
|
||||
"X": 53.360718,
|
||||
"Y": -48.000004,
|
||||
"Z": -169.97028
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018232,
|
||||
"Position": {
|
||||
"X": 236.01123,
|
||||
"Y": -42.313934,
|
||||
"Z": 596.3989
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Churning Mists - Moghome",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017320,
|
||||
"Position": {
|
||||
"X": -342.15308,
|
||||
"Y": 59.03801,
|
||||
"Z": 315.14453
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Churning Mists - Zenith",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017170,
|
||||
"Position": {
|
||||
"X": -344.22827,
|
||||
"Y": 59.038006,
|
||||
"Z": 317.1587
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017173,
|
||||
"Position": {
|
||||
"X": -363.82086,
|
||||
"Y": 60.896187,
|
||||
"Z": 306.38586
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017173,
|
||||
"Position": {
|
||||
"X": -363.82086,
|
||||
"Y": 60.896187,
|
||||
"Z": 306.38586
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "rally"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017170,
|
||||
"Position": {
|
||||
"X": -344.22827,
|
||||
"Y": 59.038006,
|
||||
"Z": 317.1587
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007517,
|
||||
"Position": {
|
||||
"X": -332.6314,
|
||||
"Y": 59.067627,
|
||||
"Z": 298.39014
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018234,
|
||||
"Position": {
|
||||
"X": -635.85876,
|
||||
"Y": 82.249985,
|
||||
"Z": 142.96167
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017320,
|
||||
"Position": {
|
||||
"X": -342.15308,
|
||||
"Y": 59.03801,
|
||||
"Z": 315.14453
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2383
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,149 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017320,
|
||||
"Position": {
|
||||
"X": -342.15308,
|
||||
"Y": 59.03801,
|
||||
"Z": 315.14453
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "The Churning Mists - Zenith",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018242,
|
||||
"Position": {
|
||||
"X": -365.1942,
|
||||
"Y": 60.616608,
|
||||
"Z": 279.89612
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1018241,
|
||||
"Position": {
|
||||
"X": -421.40845,
|
||||
"Y": 60.89619,
|
||||
"Z": 272.755
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018239,
|
||||
"Position": {
|
||||
"X": -339.25385,
|
||||
"Y": 59.038,
|
||||
"Z": 317.03674
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011928,
|
||||
"Position": {
|
||||
"X": 73.19751,
|
||||
"Y": -49.19563,
|
||||
"Z": -139.05548
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018243,
|
||||
"Position": {
|
||||
"X": 35.99597,
|
||||
"Y": -130.7033,
|
||||
"Z": 543.3279
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 471.06836,
|
||||
"Y": -51.141403,
|
||||
"Z": 35.919243
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather",
|
||||
"Fly": true,
|
||||
"Land": true
|
||||
},
|
||||
{
|
||||
"DataId": 1011916,
|
||||
"Position": {
|
||||
"X": 470.02356,
|
||||
"Y": -49.89133,
|
||||
"Z": 20.370789
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011907,
|
||||
"Position": {
|
||||
"X": -288.8686,
|
||||
"Y": 127.06639,
|
||||
"Z": 13.199036
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2384
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,111 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018248,
|
||||
"Position": {
|
||||
"X": -287.34265,
|
||||
"Y": 126.77467,
|
||||
"Z": 3.3721924
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018249,
|
||||
"Position": {
|
||||
"X": -814.9691,
|
||||
"Y": -130.31683,
|
||||
"Z": -415.85413
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018251,
|
||||
"Position": {
|
||||
"X": 285.7556,
|
||||
"Y": -112.76572,
|
||||
"Z": 562.1881
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018251,
|
||||
"Position": {
|
||||
"X": 285.7556,
|
||||
"Y": -112.76572,
|
||||
"Z": 562.1881
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "mogdance"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018254,
|
||||
"Position": {
|
||||
"X": 383.93213,
|
||||
"Y": -125.28945,
|
||||
"Z": 734.4929
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018255,
|
||||
"Position": {
|
||||
"X": -793.7896,
|
||||
"Y": -133.26949,
|
||||
"Z": -412.6803
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2385
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,110 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018255,
|
||||
"Position": {
|
||||
"X": -793.7896,
|
||||
"Y": -133.26949,
|
||||
"Z": -412.6803
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018257,
|
||||
"Position": {
|
||||
"X": -664.36255,
|
||||
"Y": -176.4502,
|
||||
"Z": -570.3975
|
||||
},
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Azys Lla - Helix",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018260,
|
||||
"Position": {
|
||||
"X": -189.5628,
|
||||
"Y": -102.63812,
|
||||
"Z": 449.60706
|
||||
},
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007518,
|
||||
"Position": {
|
||||
"X": -697.01685,
|
||||
"Y": -37.82715,
|
||||
"Z": 431.2047
|
||||
},
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018261,
|
||||
"Position": {
|
||||
"X": 785.3054,
|
||||
"Y": -24.802603,
|
||||
"Z": -766.3539
|
||||
},
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016087,
|
||||
"Position": {
|
||||
"X": -796.7498,
|
||||
"Y": -133.2695,
|
||||
"Z": -410.6966
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,153 +1,198 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -544.89056,
|
||||
"Y": 61.602722,
|
||||
"Z": -373.9669
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006649,
|
||||
"Position": {
|
||||
"X": -539.0555,
|
||||
"Y": 64.22522,
|
||||
"Z": -377.0047
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "0 0 0 0 0 0 --> 1 0 0 0 0 16",
|
||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,16]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -505.35422,
|
||||
"Y": -28.166508,
|
||||
"Z": -528.1072
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006647,
|
||||
"Position": {
|
||||
"X": -504.78372,
|
||||
"Y": -26.68805,
|
||||
"Z": -530.93774
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "1 0 0 0 0 16 --> 2 0 0 0 0 80",
|
||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,64]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -478.25208,
|
||||
"Y": -31.101946,
|
||||
"Z": -663.0455
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006648,
|
||||
"Position": {
|
||||
"X": -477.40906,
|
||||
"Y": -28.885437,
|
||||
"Z": -668.32996
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "2 0 0 0 0 80 --> 3 0 0 0 0 112",
|
||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,32]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -102.45963,
|
||||
"Y": -1.2632592,
|
||||
"Z": -619.294
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006646,
|
||||
"Position": {
|
||||
"X": -96.20813,
|
||||
"Y": 0.32037354,
|
||||
"Z": -620.26404
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "3 0 0 0 0 112 --> 0 0 0 0 0 0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 401
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -544.89056,
|
||||
"Y": 61.602722,
|
||||
"Z": -373.9669
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006649,
|
||||
"Position": {
|
||||
"X": -539.0555,
|
||||
"Y": 64.22522,
|
||||
"Z": -377.0047
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "0 0 0 0 0 0 --> 1 0 0 0 0 16",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -505.35422,
|
||||
"Y": -28.166508,
|
||||
"Z": -528.1072
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006647,
|
||||
"Position": {
|
||||
"X": -504.78372,
|
||||
"Y": -26.68805,
|
||||
"Z": -530.93774
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "1 0 0 0 0 16 --> 2 0 0 0 0 80",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -478.25208,
|
||||
"Y": -31.101946,
|
||||
"Z": -663.0455
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006648,
|
||||
"Position": {
|
||||
"X": -477.40906,
|
||||
"Y": -28.885437,
|
||||
"Z": -668.32996
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "2 0 0 0 0 80 --> 3 0 0 0 0 112",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -102.45963,
|
||||
"Y": -1.2632592,
|
||||
"Z": -619.294
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006646,
|
||||
"Position": {
|
||||
"X": -96.20813,
|
||||
"Y": 0.32037354,
|
||||
"Z": -620.26404
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"StopDistance": 3,
|
||||
"$": "3 0 0 0 0 112 --> 0 0 0 0 0 0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,129 +1,119 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -797.36957,
|
||||
"Y": -130.0076,
|
||||
"Z": -404.2746
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006651,
|
||||
"Position": {
|
||||
"X": 664.3624,
|
||||
"Y": -30.86908,
|
||||
"Z": -137.0108
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006652,
|
||||
"Position": {
|
||||
"X": 847.2876,
|
||||
"Y": -50.58368,
|
||||
"Z": 7.2174683
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006653,
|
||||
"Position": {
|
||||
"X": 860.2273,
|
||||
"Y": -84.45868,
|
||||
"Z": 19.272095
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
],
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
5235
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006654,
|
||||
"Position": {
|
||||
"X": 642.63354,
|
||||
"Y": -92.57648,
|
||||
"Z": 63.035034
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
5235
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
||||
}
|
||||
]
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006651,
|
||||
"Position": {
|
||||
"X": 664.3624,
|
||||
"Y": -30.86908,
|
||||
"Z": -137.0108
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006652,
|
||||
"Position": {
|
||||
"X": 847.2876,
|
||||
"Y": -50.58368,
|
||||
"Z": 7.2174683
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006653,
|
||||
"Position": {
|
||||
"X": 860.2273,
|
||||
"Y": -84.45868,
|
||||
"Z": 19.272095
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
],
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
5235
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006654,
|
||||
"Position": {
|
||||
"X": 642.63354,
|
||||
"Y": -92.57648,
|
||||
"Z": 63.035034
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
5235
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,104 +1,128 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006655,
|
||||
"Position": {
|
||||
"X": -48.325317,
|
||||
"Y": 17.990356,
|
||||
"Z": -852.47577
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Fly": true,
|
||||
"Action": "Buffet (Sanuwa)"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006656,
|
||||
"Position": {
|
||||
"X": 95.23157,
|
||||
"Y": -11.886841,
|
||||
"Z": -817.6242
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Fly": true,
|
||||
"Action": "Buffet (Sanuwa)"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006657,
|
||||
"Position": {
|
||||
"X": 205.8899,
|
||||
"Y": -6.9123535,
|
||||
"Z": -785.70233
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Fly": true,
|
||||
"Action": "Buffet (Sanuwa)"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
||||
}
|
||||
]
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 401
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006655,
|
||||
"Position": {
|
||||
"X": -48.325317,
|
||||
"Y": 17.990356,
|
||||
"Z": -852.47577
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Fly": true,
|
||||
"Action": "Buffet (Sanuwa)"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006656,
|
||||
"Position": {
|
||||
"X": 95.23157,
|
||||
"Y": -11.886841,
|
||||
"Z": -817.6242
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Fly": true,
|
||||
"Action": "Buffet (Sanuwa)"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006657,
|
||||
"Position": {
|
||||
"X": 205.8899,
|
||||
"Y": -6.9123535,
|
||||
"Z": -785.70233
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Fly": true,
|
||||
"Action": "Buffet (Sanuwa)"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -0,0 +1,142 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 401
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016219,
|
||||
"Position": {
|
||||
"X": 14.389221,
|
||||
"Y": -111.05486,
|
||||
"Z": 413.71777
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016217,
|
||||
"Position": {
|
||||
"X": 97.48987,
|
||||
"Y": -86.45681,
|
||||
"Z": 466.57495
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016218,
|
||||
"Position": {
|
||||
"X": 137.95679,
|
||||
"Y": -87.380325,
|
||||
"Z": 434.62268
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -35,6 +35,30 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 401
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
@ -72,7 +96,14 @@
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,32]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016221,
|
||||
@ -85,7 +116,14 @@
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,64]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016220,
|
||||
|
@ -36,6 +36,30 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 401
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
|
@ -47,7 +47,15 @@
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5246],
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006689,
|
||||
@ -58,7 +66,15 @@
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006687,
|
||||
@ -69,7 +85,15 @@
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006688,
|
||||
@ -80,7 +104,15 @@
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -47,7 +47,15 @@
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001934,
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016232,
|
||||
@ -59,7 +67,15 @@
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001934,
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016233,
|
||||
@ -71,7 +87,15 @@
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001934,
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016374,
|
||||
@ -83,7 +107,15 @@
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001934,
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016231,
|
||||
@ -95,7 +127,15 @@
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001934,
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -46,7 +46,15 @@
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016235,
|
||||
@ -57,7 +65,15 @@
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016236,
|
||||
@ -68,7 +84,15 @@
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016216,
|
||||
@ -79,7 +103,15 @@
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -36,6 +36,30 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 401
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
|
@ -0,0 +1,36 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016087,
|
||||
"Position": {
|
||||
"X": -796.7498,
|
||||
"Y": -133.2695,
|
||||
"Z": -410.6966
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016088,
|
||||
"Position": {
|
||||
"X": -818.143,
|
||||
"Y": -129.93259,
|
||||
"Z": -414.02307
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -62,6 +62,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -70,8 +80,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -58,6 +58,16 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -66,8 +76,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -102,6 +111,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -110,8 +129,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -20,6 +20,30 @@
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 398
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1017031,
|
||||
"Position": {
|
||||
@ -98,6 +122,17 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -106,9 +141,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -62,6 +62,17 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -70,9 +81,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -91,6 +91,17 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -99,9 +110,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -91,6 +91,17 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -99,9 +110,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -73,6 +73,17 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -81,9 +92,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -58,6 +58,17 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -66,9 +77,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,114 +1,137 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017031,
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006915,
|
||||
"Position": {
|
||||
"X": 96.45227,
|
||||
"Y": -66.2395,
|
||||
"Z": 616.6017
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006916,
|
||||
"Position": {
|
||||
"X": -149.95044,
|
||||
"Y": -55.25299,
|
||||
"Z": 541.37476
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006917,
|
||||
"Position": {
|
||||
"X": -625.0859,
|
||||
"Y": -49.94281,
|
||||
"Z": 491.02002
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 59.511234,
|
||||
"Y": -48,
|
||||
"Z": -171.35385
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 398
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1017031,
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006915,
|
||||
"Position": {
|
||||
"X": 96.45227,
|
||||
"Y": -66.2395,
|
||||
"Z": 616.6017
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006916,
|
||||
"Position": {
|
||||
"X": -149.95044,
|
||||
"Y": -55.25299,
|
||||
"Z": 541.37476
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006917,
|
||||
"Position": {
|
||||
"X": -625.0859,
|
||||
"Y": -49.94281,
|
||||
"Z": 491.02002
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,173 +1,173 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 449.65012,
|
||||
"Y": -51.141403,
|
||||
"Z": 106.932205
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
||||
},
|
||||
{
|
||||
"DataId": 1011922,
|
||||
"Position": {
|
||||
"X": 448.56934,
|
||||
"Y": -51.141407,
|
||||
"Z": 108.93408
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006918,
|
||||
"Position": {
|
||||
"X": 475.69995,
|
||||
"Y": -44.174927,
|
||||
"Z": -231.46417
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001961,
|
||||
"KillEnemyDataIds": [
|
||||
71224
|
||||
],
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006920,
|
||||
"Position": {
|
||||
"X": 329.4879,
|
||||
"Y": -45.487183,
|
||||
"Z": -262.13477
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001961,
|
||||
"KillEnemyDataIds": [
|
||||
5548
|
||||
],
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006919,
|
||||
"Position": {
|
||||
"X": 535.45435,
|
||||
"Y": -32.39496,
|
||||
"Z": -410.60504
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001961,
|
||||
"KillEnemyDataIds": [
|
||||
71224
|
||||
],
|
||||
"Fly": true,
|
||||
"Land": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 449.65012,
|
||||
"Y": -51.141403,
|
||||
"Z": 106.932205
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
||||
},
|
||||
{
|
||||
"DataId": 1011922,
|
||||
"Position": {
|
||||
"X": 448.56934,
|
||||
"Y": -51.141407,
|
||||
"Z": 108.93408
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 59.511234,
|
||||
"Y": -48,
|
||||
"Z": -171.35385
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 449.65012,
|
||||
"Y": -51.141403,
|
||||
"Z": 106.932205
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
||||
},
|
||||
{
|
||||
"DataId": 1011922,
|
||||
"Position": {
|
||||
"X": 448.56934,
|
||||
"Y": -51.141407,
|
||||
"Z": 108.93408
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006918,
|
||||
"Position": {
|
||||
"X": 475.69995,
|
||||
"Y": -44.174927,
|
||||
"Z": -231.46417
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001961,
|
||||
"KillEnemyDataIds": [
|
||||
71224
|
||||
],
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006920,
|
||||
"Position": {
|
||||
"X": 329.4879,
|
||||
"Y": -45.487183,
|
||||
"Z": -262.13477
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001961,
|
||||
"KillEnemyDataIds": [
|
||||
5548
|
||||
],
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006919,
|
||||
"Position": {
|
||||
"X": 535.45435,
|
||||
"Y": -32.39496,
|
||||
"Z": -410.60504
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001961,
|
||||
"KillEnemyDataIds": [
|
||||
71224
|
||||
],
|
||||
"Fly": true,
|
||||
"Land": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 449.65012,
|
||||
"Y": -51.141403,
|
||||
"Z": 106.932205
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
||||
},
|
||||
{
|
||||
"DataId": 1011922,
|
||||
"Position": {
|
||||
"X": 448.56934,
|
||||
"Y": -51.141407,
|
||||
"Z": 108.93408
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -0,0 +1,124 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "AnimaMachinae",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016859,
|
||||
"Position": {
|
||||
"X": -566.6743,
|
||||
"Y": -97.34781,
|
||||
"Z": 481.01013
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006922,
|
||||
"Position": {
|
||||
"X": -481.0102,
|
||||
"Y": -93.18689,
|
||||
"Z": 474.69275
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016859,
|
||||
"Position": {
|
||||
"X": -566.6743,
|
||||
"Y": -97.34781,
|
||||
"Z": 481.01013
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006923,
|
||||
"Position": {
|
||||
"X": -477.59216,
|
||||
"Y": -93.003784,
|
||||
"Z": 475.18103
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016859,
|
||||
"Position": {
|
||||
"X": -566.6743,
|
||||
"Y": -97.34781,
|
||||
"Z": 481.01013
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -20,6 +20,30 @@
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 398
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1017031,
|
||||
"Position": {
|
||||
@ -60,7 +84,15 @@
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -71,13 +103,32 @@
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -86,9 +137,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -55,6 +55,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -63,8 +73,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -91,6 +91,17 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -99,9 +110,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -0,0 +1,125 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016865,
|
||||
"Position": {
|
||||
"X": -272.23627,
|
||||
"Y": -35.408485,
|
||||
"Z": 219.07373
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1016864,
|
||||
"Position": {
|
||||
"X": -452.32324,
|
||||
"Y": -35.352047,
|
||||
"Z": 174.30371
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016866,
|
||||
"Position": {
|
||||
"X": -397.05505,
|
||||
"Y": -34.192406,
|
||||
"Z": 243.12195
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
5551
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016866,
|
||||
"Position": {
|
||||
"X": -397.05505,
|
||||
"Y": -34.192406,
|
||||
"Z": 243.12195
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,151 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"StopDistance": 3,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"MaximumDistance": 50,
|
||||
"TerritoryId": 398
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1017031,
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006938,
|
||||
"Position": {
|
||||
"X": -178.88159,
|
||||
"Y": 179.88855,
|
||||
"Z": 4.257263
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006940,
|
||||
"Position": {
|
||||
"X": -311.8181,
|
||||
"Y": -29.495728,
|
||||
"Z": 143.63306
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006939,
|
||||
"Position": {
|
||||
"X": -313.80182,
|
||||
"Y": -29.495728,
|
||||
"Z": 102.098145
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -101,6 +101,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -109,8 +119,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -100,6 +100,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -108,8 +118,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -73,6 +73,17 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -81,9 +92,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -101,6 +101,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -109,8 +119,7 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -0,0 +1,69 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014873,
|
||||
"Position": {
|
||||
"X": 101.57922,
|
||||
"Y": 12.418198,
|
||||
"Z": -117.60132
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Tribunal"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
419
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014876,
|
||||
"Position": {
|
||||
"X": 5.783081,
|
||||
"Y": -2.080677,
|
||||
"Z": 45.395508
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Tribunal",
|
||||
"[Ishgard] The Brume"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014875,
|
||||
"Position": {
|
||||
"X": 6.9122925,
|
||||
"Y": -1.9210143,
|
||||
"Z": 47.287598
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 2054
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,154 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 10400,
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Brume"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
},
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "EquipRecommended"
|
||||
},
|
||||
{
|
||||
"DataId": 1014875,
|
||||
"Position": {
|
||||
"X": 6.9122925,
|
||||
"Y": -1.9210143,
|
||||
"Z": 47.287598
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014879,
|
||||
"Position": {
|
||||
"X": 134.05042,
|
||||
"Y": -20.020874,
|
||||
"Z": 73.746826
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014880,
|
||||
"Position": {
|
||||
"X": 136.98022,
|
||||
"Y": -20.020876,
|
||||
"Z": 69.840576
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 157.94511,
|
||||
"Y": -19.477406,
|
||||
"Z": 53.021667
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "WalkTo",
|
||||
"TargetTerritoryId": 419
|
||||
},
|
||||
{
|
||||
"DataId": 1014882,
|
||||
"Position": {
|
||||
"X": 244.09851,
|
||||
"Y": -13.7349415,
|
||||
"Z": -95.50629
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014883,
|
||||
"Position": {
|
||||
"X": 151.6289,
|
||||
"Y": -9.190302,
|
||||
"Z": -64.9577
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014888,
|
||||
"Position": {
|
||||
"X": 40.390625,
|
||||
"Y": 16.080097,
|
||||
"Z": -85.9541
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014889,
|
||||
"Position": {
|
||||
"X": 43.381348,
|
||||
"Y": 16.080097,
|
||||
"Z": -86.045654
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK301_02054_Q1_000_115",
|
||||
"Answer": "TEXT_JOBDRK301_02054_A1_000_116"
|
||||
}
|
||||
],
|
||||
"NextQuestId": 2055
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,198 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014890,
|
||||
"Position": {
|
||||
"X": 6.9122925,
|
||||
"Y": -1.9210143,
|
||||
"Z": 47.287598
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Brume"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK350_02055_Q1_000_002",
|
||||
"Answer": "TEXT_JOBDRK350_02055_A1_000_003"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014891,
|
||||
"Position": {
|
||||
"X": -173.17468,
|
||||
"Y": 27.899424,
|
||||
"Z": -397.69592
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006215,
|
||||
"Position": {
|
||||
"X": -227.34424,
|
||||
"Y": 26.16842,
|
||||
"Z": -352.98694
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -258.55716,
|
||||
"Y": 26.612217,
|
||||
"Z": -320.62222
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -257.8064,
|
||||
"Y": 14.002786,
|
||||
"Z": -105.36169
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1014892,
|
||||
"Position": {
|
||||
"X": -415.03015,
|
||||
"Y": 3.695741,
|
||||
"Z": -42.343872
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006291,
|
||||
"Position": {
|
||||
"X": -389.12036,
|
||||
"Y": 3.4332886,
|
||||
"Z": -57.572388
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001812
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006293,
|
||||
"Position": {
|
||||
"X": -384.9088,
|
||||
"Y": 6.088318,
|
||||
"Z": -45.212524
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
4693
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014892,
|
||||
"Position": {
|
||||
"X": -415.03015,
|
||||
"Y": 3.695741,
|
||||
"Z": -42.343872
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -257.8064,
|
||||
"Y": 14.002786,
|
||||
"Z": -105.36169
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1014893,
|
||||
"Position": {
|
||||
"X": -215.7168,
|
||||
"Y": 16.844267,
|
||||
"Z": -270.6493
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014893,
|
||||
"Position": {
|
||||
"X": -215.7168,
|
||||
"Y": 16.844267,
|
||||
"Z": -270.6493
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 2056
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,186 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014890,
|
||||
"Position": {
|
||||
"X": 6.9122925,
|
||||
"Y": -1.9210143,
|
||||
"Z": 47.287598
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Brume"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014894,
|
||||
"Position": {
|
||||
"X": 329.57947,
|
||||
"Y": -11.1054125,
|
||||
"Z": 157.64087
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006295,
|
||||
"Position": {
|
||||
"X": 298.6648,
|
||||
"Y": -11.7647705,
|
||||
"Z": 159.96033
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
4694,
|
||||
4695
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014894,
|
||||
"Position": {
|
||||
"X": 329.57947,
|
||||
"Y": -11.1054125,
|
||||
"Z": 157.64087
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014895,
|
||||
"Position": {
|
||||
"X": -367.14734,
|
||||
"Y": -55.99894,
|
||||
"Z": 107.10303
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK400_02056_Q1_000_056",
|
||||
"Answer": "TEXT_JOBDRK400_02056_A2_000_058"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014896,
|
||||
"Position": {
|
||||
"X": -200.30524,
|
||||
"Y": -28.35069,
|
||||
"Z": 324.75757
|
||||
},
|
||||
"StopDistance": 2,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015329,
|
||||
"Position": {
|
||||
"X": -177.05048,
|
||||
"Y": -31.365185,
|
||||
"Z": 310.68884
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003929,
|
||||
"Position": {
|
||||
"X": -378.65265,
|
||||
"Y": -55.75492,
|
||||
"Z": 106.79785
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014895,
|
||||
"Position": {
|
||||
"X": -367.14734,
|
||||
"Y": -55.99894,
|
||||
"Z": 107.10303
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014895,
|
||||
"Position": {
|
||||
"X": -367.14734,
|
||||
"Y": -55.99894,
|
||||
"Z": 107.10303
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 2057
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,144 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014890,
|
||||
"Position": {
|
||||
"X": 6.9122925,
|
||||
"Y": -1.9210143,
|
||||
"Z": 47.287598
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Brume"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014897,
|
||||
"Position": {
|
||||
"X": 168.74951,
|
||||
"Y": 8.973653,
|
||||
"Z": 583.85596
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK450_02057_Q1_000_025",
|
||||
"Answer": "TEXT_JOBDRK450_02057_A1_000_027"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014899,
|
||||
"Position": {
|
||||
"X": -97.76465,
|
||||
"Y": 2.9821281,
|
||||
"Z": 713.06934
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014900,
|
||||
"Position": {
|
||||
"X": -110.88739,
|
||||
"Y": 9.73618,
|
||||
"Z": 672.7245
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014898,
|
||||
"Position": {
|
||||
"X": 162.005,
|
||||
"Y": 8.973654,
|
||||
"Z": 583.82544
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014901,
|
||||
"Position": {
|
||||
"X": 235.67554,
|
||||
"Y": 8,
|
||||
"Z": 698.20703
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK450_02057_Q2_000_111",
|
||||
"Answer": "TEXT_JOBDRK450_02057_A2_000_114"
|
||||
}
|
||||
],
|
||||
"$": "Position is raised slightly, because Y(7.9999986) < 8 is under the floor"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014901,
|
||||
"Position": {
|
||||
"X": 235.67554,
|
||||
"Y": 8,
|
||||
"Z": 698.20703
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 2058
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,138 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014890,
|
||||
"Position": {
|
||||
"X": 6.9122925,
|
||||
"Y": -1.9210143,
|
||||
"Z": 47.287598
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Brume"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006305,
|
||||
"Position": {
|
||||
"X": -94.95697,
|
||||
"Y": 298.63428,
|
||||
"Z": -212.66504
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Say",
|
||||
"ChatMessage": {
|
||||
"Key": "TEXT_JOBDRK500_02058_SAY_000_000"
|
||||
},
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Brume",
|
||||
"[Ishgard] The Gates of Judgement (Coerthas Central Highlands)"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015328,
|
||||
"Position": {
|
||||
"X": -313.5271,
|
||||
"Y": 244.50482,
|
||||
"Z": 33.310425
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006306,
|
||||
"Position": {
|
||||
"X": -405.53906,
|
||||
"Y": 274.70813,
|
||||
"Z": 79.087524
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
4678,
|
||||
4679,
|
||||
4696
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014906,
|
||||
"Position": {
|
||||
"X": -313.5271,
|
||||
"Y": 244.50482,
|
||||
"Z": 33.310425
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014907,
|
||||
"Position": {
|
||||
"X": -314.6258,
|
||||
"Y": 244.62024,
|
||||
"Z": 32.272827
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014908,
|
||||
"Position": {
|
||||
"X": -431.26575,
|
||||
"Y": 210.99998,
|
||||
"Z": -251.20929
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,85 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014909,
|
||||
"Position": {
|
||||
"X": -427.1153,
|
||||
"Y": 211,
|
||||
"Z": -267.26184
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015030,
|
||||
"Position": {
|
||||
"X": -824.979,
|
||||
"Y": 243.96797,
|
||||
"Z": -215.86938
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
4377,
|
||||
4378
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015030,
|
||||
"Position": {
|
||||
"X": -824.979,
|
||||
"Y": 243.96797,
|
||||
"Z": -215.86938
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"NextQuestId": 2060
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,177 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013970,
|
||||
"Position": {
|
||||
"X": 103.4104,
|
||||
"Y": 15.00001,
|
||||
"Z": 41.306152
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK520_02060_Q1_000_041",
|
||||
"Answer": "TEXT_JOBDRK520_02060_A1_000_045"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015034,
|
||||
"Position": {
|
||||
"X": -634.69904,
|
||||
"Y": -119.471756,
|
||||
"Z": 476.24915
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -528.29944,
|
||||
"Y": -165.42699,
|
||||
"Z": 578.5855
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 4812,
|
||||
"MinimumKillCount": 3,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
{
|
||||
"High": 3
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015033,
|
||||
"Position": {
|
||||
"X": 571.8928,
|
||||
"Y": -113.998665,
|
||||
"Z": 326.74133
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006342,
|
||||
"Position": {
|
||||
"X": 533.53174,
|
||||
"Y": -100.14502,
|
||||
"Z": 367.54407
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
4619,
|
||||
5044,
|
||||
5045
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015036,
|
||||
"Position": {
|
||||
"X": 571.43494,
|
||||
"Y": -113.94505,
|
||||
"Z": 331.41064
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"NextQuestId": 2061
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,166 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015038,
|
||||
"Position": {
|
||||
"X": 210.49817,
|
||||
"Y": 302.2458,
|
||||
"Z": -166.888
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015039,
|
||||
"Position": {
|
||||
"X": 209.43005,
|
||||
"Y": 302.2567,
|
||||
"Z": -166.888
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015040,
|
||||
"Position": {
|
||||
"X": 221.94238,
|
||||
"Y": 222.00142,
|
||||
"Z": 320.9734
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000692,
|
||||
"Position": {
|
||||
"X": -258.8083,
|
||||
"Y": -5.7735243,
|
||||
"Z": -27.267883
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015043,
|
||||
"Position": {
|
||||
"X": 29.67871,
|
||||
"Y": -7.8,
|
||||
"Z": 89.61609
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015432,
|
||||
"Position": {
|
||||
"X": 29.67871,
|
||||
"Y": -7.8,
|
||||
"Z": 89.61609
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015066,
|
||||
"Position": {
|
||||
"X": 47.440186,
|
||||
"Y": -8.046949,
|
||||
"Z": 110.73462
|
||||
},
|
||||
"StopDistance": 6,
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"NextQuestId": 2062
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,160 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011935,
|
||||
"Position": {
|
||||
"X": -285.63367,
|
||||
"Y": 39.04305,
|
||||
"Z": 53.72693
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015044,
|
||||
"Position": {
|
||||
"X": -282.1546,
|
||||
"Y": 39.043068,
|
||||
"Z": 46.036377
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006344,
|
||||
"Position": {
|
||||
"X": -557.8241,
|
||||
"Y": -92.24078,
|
||||
"Z": 595.1781
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
4685
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 3
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006344,
|
||||
"Position": {
|
||||
"X": -557.8241,
|
||||
"Y": -92.24078,
|
||||
"Z": 595.1781
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011935,
|
||||
"Position": {
|
||||
"X": -285.63367,
|
||||
"Y": 39.04305,
|
||||
"Z": 53.72693
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015046,
|
||||
"Position": {
|
||||
"X": -460.01373,
|
||||
"Y": -9.639711,
|
||||
"Z": -294.78906
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"NextQuestId": 2063
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,216 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012076,
|
||||
"Position": {
|
||||
"X": 254.13892,
|
||||
"Y": -43.160442,
|
||||
"Z": 626.3981
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Churning Mists - Moghome"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006346,
|
||||
"Position": {
|
||||
"X": 429.9839,
|
||||
"Y": -10.11676,
|
||||
"Z": 708.1864
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006347,
|
||||
"Position": {
|
||||
"X": 346.48657,
|
||||
"Y": 0.25933838,
|
||||
"Z": 565.6061
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006348,
|
||||
"Position": {
|
||||
"X": 312.1842,
|
||||
"Y": 17.868286,
|
||||
"Z": 718.8982
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006349,
|
||||
"Position": {
|
||||
"X": 204.76074,
|
||||
"Y": 4.7455444,
|
||||
"Z": 736.3545
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012076,
|
||||
"Position": {
|
||||
"X": 254.13892,
|
||||
"Y": -43.160442,
|
||||
"Z": 626.3981
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Churning Mists - Moghome"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006350,
|
||||
"Position": {
|
||||
"X": 173.84595,
|
||||
"Y": -22.14087,
|
||||
"Z": 160.7843
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
4675
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015049,
|
||||
"Position": {
|
||||
"X": -158.80066,
|
||||
"Y": -23.017008,
|
||||
"Z": 282.12402
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015050,
|
||||
"Position": {
|
||||
"X": -158.1903,
|
||||
"Y": -22.967546,
|
||||
"Z": 275.83728
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"NextQuestId": 2064
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013970,
|
||||
"Position": {
|
||||
"X": 103.4104,
|
||||
"Y": 15.00001,
|
||||
"Z": 41.306152
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1015052,
|
||||
"Position": {
|
||||
"X": -347.5243,
|
||||
"Y": 91.63155,
|
||||
"Z": -558.8312
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK600_02064_Q1_000_153",
|
||||
"Answer": "TEXT_JOBDRK600_02064_A1_000_154"
|
||||
}
|
||||
],
|
||||
"NextQuestId": 2915
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1014873,
|
||||
"Position": {
|
||||
"X": 101.57922,
|
||||
"Y": 12.418198,
|
||||
"Z": -117.60132
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Tribunal"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
419
|
||||
]
|
||||
}
|
||||
},
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_JOBDRK299_02110_Q1_000_005",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -93,6 +93,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 379.64865,
|
||||
"Y": -69.42944,
|
||||
"Z": 695.1956
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Moglin"
|
||||
},
|
||||
{
|
||||
"DataId": 1012077,
|
||||
"Position": {
|
||||
|
@ -5,6 +5,16 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 379.64865,
|
||||
"Y": -69.42944,
|
||||
"Z": 695.1956
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Moglin"
|
||||
},
|
||||
{
|
||||
"DataId": 1012077,
|
||||
"Position": {
|
||||
@ -131,6 +141,16 @@
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 379.64865,
|
||||
"Y": -69.42944,
|
||||
"Z": 695.1956
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Moglin"
|
||||
},
|
||||
{
|
||||
"DataId": 1012077,
|
||||
"Position": {
|
||||
|
@ -75,12 +75,13 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 380.00024,
|
||||
"Y": -69.42949,
|
||||
"Z": 694.65753
|
||||
"X": 379.64865,
|
||||
"Y": -69.42944,
|
||||
"Z": 695.1956
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Moglin",
|
||||
"AetheryteShortcut": "The Churning Mists - Moghome"
|
||||
},
|
||||
{
|
||||
|
@ -0,0 +1,216 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011217,
|
||||
"Position": {
|
||||
"X": 17.990356,
|
||||
"Y": 16.009666,
|
||||
"Z": -9.567444
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 433,
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Last Vigil"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
419,
|
||||
433
|
||||
]
|
||||
},
|
||||
"StepIf": {
|
||||
"InTerritory": [433]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1012337,
|
||||
"Position": {
|
||||
"X": -5.874817,
|
||||
"Y": -9.313226E-10,
|
||||
"Z": -5.783203
|
||||
},
|
||||
"TerritoryId": 433,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005334,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 1.1443481,
|
||||
"Z": 13.199036
|
||||
},
|
||||
"TerritoryId": 433,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 419,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"InTerritory": [419]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1012180,
|
||||
"Position": {
|
||||
"X": -174.18176,
|
||||
"Y": -12.555469,
|
||||
"Z": -21.561035
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Last Vigil",
|
||||
"[Ishgard] The Jeweled Crozier"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011192,
|
||||
"Position": {
|
||||
"X": 88.36499,
|
||||
"Y": 15.094684,
|
||||
"Z": 31.296265
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Jeweled Crozier",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011952,
|
||||
"Position": {
|
||||
"X": -277.63788,
|
||||
"Y": -184.59735,
|
||||
"Z": 741.60376
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011231,
|
||||
"Position": {
|
||||
"X": 503.1051,
|
||||
"Y": 217.95148,
|
||||
"Z": 790.2189
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007017,
|
||||
"Position": {
|
||||
"X": 120.62256,
|
||||
"Y": 14.938599,
|
||||
"Z": -156.6034
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Tribunal"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007018,
|
||||
"Position": {
|
||||
"X": 23.025818,
|
||||
"Y": 27.939209,
|
||||
"Z": -145.73895
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001029,
|
||||
"Position": {
|
||||
"X": 9.170593,
|
||||
"Y": 20.999403,
|
||||
"Z": -15.213318
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"TargetTerritoryId": 198
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 25.714342,
|
||||
"Y": 50.98988,
|
||||
"Z": -779.1884
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016809,
|
||||
"Position": {
|
||||
"X": 29.861816,
|
||||
"Y": 50.99997,
|
||||
"Z": -818.2651
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1476
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,162 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016809,
|
||||
"Position": {
|
||||
"X": 29.861816,
|
||||
"Y": 50.99997,
|
||||
"Z": -818.2651
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -119.1183,
|
||||
"Y": 3.7999938,
|
||||
"Z": -104.33473
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"$": "Ul'dah Aetheryte to Immortal Flames"
|
||||
},
|
||||
{
|
||||
"DataId": 1004576,
|
||||
"Position": {
|
||||
"X": -141.64954,
|
||||
"Y": 4.1,
|
||||
"Z": -114.67157
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012345,
|
||||
"Position": {
|
||||
"X": 460.16626,
|
||||
"Y": 162.5073,
|
||||
"Z": -527.0314
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 454.75964,
|
||||
"Y": 164.27075,
|
||||
"Z": -535.00354
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Gorgagne Mills (outside)",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 454.9128,
|
||||
"Y": 164.30827,
|
||||
"Z": -542.1735
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Gorgagne Mills (inside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1017119,
|
||||
"Position": {
|
||||
"X": 450.7362,
|
||||
"Y": 157.40831,
|
||||
"Z": -545.0675
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 454.9128,
|
||||
"Y": 164.30827,
|
||||
"Z": -542.1735
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Gorgagne Mills (inside)",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 454.75964,
|
||||
"Y": 164.27075,
|
||||
"Z": -535.00354
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Gorgagne Mills (outside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1011907,
|
||||
"Position": {
|
||||
"X": -288.8686,
|
||||
"Y": 127.06639,
|
||||
"Z": 13.199036
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011916,
|
||||
"Position": {
|
||||
"X": 470.02356,
|
||||
"Y": -49.89133,
|
||||
"Z": 20.370789
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather",
|
||||
"NextQuestId": 1477
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,150 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011916,
|
||||
"Position": {
|
||||
"X": 470.02356,
|
||||
"Y": -49.89133,
|
||||
"Z": 20.370789
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 470.88556,
|
||||
"Y": -51.141403,
|
||||
"Z": 36.143986
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1011928,
|
||||
"Position": {
|
||||
"X": 73.19751,
|
||||
"Y": -49.19563,
|
||||
"Z": -139.05548
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011935,
|
||||
"Position": {
|
||||
"X": -285.63367,
|
||||
"Y": 39.04305,
|
||||
"Z": 53.72693
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 379.64865,
|
||||
"Y": -69.42944,
|
||||
"Z": 695.1956
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"$": "Moglin"
|
||||
},
|
||||
{
|
||||
"DataId": 1012077,
|
||||
"Position": {
|
||||
"X": 381.70435,
|
||||
"Y": -66.84979,
|
||||
"Z": 700.86194
|
||||
},
|
||||
"StopDistance": 8,
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"IgnoreDistanceToObject": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007019,
|
||||
"Position": {
|
||||
"X": -261.03613,
|
||||
"Y": 30.350098,
|
||||
"Z": 559.0447
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007020,
|
||||
"Position": {
|
||||
"X": -6.2714844,
|
||||
"Y": 30.014404,
|
||||
"Z": 23.453125
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017123,
|
||||
"Position": {
|
||||
"X": 12.924377,
|
||||
"Y": 33.999996,
|
||||
"Z": -39.32251
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1478
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,147 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017123,
|
||||
"Position": {
|
||||
"X": 12.924377,
|
||||
"Y": 33.999996,
|
||||
"Z": -39.32251
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017118,
|
||||
"Position": {
|
||||
"X": 34.37854,
|
||||
"Y": 20.495003,
|
||||
"Z": -652.1554
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007061,
|
||||
"Position": {
|
||||
"X": -158.22083,
|
||||
"Y": 17.04425,
|
||||
"Z": -55.13086
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] Skysteel Manufactory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007062,
|
||||
"Position": {
|
||||
"X": 570.1532,
|
||||
"Y": -1.2055054,
|
||||
"Z": -369.95502
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Churning Mists - Moghome",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012251,
|
||||
"Position": {
|
||||
"X": 12.313965,
|
||||
"Y": -12.020877,
|
||||
"Z": 40.268433
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Brume"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012065,
|
||||
"Position": {
|
||||
"X": -594.62885,
|
||||
"Y": -51.05185,
|
||||
"Z": -389.79175
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006756,
|
||||
"Position": {
|
||||
"X": -16.891846,
|
||||
"Y": 10.17425,
|
||||
"Z": -246.87573
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Mih Khetto's Amphitheatre"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012097,
|
||||
"Position": {
|
||||
"X": 73.3501,
|
||||
"Y": 205.88956,
|
||||
"Z": 23.483582
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Idyllshire",
|
||||
"NextQuestId": 1479
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,143 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012097,
|
||||
"Position": {
|
||||
"X": 73.3501,
|
||||
"Y": 205.88956,
|
||||
"Z": 23.483582
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005336,
|
||||
"Position": {
|
||||
"X": -488.79227,
|
||||
"Y": 138.93335,
|
||||
"Z": 741.0543
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Idyllshire] Aetheryte Plaza",
|
||||
"[Idyllshire] Prologue Gate (Western Hinterlands)"
|
||||
],
|
||||
"Fly": true,
|
||||
"TargetTerritoryId": 463
|
||||
},
|
||||
{
|
||||
"DataId": 1012138,
|
||||
"Position": {
|
||||
"X": 19.272095,
|
||||
"Y": 38.43,
|
||||
"Z": 15.854065
|
||||
},
|
||||
"TerritoryId": 463,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007063,
|
||||
"Position": {
|
||||
"X": -867.3381,
|
||||
"Y": -184.31378,
|
||||
"Z": -661.0056
|
||||
},
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Azys Lla - Helix",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007068,
|
||||
"Position": {
|
||||
"X": -916.7773,
|
||||
"Y": -184.31378,
|
||||
"Z": -678.645
|
||||
},
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007064,
|
||||
"Position": {
|
||||
"X": -696.0708,
|
||||
"Y": -37.094727,
|
||||
"Z": 432.33386
|
||||
},
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007065,
|
||||
"Position": {
|
||||
"X": -64.2558,
|
||||
"Y": 271.229,
|
||||
"Z": -4.2268066
|
||||
},
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 174.36705,
|
||||
"Y": 393.17496,
|
||||
"Z": -569.3414
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2007066,
|
||||
"Position": {
|
||||
"X": 50.339478,
|
||||
"Y": 374.47156,
|
||||
"Z": -676.5088
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -22,9 +22,9 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 291.9449,
|
||||
"Y": -62.62814,
|
||||
"Z": -214.1033
|
||||
"X": 318.06195,
|
||||
"Y": -83.027016,
|
||||
"Z": -226.5931
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
@ -153,16 +153,6 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 804.21405,
|
||||
"Y": 1.4000988,
|
||||
"Z": 720.92487
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1024460,
|
||||
"Position": {
|
||||
@ -172,6 +162,11 @@
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kugane",
|
||||
"AethernetShortcut": [
|
||||
"[Kugane] Aetheryte Plaza",
|
||||
"[Kugane] The Ruby Price"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
@ -187,8 +182,8 @@
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1024217,
|
||||
|
@ -28,6 +28,7 @@
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"RestartNavigationIfCancelled": false,
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
@ -38,6 +39,7 @@
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"RestartNavigationIfCancelled": false,
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
@ -58,9 +60,9 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 368.39856,
|
||||
"Y": -116.624695,
|
||||
"Z": -291.34058
|
||||
"X": 367.17773,
|
||||
"Y": -119.94679,
|
||||
"Z": -292.3781
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "UseItem",
|
||||
|
@ -0,0 +1,180 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Kugane",
|
||||
"AethernetShortcut": [
|
||||
"[Kugane] Aetheryte Plaza",
|
||||
"[Kugane] The Ruby Price"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2009100,
|
||||
"Position": {
|
||||
"X": 394.7661,
|
||||
"Y": 16.983276,
|
||||
"Z": 845.9448
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2002419,
|
||||
"KillEnemyDataIds": [8242],
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[48, 80, 112, 128],
|
||||
null
|
||||
],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009101,
|
||||
"Position": {
|
||||
"X": 460.99023,
|
||||
"Y": 0.56451416,
|
||||
"Z": 889.494
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2002419,
|
||||
"KillEnemyDataIds": [8242],
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[16, 32, 128],
|
||||
null
|
||||
],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009142,
|
||||
"Position": {
|
||||
"X": 480.4607,
|
||||
"Y": 3.829956,
|
||||
"Z": 841.3672
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2002419,
|
||||
"KillEnemyDataIds": [8242],
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[16, 64, 80, 96],
|
||||
null
|
||||
],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009140,
|
||||
"Position": {
|
||||
"X": 543.1753,
|
||||
"Y": -0.015319824,
|
||||
"Z": 685.7251
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2002419,
|
||||
"KillEnemyDataIds": [8243, 8243],
|
||||
"RequiredQuestVariables": [null, null, null, null, [96, 112], null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009141,
|
||||
"Position": {
|
||||
"X": 352.1018,
|
||||
"Y": -0.015319824,
|
||||
"Z": 860.31885
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2002419,
|
||||
"KillEnemyDataIds": [8243, 8243],
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[32, 48, 64],
|
||||
null
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024317,
|
||||
"Position": {
|
||||
"X": 823.3004,
|
||||
"Y": 5.9230013,
|
||||
"Z": 866.6361
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 392.59683,
|
||||
"Y": -119.589325,
|
||||
"Z": -234.30063
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
0 0 0 0 xxx 0 | 2009100 2009101 2009140 2009141 2009142
|
||||
16 x x
|
||||
32 x x
|
||||
48 x x
|
||||
64 x x
|
||||
80 x x
|
||||
96 x x
|
||||
112 x x
|
||||
128 x x
|
||||
|
@ -0,0 +1,192 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK601_02915_Q0_000_004",
|
||||
"Answer": "TEXT_JOBDRK601_02915_A0_000_005"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008659,
|
||||
"Position": {
|
||||
"X": 2.5177002,
|
||||
"Y": 11.947815,
|
||||
"Z": 37.00305
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Forgotten Knight",
|
||||
"[Ishgard] The Last Vigil"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022855,
|
||||
"Position": {
|
||||
"X": 75.394775,
|
||||
"Y": 24.071722,
|
||||
"Z": -13.595825
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Last Vigil",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022859,
|
||||
"Position": {
|
||||
"X": 3.6774292,
|
||||
"Y": 5.46805,
|
||||
"Z": 26.596436
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022855,
|
||||
"Position": {
|
||||
"X": 75.394775,
|
||||
"Y": 24.071722,
|
||||
"Z": -13.595825
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008660,
|
||||
"Position": {
|
||||
"X": 31.906494,
|
||||
"Y": 15.945618,
|
||||
"Z": -65.07977
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Forgotten Knight",
|
||||
"[Ishgard] The Tribunal"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022862,
|
||||
"Position": {
|
||||
"X": 482.29187,
|
||||
"Y": 203.4332,
|
||||
"Z": 683.25305
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022863,
|
||||
"Position": {
|
||||
"X": 384.2068,
|
||||
"Y": 170.07738,
|
||||
"Z": 419.7909
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008661,
|
||||
"Position": {
|
||||
"X": 380.02588,
|
||||
"Y": 169.78711,
|
||||
"Z": 416.5559
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Souleater"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022866,
|
||||
"Position": {
|
||||
"X": 482.07825,
|
||||
"Y": 203.4332,
|
||||
"Z": 680.7506
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2916
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,144 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022866,
|
||||
"Position": {
|
||||
"X": 482.07825,
|
||||
"Y": 203.4332,
|
||||
"Z": 680.7506
|
||||
},
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022870,
|
||||
"Position": {
|
||||
"X": 464.53027,
|
||||
"Y": -51.1414,
|
||||
"Z": 44.47998
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008662,
|
||||
"Position": {
|
||||
"X": 436.94202,
|
||||
"Y": -51.163513,
|
||||
"Z": 98.68005
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022879,
|
||||
"Position": {
|
||||
"X": 503.4713,
|
||||
"Y": -45.078712,
|
||||
"Z": -116.92993
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
7489,
|
||||
7490
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022880,
|
||||
"Position": {
|
||||
"X": 612.8175,
|
||||
"Y": -26.250998,
|
||||
"Z": -436.45386
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008663,
|
||||
"Position": {
|
||||
"X": 622.8275,
|
||||
"Y": -25.467346,
|
||||
"Z": -446.43323
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Souleater"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1023414,
|
||||
"Position": {
|
||||
"X": 617.8529,
|
||||
"Y": -25.577927,
|
||||
"Z": -446.61633
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022885,
|
||||
"Position": {
|
||||
"X": 461.41748,
|
||||
"Y": -51.141403,
|
||||
"Z": 43.4729
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2917
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,166 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022885,
|
||||
"Position": {
|
||||
"X": 461.41748,
|
||||
"Y": -51.141403,
|
||||
"Z": 43.4729
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022888,
|
||||
"Position": {
|
||||
"X": 252.58252,
|
||||
"Y": -43.12347,
|
||||
"Z": 627.06946
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Churning Mists - Moghome"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022891,
|
||||
"Position": {
|
||||
"X": 154.25342,
|
||||
"Y": -64.449585,
|
||||
"Z": 678.06506
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBDRK650_02917_Q1_000_052",
|
||||
"Answer": "TEXT_JOBDRK650_02917_A1_000_053"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022888,
|
||||
"Position": {
|
||||
"X": 252.58252,
|
||||
"Y": -43.12347,
|
||||
"Z": 627.06946
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022893,
|
||||
"Position": {
|
||||
"X": 418.53967,
|
||||
"Y": -28.947046,
|
||||
"Z": 89.25
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022897,
|
||||
"Position": {
|
||||
"X": -166.24707,
|
||||
"Y": -22.88001,
|
||||
"Z": 289.38733
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008665,
|
||||
"Position": {
|
||||
"X": -160.02142,
|
||||
"Y": -22.995422,
|
||||
"Z": 283.6194
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Souleater"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022900,
|
||||
"Position": {
|
||||
"X": -164.5686,
|
||||
"Y": -22.88756,
|
||||
"Z": 285.7556
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022953,
|
||||
"Position": {
|
||||
"X": 253.0708,
|
||||
"Y": -43.136364,
|
||||
"Z": 626.88635
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Churning Mists - Moghome"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,225 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022892,
|
||||
"Position": {
|
||||
"X": 252.64355,
|
||||
"Y": -43.032913,
|
||||
"Z": 625.0857
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "The Churning Mists - Moghome",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022890,
|
||||
"Position": {
|
||||
"X": -620.5692,
|
||||
"Y": 130,
|
||||
"Z": -527.5807
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Fringes - Castrum Oriens"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -284.4574,
|
||||
"Y": 73.94617,
|
||||
"Z": -692.77094
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1022902,
|
||||
"Position": {
|
||||
"X": -359.51782,
|
||||
"Y": 63.3675,
|
||||
"Z": -727.93164
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022904,
|
||||
"Position": {
|
||||
"X": -276.75293,
|
||||
"Y": 74.50722,
|
||||
"Z": -695.8572
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 25.767,
|
||||
"Y": 54.715424,
|
||||
"Z": -532.3533
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
7491
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 2
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1022905,
|
||||
"Position": {
|
||||
"X": 25.101074,
|
||||
"Y": 54.83547,
|
||||
"Z": -533.04346
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022908,
|
||||
"Position": {
|
||||
"X": 182.8794,
|
||||
"Y": 54.52025,
|
||||
"Z": -491.56943
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022910,
|
||||
"Position": {
|
||||
"X": 301.31982,
|
||||
"Y": 56.419365,
|
||||
"Z": -470.08472
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022911,
|
||||
"Position": {
|
||||
"X": 383.65747,
|
||||
"Y": 65.514336,
|
||||
"Z": -539.4217
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008667,
|
||||
"Position": {
|
||||
"X": 386.95337,
|
||||
"Y": 65.537476,
|
||||
"Z": -540.9171
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Souleater"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008668,
|
||||
"Position": {
|
||||
"X": -0.045776367,
|
||||
"Y": 5.3864136,
|
||||
"Z": -77.592224
|
||||
},
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "respect",
|
||||
"AetheryteShortcut": "Rhalgr's Reach"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"NextQuestId": 2919
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,209 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022916,
|
||||
"Position": {
|
||||
"X": -57.724915,
|
||||
"Y": -0.071196444,
|
||||
"Z": -40.146484
|
||||
},
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Rhalgr's Reach",
|
||||
"AethernetShortcut": [
|
||||
"[Rhalgr's Reach] Aetheryte Plaza",
|
||||
"[Rhalgr's Reach] Western Rhalgr's Reach"
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1019486,
|
||||
"Position": {
|
||||
"X": -116.746826,
|
||||
"Y": 0.6342248,
|
||||
"Z": -55.832825
|
||||
},
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1022915,
|
||||
"Position": {
|
||||
"X": -38.773254,
|
||||
"Y": 18.82157,
|
||||
"Z": 146.807
|
||||
},
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1022914,
|
||||
"Position": {
|
||||
"X": 112.7489,
|
||||
"Y": 0.6520417,
|
||||
"Z": -9.414856
|
||||
},
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 132.40436,
|
||||
"Y": -0.5395956,
|
||||
"Z": -3.4915996
|
||||
},
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "WalkTo",
|
||||
"TargetTerritoryId": 620
|
||||
},
|
||||
{
|
||||
"DataId": 1022922,
|
||||
"Position": {
|
||||
"X": -553.70416,
|
||||
"Y": 46.755432,
|
||||
"Z": -669.9474
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008669,
|
||||
"Position": {
|
||||
"X": -387.9607,
|
||||
"Y": 51.93484,
|
||||
"Z": -626.3676
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1023073,
|
||||
"Position": {
|
||||
"X": -624.7196,
|
||||
"Y": 58.3448,
|
||||
"Z": -484.48926
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013969,
|
||||
"Position": {
|
||||
"X": 104.234375,
|
||||
"Y": 14.999986,
|
||||
"Z": 40.787354
|
||||
},
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Forgotten Knight"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008885,
|
||||
"Position": {
|
||||
"X": 2.670288,
|
||||
"Y": 11.947815,
|
||||
"Z": 36.972534
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Forgotten Knight",
|
||||
"[Ishgard] The Last Vigil"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,157 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021425,
|
||||
"Position": {
|
||||
"X": 146.1051,
|
||||
"Y": 4,
|
||||
"Z": 25.223145
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Sapphire Avenue Exchange"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
131
|
||||
]
|
||||
}
|
||||
},
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBRDM500_02576_Q1_000_010",
|
||||
"Answer": "TEXT_JOBRDM500_02576_A1_000_011"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 166.65004,
|
||||
"Y": 3.9997904,
|
||||
"Z": 43.372593
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1021426,
|
||||
"Position": {
|
||||
"X": 124.04053,
|
||||
"Y": 5.292755,
|
||||
"Z": 559.65515
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021434,
|
||||
"Position": {
|
||||
"X": 125.718994,
|
||||
"Y": 5.2929487,
|
||||
"Z": 558.9531
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 8.849496,
|
||||
"Y": 18.34012,
|
||||
"Z": 562.2148
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1021435,
|
||||
"Position": {
|
||||
"X": 145.73889,
|
||||
"Y": 4,
|
||||
"Z": 25.223145
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -77.95643,
|
||||
"Y": -12.787907,
|
||||
"Z": -45.044247
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"Fly": true,
|
||||
"$": "Coffer & Coffin (outside)"
|
||||
},
|
||||
{
|
||||
"DataId": 1021438,
|
||||
"Position": {
|
||||
"X": -96.84906,
|
||||
"Y": -11.350002,
|
||||
"Z": -47.3183
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021438,
|
||||
"Position": {
|
||||
"X": -96.84906,
|
||||
"Y": -11.350002,
|
||||
"Z": -47.3183
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_JOBRDM500_02576_Q1_000_310",
|
||||
"Yes": true
|
||||
}
|
||||
],
|
||||
"NextQuestId": 2577
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,134 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 20389,
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
},
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1021438,
|
||||
"Position": {
|
||||
"X": -96.84906,
|
||||
"Y": -11.350002,
|
||||
"Z": -47.3183
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 20621,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "EquipRecommended"
|
||||
},
|
||||
{
|
||||
"DataId": 1021438,
|
||||
"Position": {
|
||||
"X": -96.84906,
|
||||
"Y": -11.350002,
|
||||
"Z": -47.3183
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -508.00916,
|
||||
"Y": -17.453016,
|
||||
"Z": 16.0174
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1021439,
|
||||
"Position": {
|
||||
"X": -513.7255,
|
||||
"Y": -16.420002,
|
||||
"Z": -6.668213
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021440,
|
||||
"Position": {
|
||||
"X": -505.6382,
|
||||
"Y": -17.810839,
|
||||
"Z": 28.702148
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021441,
|
||||
"Position": {
|
||||
"X": -428.58014,
|
||||
"Y": -29.27635,
|
||||
"Z": 24.826416
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021447,
|
||||
"Position": {
|
||||
"X": -496.75748,
|
||||
"Y": -17.41137,
|
||||
"Z": 28.091797
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2578
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,235 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021447,
|
||||
"Position": {
|
||||
"X": -496.75748,
|
||||
"Y": -17.41137,
|
||||
"Z": 28.091797
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006355,
|
||||
"Position": {
|
||||
"X": -512.47424,
|
||||
"Y": -16.42,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021448,
|
||||
"Position": {
|
||||
"X": -56.717834,
|
||||
"Y": -1.8104911E-06,
|
||||
"Z": 102.708374
|
||||
},
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gold Saucer",
|
||||
"AethernetShortcut": [
|
||||
"[Gold Saucer] Aetheryte Plaza",
|
||||
"[Gold Saucer] Entrance & Card Squares"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008218,
|
||||
"Position": {
|
||||
"X": -0.07635498,
|
||||
"Y": 20.98108,
|
||||
"Z": 53.60486
|
||||
},
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gold Saucer] Entrance & Card Squares",
|
||||
"[Gold Saucer] Wonder Square West"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021450,
|
||||
"Position": {
|
||||
"X": -8.621399,
|
||||
"Y": 20.99973,
|
||||
"Z": 43.381348
|
||||
},
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1021451,
|
||||
"Position": {
|
||||
"X": -429.64832,
|
||||
"Y": 23.743237,
|
||||
"Z": -351.06433
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -408.92343,
|
||||
"Y": 23.167036,
|
||||
"Z": -351.16223
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Vesper Bay Gate"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -375.8867,
|
||||
"Y": 23,
|
||||
"Z": -352.31714
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 2008219,
|
||||
"Position": {
|
||||
"X": -326.1311,
|
||||
"Y": 22.9953,
|
||||
"Z": -348.19562
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
7218
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -375.8867,
|
||||
"Y": 23,
|
||||
"Z": -352.31714
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -408.92343,
|
||||
"Y": 23.167036,
|
||||
"Z": -351.16223
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Vesper Bay Gate",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1021453,
|
||||
"Position": {
|
||||
"X": -407.98047,
|
||||
"Y": 23.008799,
|
||||
"Z": -320.36322
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -405.64215,
|
||||
"Y": 23.167034,
|
||||
"Z": -350.37634
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1021456,
|
||||
"Position": {
|
||||
"X": -400.38147,
|
||||
"Y": 23,
|
||||
"Z": -348.13464
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021457,
|
||||
"Position": {
|
||||
"X": -476.40198,
|
||||
"Y": 23.228897,
|
||||
"Z": -430.71643
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2579
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,213 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021457,
|
||||
"Position": {
|
||||
"X": -476.40198,
|
||||
"Y": 23.228897,
|
||||
"Z": -430.71643
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021458,
|
||||
"Position": {
|
||||
"X": 282.5818,
|
||||
"Y": -24.99566,
|
||||
"Z": 243.7323
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021464,
|
||||
"Position": {
|
||||
"X": 327.77905,
|
||||
"Y": -31.89878,
|
||||
"Z": 275.59314
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1021463,
|
||||
"Position": {
|
||||
"X": 311.4823,
|
||||
"Y": -36.325005,
|
||||
"Z": 351.33887
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1021465,
|
||||
"Position": {
|
||||
"X": 319.2339,
|
||||
"Y": -40.425003,
|
||||
"Z": 382.37573
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021458,
|
||||
"Position": {
|
||||
"X": 282.5818,
|
||||
"Y": -24.99566,
|
||||
"Z": 243.7323
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008221,
|
||||
"Position": {
|
||||
"X": 200.09155,
|
||||
"Y": -36.728516,
|
||||
"Z": 276.17297
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
7219
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021459,
|
||||
"Position": {
|
||||
"X": 207.35486,
|
||||
"Y": -36.405907,
|
||||
"Z": 328.11462
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008924,
|
||||
"Position": {
|
||||
"X": 206.073,
|
||||
"Y": -35.568848,
|
||||
"Z": 329.21338
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2002182
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 303.05298,
|
||||
"Y": -36.405563,
|
||||
"Z": 307.39264
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1021460,
|
||||
"Position": {
|
||||
"X": 319.44763,
|
||||
"Y": -35.9496,
|
||||
"Z": 305.6228
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021462,
|
||||
"Position": {
|
||||
"X": 307.36243,
|
||||
"Y": -36.402996,
|
||||
"Z": 309.98706
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 2580
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,188 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021462,
|
||||
"Position": {
|
||||
"X": 307.36243,
|
||||
"Y": -36.402996,
|
||||
"Z": 309.98706
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021466,
|
||||
"Position": {
|
||||
"X": 320.54626,
|
||||
"Y": -35.949726,
|
||||
"Z": 306.11108
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 310.38196,
|
||||
"Y": -35.96502,
|
||||
"Z": 314.66306
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 192.09558,
|
||||
"Y": -17.541195,
|
||||
"Z": 268.45526
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1021467,
|
||||
"Position": {
|
||||
"X": 190.96667,
|
||||
"Y": -17.339743,
|
||||
"Z": 269.27588
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBRDM560_02580_Q1_000_100",
|
||||
"Answer": "TEXT_JOBRDM560_02580_A1_000_101"
|
||||
},
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBRDM560_02580_Q2_000_131",
|
||||
"Answer": "TEXT_JOBRDM560_02580_A2_000_131"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 303.05298,
|
||||
"Y": -36.405563,
|
||||
"Z": 307.39264
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1021468,
|
||||
"Position": {
|
||||
"X": 319.44763,
|
||||
"Y": -35.949703,
|
||||
"Z": 306.90466
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003584,
|
||||
"Position": {
|
||||
"X": 317.43335,
|
||||
"Y": -36.325005,
|
||||
"Z": 352.86487
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 138
|
||||
},
|
||||
{
|
||||
"DataId": 1021469,
|
||||
"Position": {
|
||||
"X": -289.14325,
|
||||
"Y": -40.63008,
|
||||
"Z": 420.46228
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021442,
|
||||
"Position": {
|
||||
"X": -304.89056,
|
||||
"Y": -40.172314,
|
||||
"Z": 660.1815
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021471,
|
||||
"Position": {
|
||||
"X": 320.88184,
|
||||
"Y": -40.425003,
|
||||
"Z": 369.77185
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021473,
|
||||
"Position": {
|
||||
"X": 311.39075,
|
||||
"Y": -25.002254,
|
||||
"Z": 230.82312
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2581
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,145 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021473,
|
||||
"Position": {
|
||||
"X": 311.39075,
|
||||
"Y": -25.002254,
|
||||
"Z": 230.82312
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021475,
|
||||
"Position": {
|
||||
"X": -196.94824,
|
||||
"Y": 15.542886,
|
||||
"Z": 37.582886
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Hawkers' Alley"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBRDM580_02581_Q1_000_100",
|
||||
"Answer": "TEXT_JOBRDM580_02581_A1_000_101"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021478,
|
||||
"Position": {
|
||||
"X": -17.257996,
|
||||
"Y": 40.000496,
|
||||
"Z": -6.4240723
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Hawkers' Alley",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021480,
|
||||
"Position": {
|
||||
"X": -304.28015,
|
||||
"Y": 78.854965,
|
||||
"Z": -140.82556
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008233,
|
||||
"Position": {
|
||||
"X": -292.6833,
|
||||
"Y": 84.4281,
|
||||
"Z": -359.39575
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
7221,
|
||||
7222
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021480,
|
||||
"Position": {
|
||||
"X": -304.28015,
|
||||
"Y": 78.854965,
|
||||
"Z": -140.82556
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021482,
|
||||
"Position": {
|
||||
"X": -94.92645,
|
||||
"Y": 48.01958,
|
||||
"Z": -31.570984
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||
"Fly": true,
|
||||
"NextQuestId": 2582
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,190 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021482,
|
||||
"Position": {
|
||||
"X": -94.92645,
|
||||
"Y": 48.01958,
|
||||
"Z": -31.570984
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021484,
|
||||
"Position": {
|
||||
"X": 3.3721924,
|
||||
"Y": 50.266228,
|
||||
"Z": -770.1076
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021486,
|
||||
"Position": {
|
||||
"X": 54.642456,
|
||||
"Y": 20.4949,
|
||||
"Z": -671.3207
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021487,
|
||||
"Position": {
|
||||
"X": 94.56018,
|
||||
"Y": 20.33949,
|
||||
"Z": -609.4606
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 175.10304,
|
||||
"Y": 10.336163,
|
||||
"Z": -584.578
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
7223
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 2
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1021489,
|
||||
"Position": {
|
||||
"X": 176.3789,
|
||||
"Y": 9.963035,
|
||||
"Z": -583.64233
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 210.32977,
|
||||
"Y": -17.479898,
|
||||
"Z": -470.8124
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
7224
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 3
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1021490,
|
||||
"Position": {
|
||||
"X": 211.56628,
|
||||
"Y": -17.612108,
|
||||
"Z": -469.50488
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008526,
|
||||
"Position": {
|
||||
"X": 376.82153,
|
||||
"Y": -17.563171,
|
||||
"Z": -343.67902
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021493,
|
||||
"Position": {
|
||||
"X": 55.557983,
|
||||
"Y": 20.485168,
|
||||
"Z": -672.5719
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"NextQuestId": 2583
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,132 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021493,
|
||||
"Position": {
|
||||
"X": 55.557983,
|
||||
"Y": 20.485168,
|
||||
"Z": -672.5719
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021772,
|
||||
"Position": {
|
||||
"X": 63.095947,
|
||||
"Y": 207.82686,
|
||||
"Z": -14.725037
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Idyllshire"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008220,
|
||||
"Position": {
|
||||
"X": 385.9464,
|
||||
"Y": 78.446655,
|
||||
"Z": -114.488464
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
7225,
|
||||
8039
|
||||
],
|
||||
"AethernetShortcut": [
|
||||
"[Idyllshire] Aetheryte Plaza",
|
||||
"[Idyllshire] Epilogue Gate (Eastern Hinterlands)"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021774,
|
||||
"Position": {
|
||||
"X": 141.31372,
|
||||
"Y": 66.09973,
|
||||
"Z": -238.14758
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021775,
|
||||
"Position": {
|
||||
"X": 266.98706,
|
||||
"Y": 78.3604,
|
||||
"Z": -10.788147
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021778,
|
||||
"Position": {
|
||||
"X": -4.135254,
|
||||
"Y": 211,
|
||||
"Z": -39.84137
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Idyllshire"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021779,
|
||||
"Position": {
|
||||
"X": -5.44751,
|
||||
"Y": 210.99998,
|
||||
"Z": -39.658203
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 2584
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,340 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021779,
|
||||
"Position": {
|
||||
"X": -5.44751,
|
||||
"Y": 210.99998,
|
||||
"Z": -39.658203
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Idyllshire",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBRDM630_02584_Q1_000_050",
|
||||
"Answer": "TEXT_JOBRDM630_02584_A1_000_051"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -341.33426,
|
||||
"Y": 94.733665,
|
||||
"Z": -414.5643
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Peaks - Ala Gannha",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1021780,
|
||||
"Position": {
|
||||
"X": -339.04022,
|
||||
"Y": 94.94087,
|
||||
"Z": -414.17566
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008291,
|
||||
"Position": {
|
||||
"X": -299.48883,
|
||||
"Y": 200.7019,
|
||||
"Z": -240.55853
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -299.41455,
|
||||
"Y": 200.71986,
|
||||
"Z": -238.0671
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Jump",
|
||||
"JumpDestination": {
|
||||
"Position": {
|
||||
"X": -299.78412,
|
||||
"Y": 202.14117,
|
||||
"Z": -229.18993
|
||||
}
|
||||
},
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Unlocked",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -292.9197,
|
||||
"Y": 203.25142,
|
||||
"Z": -222.20459
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Unlocked",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -262.3789,
|
||||
"Y": 106.614746,
|
||||
"Z": -206.86658
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true,
|
||||
"Sprint": false,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Unlocked",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2008292,
|
||||
"Position": {
|
||||
"X": -262.3789,
|
||||
"Y": 106.614746,
|
||||
"Z": -206.86658
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -207.53746,
|
||||
"Y": 108.3858,
|
||||
"Z": -304.68738
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"InteractionType": "WalkTo",
|
||||
"TerritoryId": 620,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Unlocked",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -207.53746,
|
||||
"Y": 108.3858,
|
||||
"Z": -304.68738
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Jump",
|
||||
"JumpDestination": {
|
||||
"Position": {
|
||||
"X": -210.40668,
|
||||
"Y": 109.666504,
|
||||
"Z": -299.794
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"DelaySeconds": 0.2
|
||||
},
|
||||
"Mount": false,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Unlocked",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2008293,
|
||||
"Position": {
|
||||
"X": -210.40668,
|
||||
"Y": 109.666504,
|
||||
"Z": -299.794
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -213.96315,
|
||||
"Y": 107.1167,
|
||||
"Z": -305.87753
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Unlocked"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1021781,
|
||||
"Position": {
|
||||
"X": -308.43066,
|
||||
"Y": 102.62436,
|
||||
"Z": -372.2744
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008294,
|
||||
"Position": {
|
||||
"X": 782.6809,
|
||||
"Y": 256.91602,
|
||||
"Z": -388.29633
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
7822
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021782,
|
||||
"Position": {
|
||||
"X": 120.74463,
|
||||
"Y": 118.383255,
|
||||
"Z": -732.57043
|
||||
},
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Peaks - Ala Gannha"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021778,
|
||||
"Position": {
|
||||
"X": -4.135254,
|
||||
"Y": 211,
|
||||
"Z": -39.84137
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Idyllshire",
|
||||
"NextQuestId": 2585
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
132
QuestPaths/4.x - Stormblood/Class Quests/RDM/2585_Nightkin.json
Normal file
132
QuestPaths/4.x - Stormblood/Class Quests/RDM/2585_Nightkin.json
Normal file
@ -0,0 +1,132 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021779,
|
||||
"Position": {
|
||||
"X": -5.44751,
|
||||
"Y": 210.99998,
|
||||
"Z": -39.658203
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Idyllshire",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -25.853794,
|
||||
"Y": 210.99998,
|
||||
"Z": 3.6528845
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -20.601719,
|
||||
"Y": 205.82156,
|
||||
"Z": 23.937931
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1012133,
|
||||
"Position": {
|
||||
"X": -26.840637,
|
||||
"Y": 206.49944,
|
||||
"Z": 28.67163
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021779,
|
||||
"Position": {
|
||||
"X": -5.44751,
|
||||
"Y": 210.99998,
|
||||
"Z": -39.658203
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021783,
|
||||
"Position": {
|
||||
"X": 277.11902,
|
||||
"Y": 232.541,
|
||||
"Z": 785.5801
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Comment": "TODO Navigation doesn't work if flying is locked",
|
||||
"AethernetShortcut": [
|
||||
"[Idyllshire] Aetheryte Plaza",
|
||||
"[Idyllshire] Prologue Gate (Western Hinterlands)"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021783,
|
||||
"Position": {
|
||||
"X": 277.11902,
|
||||
"Y": 232.54102,
|
||||
"Z": 785.5801
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021779,
|
||||
"Position": {
|
||||
"X": -5.44751,
|
||||
"Y": 210.99998,
|
||||
"Z": -39.658203
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Idyllshire",
|
||||
"NextQuestId": 2586
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,172 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021779,
|
||||
"Position": {
|
||||
"X": -5.44751,
|
||||
"Y": 210.99998,
|
||||
"Z": -39.658203
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Idyllshire",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021785,
|
||||
"Position": {
|
||||
"X": 115.19031,
|
||||
"Y": 14.631312,
|
||||
"Z": -165.11792
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Tribunal"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021788,
|
||||
"Position": {
|
||||
"X": 34.042847,
|
||||
"Y": 11.965077,
|
||||
"Z": 48.355713
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Tribunal",
|
||||
"[Ishgard] The Last Vigil"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021789,
|
||||
"Position": {
|
||||
"X": 455.5885,
|
||||
"Y": 300.37985,
|
||||
"Z": -349.32483
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2008997,
|
||||
"Position": {
|
||||
"X": 299.2141,
|
||||
"Y": 239.12415,
|
||||
"Z": -312.76422
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
7226
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021791,
|
||||
"Position": {
|
||||
"X": 445.94482,
|
||||
"Y": 250.97905,
|
||||
"Z": -309.25464
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021794,
|
||||
"Position": {
|
||||
"X": 295.9486,
|
||||
"Y": 238.09589,
|
||||
"Z": -317.34192
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021793,
|
||||
"Position": {
|
||||
"X": 295.24683,
|
||||
"Y": 238.25597,
|
||||
"Z": -315.78546
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1021795,
|
||||
"Position": {
|
||||
"X": -19.638367,
|
||||
"Y": 15.965051,
|
||||
"Z": -37.247314
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ishgard",
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] Aetheryte Plaza",
|
||||
"[Ishgard] The Last Vigil"
|
||||
],
|
||||
"NextQuestId": 2587
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user