Compare commits

...

11 Commits

168 changed files with 15433 additions and 59 deletions

View File

@ -1,5 +1,6 @@
<Project Sdk="Dalamud.NET.Sdk/10.0.0"> <Project Sdk="Dalamud.NET.Sdk/10.0.0">
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\LLib\LLib.csproj" />
<ProjectReference Include="..\Questionable.Model\Questionable.Model.csproj" /> <ProjectReference Include="..\Questionable.Model\Questionable.Model.csproj" />
<ProjectReference Include="..\vendor\ECommons\ECommons\ECommons.csproj" /> <ProjectReference Include="..\vendor\ECommons\ECommons\ECommons.csproj" />
</ItemGroup> </ItemGroup>

View File

@ -14,6 +14,7 @@ using ECommons;
using ECommons.Schedulers; using ECommons.Schedulers;
using ECommons.SplatoonAPI; using ECommons.SplatoonAPI;
using GatheringPathRenderer.Windows; using GatheringPathRenderer.Windows;
using LLib.GameData;
using Questionable.Model; using Questionable.Model;
using Questionable.Model.Gathering; using Questionable.Model.Gathering;
@ -34,6 +35,7 @@ public sealed class RendererPlugin : IDalamudPlugin
private readonly EditorWindow _editorWindow; private readonly EditorWindow _editorWindow;
private readonly List<GatheringLocationContext> _gatheringLocations = []; private readonly List<GatheringLocationContext> _gatheringLocations = [];
private EClassJob _currentClassJob;
public RendererPlugin(IDalamudPluginInterface pluginInterface, IClientState clientState, public RendererPlugin(IDalamudPluginInterface pluginInterface, IClientState clientState,
ICommandManager commandManager, IDataManager dataManager, ITargetManager targetManager, IChatGui chatGui, ICommandManager commandManager, IDataManager dataManager, ITargetManager targetManager, IChatGui chatGui,
@ -55,6 +57,7 @@ public sealed class RendererPlugin : IDalamudPlugin
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable) _editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
{ IsOpen = true }; { IsOpen = true };
_windowSystem.AddWindow(_editorWindow); _windowSystem.AddWindow(_editorWindow);
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.Id ?? EClassJob.Adventurer;
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData") _pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
.Subscribe(Reload); .Subscribe(Reload);
@ -64,6 +67,7 @@ public sealed class RendererPlugin : IDalamudPlugin
_pluginInterface.UiBuilder.Draw += _windowSystem.Draw; _pluginInterface.UiBuilder.Draw += _windowSystem.Draw;
_clientState.TerritoryChanged += TerritoryChanged; _clientState.TerritoryChanged += TerritoryChanged;
_clientState.ClassJobChanged += ClassJobChanged;
if (_clientState.IsLoggedIn) if (_clientState.IsLoggedIn)
TerritoryChanged(_clientState.TerritoryType); TerritoryChanged(_clientState.TerritoryType);
} }
@ -174,9 +178,19 @@ public sealed class RendererPlugin : IDalamudPlugin
private void TerritoryChanged(ushort territoryId) => Redraw(); private void TerritoryChanged(ushort territoryId) => Redraw();
internal void Redraw() private void ClassJobChanged(uint classJobId)
{
_currentClassJob = (EClassJob)classJobId;
Redraw(_currentClassJob);
}
internal void Redraw() => Redraw(_currentClassJob);
private void Redraw(EClassJob classJob)
{ {
Splatoon.RemoveDynamicElements("GatheringPathRenderer"); Splatoon.RemoveDynamicElements("GatheringPathRenderer");
if (!classJob.IsGatherer())
return;
var elements = GetLocationsInTerritory(_clientState.TerritoryType) var elements = GetLocationsInTerritory(_clientState.TerritoryType)
.SelectMany(location => .SelectMany(location =>
@ -219,8 +233,8 @@ public sealed class RendererPlugin : IDalamudPlugin
refY = x.Position.Z, refY = x.Position.Z,
refZ = x.Position.Y, refZ = x.Position.Y,
Filled = true, Filled = true,
radius = x.CalculateMinimumDistance(), radius = locationOverride?.MinimumDistance ?? x.CalculateMinimumDistance(),
Donut = x.CalculateMaximumDistance() - x.CalculateMinimumDistance(), Donut = (locationOverride?.MaximumDistance ?? x.CalculateMaximumDistance()) - (locationOverride?.MinimumDistance ?? x.CalculateMinimumDistance()),
color = _colors[location.Root.Groups.IndexOf(group) % _colors.Count], color = _colors[location.Root.Groups.IndexOf(group) % _colors.Count],
Enabled = true, Enabled = true,
coneAngleMin = minimumAngle, coneAngleMin = minimumAngle,
@ -239,6 +253,7 @@ public sealed class RendererPlugin : IDalamudPlugin
$"{location.Root.Groups.IndexOf(group)} // {node.DataId} / {node.Locations.IndexOf(x)}", $"{location.Root.Groups.IndexOf(group)} // {node.DataId} / {node.Locations.IndexOf(x)}",
overlayBGColor = isUnsaved ? 0xFF2020FF : 0xFF000000, overlayBGColor = isUnsaved ? 0xFF2020FF : 0xFF000000,
}, },
#if false
new Element(ElementType.CircleAtFixedCoordinates) new Element(ElementType.CircleAtFixedCoordinates)
{ {
refX = a.X, refX = a.X,
@ -259,6 +274,7 @@ public sealed class RendererPlugin : IDalamudPlugin
Enabled = true, Enabled = true,
overlayText = "Max Angle" overlayText = "Max Angle"
} }
#endif
}; };
})))) }))))
.ToList(); .ToList();
@ -287,6 +303,7 @@ public sealed class RendererPlugin : IDalamudPlugin
public void Dispose() public void Dispose()
{ {
_clientState.ClassJobChanged -= ClassJobChanged;
_clientState.TerritoryChanged -= TerritoryChanged; _clientState.TerritoryChanged -= TerritoryChanged;
_pluginInterface.UiBuilder.Draw -= _windowSystem.Draw; _pluginInterface.UiBuilder.Draw -= _windowSystem.Draw;

View File

@ -34,7 +34,8 @@ internal sealed class EditorWindow : Window
public EditorWindow(RendererPlugin plugin, EditorCommands editorCommands, IDataManager dataManager, public EditorWindow(RendererPlugin plugin, EditorCommands editorCommands, IDataManager dataManager,
ITargetManager targetManager, IClientState clientState, IObjectTable objectTable) ITargetManager targetManager, IClientState clientState, IObjectTable objectTable)
: base("Gathering Path Editor###QuestionableGatheringPathEditor") : base("Gathering Path Editor###QuestionableGatheringPathEditor",
ImGuiWindowFlags.NoFocusOnAppearing | ImGuiWindowFlags.NoNavFocus)
{ {
_plugin = plugin; _plugin = plugin;
_editorCommands = editorCommands; _editorCommands = editorCommands;
@ -47,7 +48,11 @@ internal sealed class EditorWindow : Window
{ {
MinimumSize = new Vector2(300, 300), MinimumSize = new Vector2(300, 300),
}; };
RespectCloseHotkey = false;
ShowCloseButton = false; ShowCloseButton = false;
AllowPinning = false;
AllowClickthrough = false;
} }
public override void Update() public override void Update()
@ -89,7 +94,8 @@ internal sealed class EditorWindow : Window
return; return;
} }
_target ??= _objectTable.Where(x => x.ObjectKind == ObjectKind.GatheringPoint && x.DataId == location.Node.DataId) _target ??= _objectTable
.Where(x => x.ObjectKind == ObjectKind.GatheringPoint && x.DataId == location.Node.DataId)
.Select(x => new .Select(x => new
{ {
Object = x, Object = x,
@ -129,18 +135,20 @@ internal sealed class EditorWindow : Window
} }
int minAngle = locationOverride.MinimumAngle ?? location.MinimumAngle.GetValueOrDefault(); int minAngle = locationOverride.MinimumAngle ?? location.MinimumAngle.GetValueOrDefault();
if (ImGui.DragInt("Min Angle", ref minAngle, 5, -360, 360)) int maxAngle = locationOverride.MaximumAngle ?? location.MaximumAngle.GetValueOrDefault();
if (ImGui.DragIntRange2("Angle", ref minAngle, ref maxAngle, 5, -360, 360))
{ {
locationOverride.MinimumAngle = minAngle; locationOverride.MinimumAngle = minAngle;
locationOverride.MaximumAngle ??= location.MaximumAngle.GetValueOrDefault(); locationOverride.MaximumAngle = maxAngle;
_plugin.Redraw(); _plugin.Redraw();
} }
int maxAngle = locationOverride.MaximumAngle ?? location.MaximumAngle.GetValueOrDefault(); float minDistance = locationOverride.MinimumDistance ?? location.CalculateMinimumDistance();
if (ImGui.DragInt("Max Angle", ref maxAngle, 5, -360, 360)) float maxDistance = locationOverride.MaximumDistance ?? location.CalculateMaximumDistance();
if (ImGui.DragFloatRange2("Distance", ref minDistance, ref maxDistance, 0.1f, 1f, 3f))
{ {
locationOverride.MinimumAngle ??= location.MinimumAngle.GetValueOrDefault(); locationOverride.MinimumDistance = minDistance;
locationOverride.MaximumAngle = maxAngle; locationOverride.MaximumDistance = maxDistance;
_plugin.Redraw(); _plugin.Redraw();
} }
@ -150,8 +158,18 @@ internal sealed class EditorWindow : Window
ImGui.PushStyleColor(ImGuiCol.Button, ImGuiColors.DalamudRed); ImGui.PushStyleColor(ImGuiCol.Button, ImGuiColors.DalamudRed);
if (ImGui.Button("Save")) if (ImGui.Button("Save"))
{ {
location.MinimumAngle = locationOverride.MinimumAngle; if (locationOverride is { MinimumAngle: not null, MaximumAngle: not null })
location.MaximumAngle = locationOverride.MaximumAngle; {
location.MinimumAngle = locationOverride.MinimumAngle ?? location.MinimumAngle;
location.MaximumAngle = locationOverride.MaximumAngle ?? location.MaximumAngle;
}
if (locationOverride is { MinimumDistance: not null, MaximumDistance: not null })
{
location.MinimumDistance = locationOverride.MinimumDistance;
location.MaximumDistance = locationOverride.MaximumDistance;
}
_plugin.Save(context.File, context.Root); _plugin.Save(context.File, context.Root);
} }
@ -243,6 +261,6 @@ internal sealed class LocationOverride
public bool NeedsSave() public bool NeedsSave()
{ {
return MinimumAngle != null && MaximumAngle != null; return (MinimumAngle != null && MaximumAngle != null) || (MinimumDistance != null && MaximumDistance != null);
} }
} }

View File

@ -92,6 +92,12 @@
"ecommons": { "ecommons": {
"type": "Project" "type": "Project"
}, },
"llib": {
"type": "Project",
"dependencies": {
"DalamudPackager": "[2.1.13, )"
}
},
"questionable.model": { "questionable.model": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {

View File

@ -16,12 +16,15 @@
"Z": 405.1829 "Z": 405.1829
}, },
"MinimumAngle": 100, "MinimumAngle": 100,
"MaximumAngle": 250 "MaximumAngle": 250,
"MinimumDistance": 1.5,
"MaximumDistance": 3
} }
] ]
}, },
{ {
"DataId": 31345, "DataId": 31345,
"Fly": false,
"Locations": [ "Locations": [
{ {
"Position": { "Position": {
@ -29,8 +32,10 @@
"Y": 216.5585, "Y": 216.5585,
"Z": 412.4353 "Z": 412.4353
}, },
"MinimumAngle": 50, "MinimumAngle": 75,
"MaximumAngle": 165 "MaximumAngle": 145,
"MinimumDistance": 1.5,
"MaximumDistance": 3
}, },
{ {
"Position": { "Position": {
@ -39,7 +44,9 @@
"Z": 421.5481 "Z": 421.5481
}, },
"MinimumAngle": 0, "MinimumAngle": 0,
"MaximumAngle": 145 "MaximumAngle": 145,
"MinimumDistance": 1.5,
"MaximumDistance": 3
}, },
{ {
"Position": { "Position": {
@ -48,7 +55,9 @@
"Z": 408.2164 "Z": 408.2164
}, },
"MinimumAngle": 155, "MinimumAngle": 155,
"MaximumAngle": 225 "MaximumAngle": 225,
"MinimumDistance": 1.5,
"MaximumDistance": 3
} }
] ]
} }
@ -155,4 +164,4 @@
] ]
} }
] ]
} }

View File

@ -7,6 +7,7 @@
"[Kugane] Aetheryte Plaza", "[Kugane] Aetheryte Plaza",
"[Kugane] The Ruby Price" "[Kugane] The Ruby Price"
], ],
"FlyBetweenNodes": true,
"Groups": [ "Groups": [
{ {
"Nodes": [ "Nodes": [
@ -33,8 +34,10 @@
"Y": 0.503479, "Y": 0.503479,
"Z": 634.821 "Z": 634.821
}, },
"MinimumAngle": 60, "MinimumAngle": 45,
"MaximumAngle": 150 "MaximumAngle": 90,
"MinimumDistance": 1.6,
"MaximumDistance": 3
}, },
{ {
"Position": { "Position": {
@ -132,4 +135,4 @@
] ]
} }
] ]
} }

View File

@ -0,0 +1,57 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019347,
"Position": {
"X": 575.2803,
"Y": -19.505632,
"Z": 343.74
},
"TerritoryId": 622,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Azim Steppe - Reunion",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1022127,
"Position": {
"X": 606.3783,
"Y": -14.991949,
"Z": 328.542
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1022128,
"Position": {
"X": 588.00635,
"Y": -19.505651,
"Z": 316.57886
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,66 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019405,
"Position": {
"X": 343.58728,
"Y": 26.261887,
"Z": -326.55835
},
"TerritoryId": 622,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2008318,
"Position": {
"X": -83.48212,
"Y": 33.21875,
"Z": -210.22363
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1021900,
"Position": {
"X": -83.36011,
"Y": 27.540436,
"Z": -146.44086
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019405,
"Position": {
"X": 343.58728,
"Y": 26.261887,
"Z": -326.55835
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,94 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1023348,
"Position": {
"X": 79.24011,
"Y": 114.90497,
"Z": 95.994385
},
"TerritoryId": 622,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Azim Steppe - Dawn Throne",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019430,
"Position": {
"X": 33.98181,
"Y": 114.90497,
"Z": -40.69586
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2008925,
"Position": {
"X": 26.962646,
"Y": 115.464966,
"Z": -44.419067
},
"TerritoryId": 622,
"InteractionType": "Interact",
"$": "QW: 0 0 0 0 0 0 -> QW: 1 16 0 0 0 128"
},
{
"DataId": 2008926,
"Position": {
"X": 27.634033,
"Y": 115.464966,
"Z": -48.05072
},
"TerritoryId": 622,
"InteractionType": "Interact",
"$": "QW: 1 16 0 0 0 128 -> QW: 2 32 0 0 0 192"
},
{
"DataId": 2008927,
"Position": {
"X": 28.915894,
"Y": 115.464966,
"Z": -49.5766
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1023348,
"Position": {
"X": 79.24011,
"Y": 114.90497,
"Z": 95.994385
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,73 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1023193,
"Position": {
"X": -434.0429,
"Y": 2.5501096,
"Z": 650.01904
},
"TerritoryId": 622,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019321,
"Position": {
"X": -473.0144,
"Y": 2.320309,
"Z": 616.907
},
"TerritoryId": 622,
"InteractionType": "Interact",
"$": "QW: 0 0 0 0 0 0 -> QW: 1 0 0 0 0 128"
},
{
"DataId": 1022222,
"Position": {
"X": -485.22168,
"Y": 2.6499166,
"Z": 609.94885
},
"TerritoryId": 622,
"InteractionType": "Interact",
"$": "QW: 1 0 0 0 0 128 -> QW: 2 0 0 0 0 192"
},
{
"DataId": 1022228,
"Position": {
"X": -436.72852,
"Y": 2.253339,
"Z": 573.4187
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1023193,
"Position": {
"X": -434.0429,
"Y": 2.5501096,
"Z": 650.01904
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,98 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019517,
"Position": {
"X": -653.0099,
"Y": 129.91537,
"Z": -510.67374
},
"TerritoryId": 612,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Fringes - Castrum Oriens",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019523,
"Position": {
"X": -623.74304,
"Y": 130,
"Z": -483.7873
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -449.52835,
"Y": 105.07213,
"Z": -401.3476
},
"StopDistance": 0.5,
"TerritoryId": 612,
"InteractionType": "Instruction",
"Comment": "Manual combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7504
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": -232.26196,
"Y": 64.93323,
"Z": -676.26465
},
"StopDistance": 2,
"TerritoryId": 612,
"InteractionType": "Instruction",
"Comment": "Manual combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7505
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019517,
"Position": {
"X": -653.0099,
"Y": 129.91537,
"Z": -510.67374
},
"TerritoryId": 612,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
]
}
]
}

View File

@ -0,0 +1,107 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019519,
"Position": {
"X": -613.1228,
"Y": 130,
"Z": -529.839
},
"TerritoryId": 612,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Fringes - Castrum Oriens",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1023142,
"Position": {
"X": -642.9083,
"Y": 130.25946,
"Z": -538.29254
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1023143,
"Position": {
"X": -631.0674,
"Y": 130.30254,
"Z": -465.96478
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1023147,
"Position": {
"X": -429.4652,
"Y": 75.3867,
"Z": -124.712036
},
"TerritoryId": 612,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
7217,
7553
]
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1023148,
"Position": {
"X": -429.89246,
"Y": 74.88393,
"Z": -118.30322
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1023147,
"Position": {
"X": -429.4652,
"Y": 75.3867,
"Z": -124.712036
},
"TerritoryId": 612,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,86 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020821,
"Position": {
"X": 276.7223,
"Y": 76.853935,
"Z": -23.51416
},
"TerritoryId": 612,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 566.8916,
"Y": 72.80687,
"Z": 138.84087
},
"TerritoryId": 612,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7224,
7237,
7512
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1021227,
"Position": {
"X": 567.0709,
"Y": 72.83738,
"Z": 138.93335
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1021948,
"Position": {
"X": 608.97217,
"Y": 49.31076,
"Z": 327.10767
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020821,
"Position": {
"X": 276.7223,
"Y": 76.853935,
"Z": -23.51416
},
"TerritoryId": 612,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,58 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020807,
"Position": {
"X": 433.9818,
"Y": 114.48304,
"Z": 233.29517
},
"TerritoryId": 612,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Fringes - Peering Stones",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 370.87048,
"Y": 73.22009,
"Z": 118.791504
},
"TerritoryId": 612,
"InteractionType": "WaitForManualProgress",
"Comment": "Use item 2002324 on 6655 after \"weakening\""
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020807,
"Position": {
"X": 433.9818,
"Y": 114.48304,
"Z": 233.29517
},
"TerritoryId": 612,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Fringes - Peering Stones"
}
]
}
]
}

View File

@ -0,0 +1,61 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1022992,
"Position": {
"X": -506.6148,
"Y": 8.7,
"Z": -40.299072
},
"TerritoryId": 621,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Lochs - Porta Praetoria",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -257.40616,
"Y": 98.88382,
"Z": -488.98062
},
"TerritoryId": 621,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7849
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1022992,
"Position": {
"X": -506.6148,
"Y": 8.7,
"Z": -40.299072
},
"TerritoryId": 621,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Lochs - Porta Praetoria"
}
]
}
]
}

View File

@ -0,0 +1,64 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1022990,
"Position": {
"X": -524.58997,
"Y": 8.688546,
"Z": -19.424805
},
"TerritoryId": 621,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Lochs - Porta Praetoria",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -89.3111,
"Y": 42.999996,
"Z": -677.6074
},
"TerritoryId": 621,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 6651,
"MinimumKillCount": 4
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1022990,
"Position": {
"X": -524.58997,
"Y": 8.688546,
"Z": -19.424805
},
"TerritoryId": 621,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Lochs - Porta Praetoria"
}
]
}
]
}

View File

@ -0,0 +1,135 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1022987,
"Position": {
"X": -662.13477,
"Y": 49.999794,
"Z": -48.874695
},
"TerritoryId": 621,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Lochs - Porta Praetoria",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1023174,
"Position": {
"X": -82.29199,
"Y": 1.134715,
"Z": -297.56616
},
"TerritoryId": 621,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -42.96752,
"Y": 0.06842625,
"Z": -240.69255
},
"TerritoryId": 621,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -62.360443,
"Y": -0.6,
"Z": -104.08483
},
"TerritoryId": 621,
"InteractionType": "Dive"
},
{
"DataId": 2008779,
"Position": {
"X": -56.229553,
"Y": -339.04022,
"Z": -103.89868
},
"TerritoryId": 621,
"InteractionType": "Interact",
"DisableNavmesh": true
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": -62.360443,
"Y": -0.6,
"Z": -104.08483
},
"TerritoryId": 621,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"Position": {
"X": -50.288544,
"Y": -0.3,
"Z": -115.21235
},
"TerritoryId": 621,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -42.96752,
"Y": 0.06842625,
"Z": -240.69255
},
"TerritoryId": 621,
"InteractionType": "WalkTo"
},
{
"DataId": 1023174,
"Position": {
"X": -82.29199,
"Y": 1.134715,
"Z": -297.56616
},
"TerritoryId": 621,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1022987,
"Position": {
"X": -662.13477,
"Y": 49.999794,
"Z": -48.874695
},
"TerritoryId": 621,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Lochs - Porta Praetoria"
}
]
}
]
}

View File

@ -0,0 +1,69 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1022991,
"Position": {
"X": -539.6353,
"Y": 7.6119823,
"Z": 52.140015
},
"TerritoryId": 621,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Lochs - Porta Praetoria",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2007987,
"Position": {
"X": -380.2091,
"Y": 10.055664,
"Z": 16.891724
},
"TerritoryId": 621,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818165
},
{
"Position": {
"X": -197.38828,
"Y": 3.820687,
"Z": 288.09766
},
"TerritoryId": 621,
"InteractionType": "WaitForManualProgress",
"Comment": "Use item 2002315 on 6599 after \"weakening\""
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1022991,
"Position": {
"X": -539.6353,
"Y": 7.6119823,
"Z": 52.140015
},
"TerritoryId": 621,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Lochs - Porta Praetoria"
}
]
}
]
}

View File

@ -0,0 +1,96 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020841,
"Position": {
"X": 146.01355,
"Y": 118.1921,
"Z": -730.4951
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Peaks - Ala Gannha",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1021752,
"Position": {
"X": 14.724915,
"Y": 118.08588,
"Z": -776.82153
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1021752,
"Position": {
"X": 14.724915,
"Y": 118.08588,
"Z": -776.82153
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": 656.90076,
"Y": 231.05865,
"Z": -611.2172
},
"TerritoryId": 620,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 6609,
"MinimumKillCount": 2,
"RewardItemId": 2002205,
"RewardItemCount": 2
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1021752,
"Position": {
"X": 14.724915,
"Y": 118.08588,
"Z": -776.82153
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
]
}
]
}

View File

@ -0,0 +1,94 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020873,
"Position": {
"X": -327.96222,
"Y": 258.90652,
"Z": 757.3815
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Peaks - Ala Ghiri",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1023258,
"Position": {
"X": -232.3186,
"Y": 258.90652,
"Z": 799.46594
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1023259,
"Position": {
"X": -293.41577,
"Y": 258.9065,
"Z": 788.63196
},
"TerritoryId": 620,
"InteractionType": "Interact",
"$": "QW: 0 0 0 0 0 0 -> QW: 1 0 0 0 0 32"
},
{
"DataId": 1020871,
"Position": {
"X": -237.90344,
"Y": 257.71973,
"Z": 741.5731
},
"TerritoryId": 620,
"InteractionType": "Interact",
"$": "QW: 1 0 0 0 0 32 -> QW: 2 0 0 0 0 160"
},
{
"DataId": 1020870,
"Position": {
"X": -218.61603,
"Y": 257.52652,
"Z": 737.1786
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1023258,
"Position": {
"X": -232.3186,
"Y": 258.90652,
"Z": 799.46594
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,93 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1023167,
"Position": {
"X": 313.28296,
"Y": 324.51355,
"Z": 362.4475
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1023168,
"Position": {
"X": 357.07642,
"Y": 325.1959,
"Z": 333.5775
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1023169,
"Position": {
"X": -199.35913,
"Y": 258.90652,
"Z": 780.9109
},
"TerritoryId": 620,
"InteractionType": "Interact",
"AetheryteShortcut": "Peaks - Ala Ghiri"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1021557,
"Position": {
"X": -130.02216,
"Y": 305.38147,
"Z": 189.71533
},
"TerritoryId": 620,
"InteractionType": "Interact",
"TargetTerritoryId": 620
},
{
"DataId": 1023168,
"Position": {
"X": 357.07642,
"Y": 325.1959,
"Z": 333.5775
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1023167,
"Position": {
"X": 313.28296,
"Y": 324.51355,
"Z": 362.4475
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,100 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020893,
"Position": {
"X": 283.77197,
"Y": 322.87146,
"Z": 752.34607
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020888,
"Position": {
"X": 321.21765,
"Y": 324.3033,
"Z": 390.70715
},
"TerritoryId": 620,
"InteractionType": "Interact",
"$": "QW: 0 0 0 0 0 0 -> QW: 1 0 0 0 0 32"
},
{
"DataId": 1020886,
"Position": {
"X": 342.70227,
"Y": 325.54596,
"Z": 359.54822
},
"TerritoryId": 620,
"InteractionType": "Interact",
"$": "QW: 1 0 0 0 0 32 -> QW: 2 0 0 0 0 160"
},
{
"DataId": 1020887,
"Position": {
"X": 337.20898,
"Y": 324.30093,
"Z": 328.51135
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020870,
"Position": {
"X": -218.61603,
"Y": 257.52652,
"Z": 737.1786
},
"TerritoryId": 620,
"InteractionType": "Interact",
"AetheryteShortcut": "Peaks - Ala Ghiri"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1021557,
"Position": {
"X": -130.02216,
"Y": 305.38147,
"Z": 189.71533
},
"TerritoryId": 620,
"InteractionType": "Interact",
"TargetTerritoryId": 620
},
{
"DataId": 1020893,
"Position": {
"X": 283.77197,
"Y": 322.87146,
"Z": 752.34607
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,140 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1023280,
"Position": {
"X": -62.790894,
"Y": -198.96509,
"Z": -64.34735
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_STMBDY001_02632_Q1_000_050",
"Answer": "TEXT_STMBDY001_02632_A1_000_051"
}
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019197,
"Position": {
"X": -8.926575,
"Y": -187.08374,
"Z": -95.018005
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 21.067955,
"Y": -197.78902,
"Z": -155.23956
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"$": "Sui-no-Sato, NE inside"
},
{
"Position": {
"X": -238.47687,
"Y": -192.81738,
"Z": 329.51413
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"$": "To shorten pathfinding time, not strictly necessary"
},
{
"DataId": 1023293,
"Position": {
"X": -957.15265,
"Y": -895.9945,
"Z": 756.83215
},
"TerritoryId": 613,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 3,
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "Duty",
"ContentFinderConditionId": 235
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1023293,
"Position": {
"X": -957.15265,
"Y": -895.9945,
"Z": 756.83215
},
"TerritoryId": 613,
"InteractionType": "Interact",
"StopDistance": 8
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 322.1539,
"Y": -121.22571,
"Z": -314.2446
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Ruby Sea - Tamamizu"
},
{
"Position": {
"X": 22.288645,
"Y": -196.2301,
"Z": -155.5739
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"$": "Sui-no-Sato, NE outside"
},
{
"DataId": 1023280,
"Position": {
"X": -62.790894,
"Y": -198.96509,
"Z": -64.34735
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,98 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019168,
"Position": {
"X": 501.33508,
"Y": 34.0062,
"Z": 781.70435
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019154,
"Position": {
"X": 829.1294,
"Y": 5.9230084,
"Z": 859.739
},
"TerritoryId": 613,
"InteractionType": "Interact",
"AetheryteShortcut": "Kugane",
"AethernetShortcut": [
"[Kugane] Aetheryte Plaza",
"[Kugane] The Ruby Price"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 595.4312,
"Y": -0.26869023,
"Z": 800.52985
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": 459.92212,
"Y": -0.19133466,
"Z": 672.5903
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"DataId": 1022745,
"Position": {
"X": 288.6853,
"Y": -0.5,
"Z": 393.78955
},
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
7497
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019154,
"Position": {
"X": 829.1294,
"Y": 5.9230084,
"Z": 859.739
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Kugane",
"AethernetShortcut": [
"[Kugane] Aetheryte Plaza",
"[Kugane] The Ruby Price"
]
}
]
}
]
}

View File

@ -0,0 +1,97 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1022102,
"Position": {
"X": 97.8866,
"Y": 2.096308,
"Z": -617.79205
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1022103,
"Position": {
"X": -47.135193,
"Y": 2.8637304,
"Z": -636.286
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1022122,
"Position": {
"X": 134.66089,
"Y": 12.000001,
"Z": 69.047
},
"TerritoryId": 628,
"InteractionType": "Interact",
"AetheryteShortcut": "Kugane",
"AethernetShortcut": [
"[Kugane] Aetheryte Plaza",
"[Kugane] The Ruby Bazaar"
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1019049,
"Position": {
"X": -130.87665,
"Y": -5.000044,
"Z": 140.82544
},
"TerritoryId": 628,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Kugane] The Ruby Bazaar",
"[Kugane] Pier #1"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1022117,
"Position": {
"X": -49.515564,
"Y": 2.6587384,
"Z": -636.56067
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro"
}
]
}
]
}

View File

@ -0,0 +1,178 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1023357,
"Position": {
"X": 565.0873,
"Y": -62.272896,
"Z": -147.84473
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 566.1683,
"Y": -60.550995,
"Z": -134.80696
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"DataId": 1023358,
"Position": {
"X": 608.5145,
"Y": -3.4784377,
"Z": -92.82062
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 611.58606,
"Y": -1.6943853,
"Z": -91.26402
},
"TerritoryId": 613,
"InteractionType": "Jump",
"StopDistance": 0.25,
"JumpDestination": {
"Position": {
"X": 617.04565,
"Y": -17.818226,
"Z": -108.994415
}
},
"Mount": false
},
{
"Position": {
"X": 617.01825,
"Y": -18.570948,
"Z": -114.45003
},
"TerritoryId": 613,
"InteractionType": "Jump",
"StopDistance": 0.25,
"JumpDestination": {
"Position": {
"X": 619.67755,
"Y": -28.768707,
"Z": -127.102554
}
},
"Mount": false
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": 617.86127,
"Y": -29.12958,
"Z": -129.81326
},
"TerritoryId": 613,
"InteractionType": "Jump",
"StopDistance": 0.25,
"JumpDestination": {
"Position": {
"X": 604.2836,
"Y": -34.756268,
"Z": -136.64783
}
},
"Mount": false
},
{
"Position": {
"X": 601.5953,
"Y": -36.643044,
"Z": -144.1365
},
"TerritoryId": 613,
"InteractionType": "Jump",
"StopDistance": 0.25,
"JumpDestination": {
"Position": {
"X": 598.6192,
"Y": -43.845043,
"Z": -154.23668
}
},
"Mount": false
},
{
"Position": {
"X": 594.64703,
"Y": -43.869747,
"Z": -156.01822
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 593.3238,
"Y": -45.048393,
"Z": -152.89952
},
"TerritoryId": 613,
"InteractionType": "Jump",
"StopDistance": 0.25,
"JumpDestination": {
"Position": {
"X": 566.00684,
"Y": -61.995552,
"Z": -146.04814
}
}
},
{
"Position": {
"X": 566.1683,
"Y": -60.550995,
"Z": -134.80696
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"Mount": true
},
{
"DataId": 1023358,
"Position": {
"X": 608.5145,
"Y": -3.4784377,
"Z": -92.82062
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,166 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019314,
"Position": {
"X": 421.77454,
"Y": -0.3000138,
"Z": -293.9651
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Yanxia - Namai",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2008461,
"Position": {
"X": 474.2351,
"Y": 28.824219,
"Z": -212.23773
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002241,
"$": "? ? ? ? ? ? -> 1 80 0 0 0 128",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 2008462,
"Position": {
"X": 569.6649,
"Y": 43.930664,
"Z": -145.22015
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002241,
"$": "1 80 0 0 0 128 -> 2 64 0 0 0 192",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 2008463,
"Position": {
"X": 531.18164,
"Y": 85.40466,
"Z": -303.33417
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002241,
"$": "2 64 0 0 0 192 -> 3 48 0 0 0 224",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 2008464,
"Position": {
"X": 537.8042,
"Y": 61.57019,
"Z": -10.269409
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002241,
"$": "3 48 0 0 0 224 -> 4 32 0 0 0 240",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
},
{
"DataId": 2008466,
"Position": {
"X": 487.0221,
"Y": 65.537476,
"Z": -23.361572
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002241,
"$": "4 32 0 0 0 240 -> 5 16 0 0 0 244",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
4
]
},
{
"DataId": 2008465,
"Position": {
"X": 380.84985,
"Y": 41.031494,
"Z": -29.892456
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002241,
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
8
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019314,
"Position": {
"X": 421.77454,
"Y": -0.3000138,
"Z": -293.9651
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,181 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019263,
"Position": {
"X": 451.56018,
"Y": 58.77665,
"Z": -188.3421
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Yanxia - Namai",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019264,
"Position": {
"X": 362.35596,
"Y": 90.70435,
"Z": -164.72119
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2008352,
"Position": {
"X": 379.23242,
"Y": 90.684326,
"Z": -134.72198
},
"TerritoryId": 614,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 2008354,
"Position": {
"X": 369.5276,
"Y": 97.61194,
"Z": -102.92212
},
"TerritoryId": 614,
"InteractionType": "Interact",
"$": "1 0 0 0 0 128 -> 2 0 0 0 0 160",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 2008353,
"Position": {
"X": 352.34607,
"Y": 97.61194,
"Z": -134.99658
},
"TerritoryId": 614,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1019264,
"Position": {
"X": 362.35596,
"Y": 90.70435,
"Z": -164.72119
},
"TerritoryId": 614,
"InteractionType": "Interact",
"Mount": true
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 2008355,
"Position": {
"X": 332.96704,
"Y": 100.87732,
"Z": -109.14783
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002213
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1022071,
"Position": {
"X": 332.93652,
"Y": 100.91828,
"Z": -109.75824
},
"TerritoryId": 614,
"InteractionType": "Emote",
"Emote": "clap"
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1019264,
"Position": {
"X": 362.35596,
"Y": 90.70435,
"Z": -164.72119
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019263,
"Position": {
"X": 451.56018,
"Y": 58.77665,
"Z": -188.3421
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,66 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019313,
"Position": {
"X": 465.26282,
"Y": 58.52148,
"Z": -171.09949
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Yanxia - Namai",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 151.29321,
"Y": -0.2997286,
"Z": 229.44983
},
"TerritoryId": 614,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 6682,
"MinimumKillCount": 3,
"RewardItemId": 2002239,
"RewardItemCount": 3
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019295,
"Position": {
"X": 756.3439,
"Y": 98.04659,
"Z": -229.93823
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Yanxia - Namai"
}
]
}
]
}

View File

@ -0,0 +1,203 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019316,
"Position": {
"X": 434.89734,
"Y": 68.02076,
"Z": -125.01721
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Yanxia - Namai",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1022457,
"Position": {
"X": 529.56433,
"Y": 19.872318,
"Z": 350.24023
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2008007,
"Position": {
"X": 497.27625,
"Y": 16.342407,
"Z": 402.48718
},
"TerritoryId": 614,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818195
},
{
"Position": {
"X": 439.41403,
"Y": -0.3,
"Z": 464.3263
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"DisableNavmesh": true,
"Mount": true
},
{
"DataId": 1022458,
"Position": {
"X": 210.95593,
"Y": 7.398857,
"Z": 500.26697
},
"TerritoryId": 614,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
7524,
7525
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2008518,
"Position": {
"X": 211.4137,
"Y": 8.255066,
"Z": 501.97595
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"Position": {
"X": 439.41403,
"Y": -0.3,
"Z": 464.3263
},
"TerritoryId": 614,
"InteractionType": "WalkTo"
},
{
"DataId": 1022457,
"Position": {
"X": 529.56433,
"Y": 19.872318,
"Z": 350.24023
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"Position": {
"X": 605.15845,
"Y": -0.5999999,
"Z": 499.43237
},
"TerritoryId": 614,
"InteractionType": "Dive",
"StopDistance": 0.25
},
{
"DataId": 2008519,
"Position": {
"X": 619.8672,
"Y": -48.66101,
"Z": 559.83826
},
"TerritoryId": 614,
"InteractionType": "Interact",
"DisableNavmesh": true,
"Mount": true
}
]
},
{
"Sequence": 6,
"Steps": [
{
"Position": {
"X": 605.15845,
"Y": -0.5999999,
"Z": 499.43237
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"StopDistance": 0.25,
"DisableNavmesh": true,
"Mount": true
},
{
"Position": {
"X": 617.7405,
"Y": -0.3,
"Z": 493.613
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"StopDistance": 0.25
},
{
"DataId": 1022457,
"Position": {
"X": 529.56433,
"Y": 19.872318,
"Z": 350.24023
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019316,
"Position": {
"X": 434.89734,
"Y": 68.02076,
"Z": -125.01721
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Yanxia - Namai"
}
]
}
]
}

View File

@ -0,0 +1,130 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"TerritoryId": 156,
"DataId": 2002881,
"Position": {
"X": 21.133728,
"Y": 22.323914,
"Z": -631.281
},
"InteractionType": "Interact",
"TargetTerritoryId": 351,
"AetheryteShortcut": "Mor Dhona",
"SkipConditions": {
"StepIf": {
"InTerritory": [
351
]
},
"AetheryteShortcutIf": {
"InTerritory": [
351
]
}
}
},
{
"DataId": 1018330,
"Position": {
"X": -4.196289,
"Y": 0.018040119,
"Z": -6.6377563
},
"TerritoryId": 351,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020284,
"Position": {
"X": -3.3112793,
"Y": 0.018040119,
"Z": -6.881897
},
"TerritoryId": 351,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020300,
"Position": {
"X": 24.795776,
"Y": 6.1891203,
"Z": 401.9989
},
"TerritoryId": 152,
"InteractionType": "Interact",
"Fly": true,
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020303,
"Position": {
"X": 26.962646,
"Y": 6.1844764,
"Z": 400.99182
},
"StopDistance": 7,
"TerritoryId": 152,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_STMBDA101_02446_WARP_YESNO_TITLE_001",
"Yes": true
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"TerritoryId": 612,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Fringes - Castrum Oriens"
},
{
"Position": {
"X": -612.8515,
"Y": 130,
"Z": -506.81757
},
"TerritoryId": 612,
"InteractionType": "WalkTo"
},
{
"DataId": 1020304,
"Position": {
"X": -606.7445,
"Y": 130,
"Z": -506.95053
},
"StopDistance": 7,
"TerritoryId": 612,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,135 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020527,
"Position": {
"X": -612.0852,
"Y": 130,
"Z": -504.02078
},
"StopDistance": 5,
"TerritoryId": 612,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Fringes - Castrum Oriens",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020311,
"Position": {
"X": -481.2848,
"Y": 96.387344,
"Z": -341.26807
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2007965,
"Position": {
"X": -487.26636,
"Y": 76.70703,
"Z": -249.56134
},
"TerritoryId": 612,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818133
},
{
"DataId": 1020316,
"Position": {
"X": -213.51953,
"Y": 59.159065,
"Z": -531.426
},
"TerritoryId": 612,
"InteractionType": "Interact",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": -124.70333,
"Y": 58.571022,
"Z": -581.12805
},
"TerritoryId": 612,
"InteractionType": "WalkTo"
},
{
"DataId": 2007967,
"Position": {
"X": 155.84033,
"Y": 53.3302,
"Z": -499.44305
},
"TerritoryId": 612,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818135
},
{
"DataId": 1020321,
"Position": {
"X": 447.77588,
"Y": 61.497482,
"Z": -543.72473
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"Position": {
"X": 484.6969,
"Y": 61.72069,
"Z": -558.6724
},
"TerritoryId": 612,
"InteractionType": "WalkTo",
"TargetTerritoryId": 635
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020329,
"Position": {
"X": -32.974792,
"Y": 18.045086,
"Z": 129.41174
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,51 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020329,
"Position": {
"X": -32.974792,
"Y": 18.045086,
"Z": 129.41174
},
"TerritoryId": 635,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"TerritoryId": 635,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Rhalgr's Reach] Western Rhalgr's Reach"
},
{
"TerritoryId": 635,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Rhalgr's Reach"
},
{
"TerritoryId": 635,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Rhalgr's Reach] Northeastern Rhalgr's Reach"
},
{
"DataId": 1019466,
"Position": {
"X": 170.91626,
"Y": 13.02367,
"Z": -91.38635
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,107 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020332,
"Position": {
"X": 164.90417,
"Y": 13.023668,
"Z": -91.50836
},
"StopDistance": 7,
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020339,
"Position": {
"X": 95.2926,
"Y": 1.2333723,
"Z": -78.23309
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020345,
"Position": {
"X": -1.8463745,
"Y": 2.6970465,
"Z": -68.833435
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020346,
"Position": {
"X": -117.60132,
"Y": 0.5980477,
"Z": -65.812195
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1020344,
"Position": {
"X": 86.65588,
"Y": 0,
"Z": 88.70068
},
"TerritoryId": 635,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Rhalgr's Reach] Western Rhalgr's Reach",
"[Rhalgr's Reach] Aetheryte Plaza"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020347,
"Position": {
"X": 59.67798,
"Y": -8.1507994E-13,
"Z": -4.0742188
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,58 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020341,
"Position": {
"X": 61.17334,
"Y": -9.369123E-13,
"Z": -4.6845703
},
"StopDistance": 5,
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019466,
"Position": {
"X": 170.91626,
"Y": 13.02367,
"Z": -91.38635
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020333,
"Position": {
"X": 164.14124,
"Y": 13.023669,
"Z": -92.30188
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,103 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020337,
"Position": {
"X": 171.31299,
"Y": 13.02367,
"Z": -89.951965
},
"StopDistance": 7,
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020395,
"Position": {
"X": -37.67456,
"Y": 18.448887,
"Z": 133.28748
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -30.398779,
"Y": 12.536386,
"Z": 167.62189
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"TargetTerritoryId": 612
},
{
"DataId": 1020498,
"Position": {
"X": 158.12915,
"Y": 49.714592,
"Z": -475.27277
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2008157,
"Position": {
"X": 58.426758,
"Y": 51.895874,
"Z": -482.32245
},
"TerritoryId": 612,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
7553,
7554
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020351,
"Position": {
"X": -95.84198,
"Y": 59.801033,
"Z": -551.9341
},
"TerritoryId": 612,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,52 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020351,
"Position": {
"X": -95.84198,
"Y": 59.801033,
"Z": -551.9341
},
"TerritoryId": 612,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020353,
"Position": {
"X": -394.85773,
"Y": 105.037674,
"Z": -425.5589
},
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020304,
"Position": {
"X": -606.7445,
"Y": 130,
"Z": -506.95053
},
"TerritoryId": 612,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
]
}
]
}

View File

@ -0,0 +1,79 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020304,
"Position": {
"X": -606.7445,
"Y": 130,
"Z": -506.95053
},
"TerritoryId": 612,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Fringes - Castrum Oriens",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2007955,
"Position": {
"X": -228.22925,
"Y": 59.861084,
"Z": -409.5064
},
"TerritoryId": 612,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
8048,
8049
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020503,
"Position": {
"X": -494.16345,
"Y": 82.14899,
"Z": -266.8651
},
"TerritoryId": 612,
"InteractionType": "SinglePlayerDuty",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020361,
"Position": {
"X": -507.4388,
"Y": 86.34846,
"Z": -289.84515
},
"StopDistance": 5,
"TerritoryId": 612,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,53 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020361,
"Position": {
"X": -507.4388,
"Y": 86.34846,
"Z": -289.84515
},
"StopDistance": 5,
"TerritoryId": 612,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Fringes - Castrum Oriens",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020337,
"Position": {
"X": 171.31299,
"Y": 13.02367,
"Z": -89.951965
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"AethernetShortcut": [
"[Rhalgr's Reach] Aetheryte Plaza",
"[Rhalgr's Reach] Northeastern Rhalgr's Reach"
],
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
}
]
}

View File

@ -0,0 +1,104 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020338,
"Position": {
"X": 170.30591,
"Y": 13.02367,
"Z": -93.06476
},
"StopDistance": 7,
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020366,
"Position": {
"X": 114.18323,
"Y": 0.6520416,
"Z": -11.673218
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 132.8247,
"Y": -0.57445294,
"Z": -3.299387
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"TargetTerritoryId": 620
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020368,
"Position": {
"X": -641.2604,
"Y": 50.867527,
"Z": -784.1764
},
"StopDistance": 7,
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1020370,
"Position": {
"X": -384.7563,
"Y": 52.201828,
"Z": -636.4691
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020372,
"Position": {
"X": 36.423218,
"Y": 117.95596,
"Z": -742.2446
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,67 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020372,
"Position": {
"X": 36.423218,
"Y": 117.95596,
"Z": -742.2446
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 620,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Peaks - Ala Gannha"
},
{
"DataId": 2007976,
"Position": {
"X": 202.86865,
"Y": 133.89783,
"Z": -753.1395
},
"TerritoryId": 620,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818149
},
{
"DataId": 1020841,
"Position": {
"X": 146.01355,
"Y": 118.1921,
"Z": -730.4951
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020374,
"Position": {
"X": 89.21948,
"Y": 119.4052,
"Z": -684.7792
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,73 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020376,
"Position": {
"X": 95.44519,
"Y": 118.15579,
"Z": -758.053
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Peaks - Ala Gannha",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020375,
"Position": {
"X": 78.87378,
"Y": 118.26358,
"Z": -779.69025
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020374,
"Position": {
"X": 89.21948,
"Y": 119.4052,
"Z": -684.7792
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020379,
"Position": {
"X": 85.40466,
"Y": 118.15579,
"Z": -719.96643
},
"StopDistance": 5,
"TerritoryId": 620,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,150 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020379,
"Position": {
"X": 85.40466,
"Y": 118.15579,
"Z": -719.96643
},
"StopDistance": 5,
"TerritoryId": 620,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Peaks - Ala Gannha",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -98.166626,
"Y": 104.979965,
"Z": -480.49606
},
"TerritoryId": 620,
"InteractionType": "WalkTo"
},
{
"DataId": 2008681,
"Position": {
"X": -257.70966,
"Y": 102.311646,
"Z": -381.36877
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -281.2972,
"Y": 104.584076,
"Z": -359.10394
},
"TerritoryId": 620,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7514
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2007978,
"Position": {
"X": -271.2597,
"Y": 157.91565,
"Z": -280.2625
},
"TerritoryId": 620,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818151
},
{
"Position": {
"X": -270.3264,
"Y": 202.14117,
"Z": -232.75537
},
"TerritoryId": 620,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -270.3756,
"Y": 200.71988,
"Z": -237.96118
},
"TerritoryId": 620,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"Position": {
"X": -281.3983,
"Y": 200.71988,
"Z": -294.9439
},
"StopDistance": 0.25,
"TerritoryId": 620,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7555,
8047
]
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1020380,
"Position": {
"X": -281.5138,
"Y": 200.71988,
"Z": -294.0871
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020382,
"Position": {
"X": -284.596,
"Y": 200.71988,
"Z": -287.2511
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,82 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020382,
"Position": {
"X": -284.596,
"Y": 200.71988,
"Z": -287.2511
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -281.5496,
"Y": 200.71988,
"Z": -258.17767
},
"TerritoryId": 620,
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": -281.22574,
"Y": 192.18245,
"Z": -239.78777
}
}
},
{
"DataId": 2008684,
"Position": {
"X": -200.4273,
"Y": 95.26196,
"Z": -448.23383
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020385,
"Position": {
"X": -111.711365,
"Y": 105.71431,
"Z": -364.065
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020387,
"Position": {
"X": -140.94757,
"Y": 104.16588,
"Z": -401.81586
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,103 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020387,
"Position": {
"X": -140.94757,
"Y": 104.16588,
"Z": -401.81586
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020841,
"Position": {
"X": 146.01355,
"Y": 118.1921,
"Z": -730.4951
},
"TerritoryId": 620,
"InteractionType": "Interact",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020511,
"Position": {
"X": 143.81628,
"Y": 118.1921,
"Z": -732.93665
},
"StopDistance": 5,
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020512,
"Position": {
"X": 35.080444,
"Y": 117.831955,
"Z": -728.0537
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 165.07161,
"Y": 13.02367,
"Z": -91.94302
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Rhalgr's Reach",
"AethernetShortcut": [
"[Rhalgr's Reach] Aetheryte Plaza",
"[Rhalgr's Reach] Northeastern Rhalgr's Reach"
],
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
},
{
"DataId": 1020338,
"Position": {
"X": 170.30591,
"Y": 13.02367,
"Z": -93.06476
},
"StopDistance": 7,
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,84 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020842,
"Position": {
"X": 81.55945,
"Y": 118.15579,
"Z": -717.89124
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Peaks - Ala Gannha",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -53.208252,
"Y": 104.518814,
"Z": -739.1928
},
"TerritoryId": 620,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 7447,
"MinimumKillCount": 1,
"RewardItemId": 2002391,
"RewardItemCount": 1
}
]
},
{
"Position": {
"X": -476.92078,
"Y": 48.885674,
"Z": -732.2957
},
"TerritoryId": 620,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 7450,
"MinimumKillCount": 1,
"RewardItemId": 2002392,
"RewardItemCount": 1
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020842,
"Position": {
"X": 81.55945,
"Y": 118.15579,
"Z": -717.89124
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
]
}
]
}

View File

@ -0,0 +1,73 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020848,
"Position": {
"X": 113.725464,
"Y": 118.15579,
"Z": -715.6634
},
"TerritoryId": 620,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Peaks - Ala Gannha",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020857,
"Position": {
"X": -768.91736,
"Y": 81.467896,
"Z": -300.8011
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2008680,
"Position": {
"X": -763.97345,
"Y": 81.89514,
"Z": -298.3902
},
"TerritoryId": 620,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020848,
"Position": {
"X": 113.725464,
"Y": 118.15579,
"Z": -715.6634
},
"TerritoryId": 620,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Peaks - Ala Gannha"
}
]
}
]
}

View File

@ -0,0 +1,43 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019466,
"Position": {
"X": 170.91626,
"Y": 13.02367,
"Z": -91.38635
},
"StopDistance": 7,
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020390,
"Position": {
"X": 164.2633,
"Y": 13.02367,
"Z": -88.91437
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,103 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020332,
"Position": {
"X": 164.90417,
"Y": 13.023668,
"Z": -91.50836
},
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020342,
"Position": {
"X": -137.86536,
"Y": 0.59805053,
"Z": -80.27777
},
"TerritoryId": 635,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Rhalgr's Reach] Northeastern Rhalgr's Reach",
"[Rhalgr's Reach] Western Rhalgr's Reach"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020324,
"Position": {
"X": -35.90454,
"Y": 18.50759,
"Z": 134.14197
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": -611.21484,
"Y": 130,
"Z": -503.3509
},
"TerritoryId": 612,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Fringes - Castrum Oriens"
},
{
"DataId": 1020304,
"Position": {
"X": -606.7445,
"Y": 130,
"Z": -506.95053
},
"StopDistance": 7,
"TerritoryId": 612,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020526,
"Position": {
"X": -609.6132,
"Y": 130,
"Z": -501.12158
},
"StopDistance": 5,
"TerritoryId": 612,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,59 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020354,
"Position": {
"X": -605.2186,
"Y": 130,
"Z": -506.2486
},
"TerritoryId": 612,
"InteractionType": "AcceptQuest",
"StopDistance": 7,
"AetheryteShortcut": "Fringes - Castrum Oriens",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020399,
"Position": {
"X": -115.80072,
"Y": 40.833466,
"Z": -37.766113
},
"TerritoryId": 612,
"InteractionType": "SinglePlayerDuty"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020400,
"Position": {
"X": 71.30542,
"Y": 0.024691548,
"Z": -75.76111
},
"StopDistance": 5,
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,77 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020400,
"Position": {
"X": 71.30542,
"Y": 0.024691548,
"Z": -75.76111
},
"StopDistance": 5,
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020411,
"Position": {
"X": 50.644653,
"Y": 0,
"Z": 3.0975342
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 2.6558871,
"Y": -2.1714334,
"Z": -3.1224606
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"Mount": true
},
{
"Position": {
"X": -29.991734,
"Y": -0.5866744,
"Z": -14.3459
},
"TerritoryId": 635,
"InteractionType": "WalkTo"
},
{
"DataId": 1020416,
"Position": {
"X": -135.82056,
"Y": 0.59805036,
"Z": -83.634705
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,129 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020420,
"Position": {
"X": -139.63531,
"Y": 0.598051,
"Z": -81.498474
},
"StopDistance": 7,
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019486,
"Position": {
"X": -116.746826,
"Y": 0.6342248,
"Z": -55.832825
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2008158,
"Position": {
"X": -110.21594,
"Y": 2.2735596,
"Z": -72.95343
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 => 1 16 0 0 0 128",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 2008160,
"Position": {
"X": -133.25708,
"Y": 1.8463135,
"Z": -56.595703
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "1 16 0 0 0 128 -> 2 32 0 0 0 160",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"Position": {
"X": -128.45901,
"Y": 0.59804773,
"Z": -52.17099
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"DataId": 2008159,
"Position": {
"X": -139.23859,
"Y": 1.9073486,
"Z": -33.707214
},
"TerritoryId": 635,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020422,
"Position": {
"X": -85.923584,
"Y": -3.615388E-12,
"Z": -18.051514
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,78 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020431,
"Position": {
"X": -91.233765,
"Y": -3.968323E-12,
"Z": -19.821533
},
"StopDistance": 5,
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020400,
"Position": {
"X": 71.30542,
"Y": 0.024691548,
"Z": -75.76111
},
"TerritoryId": 635,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Rhalgr's Reach] Western Rhalgr's Reach",
"[Rhalgr's Reach] Northeastern Rhalgr's Reach"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020432,
"Position": {
"X": -612.3904,
"Y": 130.1009,
"Z": -481.68158
},
"TerritoryId": 612,
"InteractionType": "Interact",
"AetheryteShortcut": "Fringes - Castrum Oriens"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020525,
"Position": {
"X": -610.2846,
"Y": 130,
"Z": -501.8845
},
"TerritoryId": 612,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,62 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020526,
"Position": {
"X": -609.6132,
"Y": 130,
"Z": -501.12158
},
"TerritoryId": 612,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Fringes - Castrum Oriens",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020434,
"Position": {
"X": 13.534729,
"Y": 43.999996,
"Z": -36.850586
},
"TerritoryId": 128,
"InteractionType": "Interact",
"AetheryteShortcut": "Limsa Lominsa",
"AethernetShortcut": [
"[Limsa Lominsa] Aetheryte Plaza",
"[Limsa Lominsa] The Aftcastle"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020434,
"Position": {
"X": 13.534729,
"Y": 43.999996,
"Z": -36.850586
},
"TerritoryId": 128,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,135 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020434,
"Position": {
"X": 13.534729,
"Y": 43.999996,
"Z": -36.850586
},
"TerritoryId": 128,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020436,
"Position": {
"X": 40.57373,
"Y": 20.495369,
"Z": -648.73737
},
"TerritoryId": 156,
"InteractionType": "Interact",
"AetheryteShortcut": "Mor Dhona"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"TerritoryId": 156,
"DataId": 2002881,
"Position": {
"X": 21.133728,
"Y": 22.323914,
"Z": -631.281
},
"InteractionType": "Interact",
"TargetTerritoryId": 351
},
{
"DataId": 1020499,
"Position": {
"X": -7.7058716,
"Y": 0.009977884,
"Z": 6.881775
},
"TerritoryId": 351,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1020529,
"Position": {
"X": 6.6071167,
"Y": 0,
"Z": -8.46875
},
"TerritoryId": 351,
"InteractionType": "Interact",
"$": "1 0 0 0 0 128 -> 2 0 0 0 0 160",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1020528,
"Position": {
"X": 34.10388,
"Y": -1,
"Z": 1.4190674
},
"TerritoryId": 351,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 2002879,
"Position": {
"X": -0.015319824,
"Y": 2.9754639,
"Z": 27.481445
},
"TerritoryId": 351,
"InteractionType": "Interact",
"TargetTerritoryId": 156
},
{
"DataId": 1020436,
"Position": {
"X": 40.57373,
"Y": 20.495369,
"Z": -648.73737
},
"TerritoryId": 156,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,111 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020436,
"Position": {
"X": 40.57373,
"Y": 20.495369,
"Z": -648.73737
},
"TerritoryId": 156,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Mor Dhona",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020439,
"Position": {
"X": -355.55048,
"Y": 7.9999094,
"Z": 38.712036
},
"TerritoryId": 129,
"InteractionType": "Interact",
"AetheryteShortcut": "Limsa Lominsa",
"AethernetShortcut": [
"[Limsa Lominsa] Aetheryte Plaza",
"[Limsa Lominsa] Arcanists' Guild"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020442,
"Position": {
"X": -357.65625,
"Y": 8.000015,
"Z": 45.822754
},
"StopDistance": 7,
"TerritoryId": 129,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_STMBDA139_02469_EVENTAREA_WARP_YESNO_TITLE",
"Yes": true
}
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020447,
"Position": {
"X": 5.0201416,
"Y": 21.347214,
"Z": -39.07837
},
"TerritoryId": 680,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"TerritoryId": 680,
"InteractionType": "Duty",
"ContentFinderConditionId": 238
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020454,
"Position": {
"X": -123.09454,
"Y": -6.9999976,
"Z": -58.884644
},
"StopDistance": 5,
"TerritoryId": 628,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,174 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019470,
"Position": {
"X": 152.11719,
"Y": 13.1533165,
"Z": -118.48633
},
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019473,
"Position": {
"X": 51.285522,
"Y": 23.640764,
"Z": -288.96008
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "0 16 0 0 0 0 -> 1 16 0 0 0 128",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1019476,
"Position": {
"X": 77.25635,
"Y": 0,
"Z": -14.175659
},
"TerritoryId": 635,
"InteractionType": "Interact",
"AetheryteShortcut": "Rhalgr's Reach",
"$": "1 16 0 0 0 128 -> 2 16 0 0 0 160",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"Position": {
"X": 0.3239292,
"Y": -2.1258624,
"Z": 5.0789523
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"SkipConditions": {
"StepIf": {
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
}
}
},
{
"Position": {
"X": -42.27211,
"Y": -0.059376776,
"Z": -115.03399
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"SkipConditions": {
"StepIf": {
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
}
},
{
"DataId": 1019486,
"Position": {
"X": -116.746826,
"Y": 0.6342248,
"Z": -55.832825
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "2 16 0 0 0 160 -> 3 16 0 0 0 176",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
},
{
"DataId": 1019490,
"Position": {
"X": -6.240967,
"Y": -0.036807638,
"Z": -119.18823
},
"TerritoryId": 635,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 79.89871,
"Y": -0.38368523,
"Z": -108.87432
},
"TerritoryId": 635,
"InteractionType": "WalkTo"
},
{
"DataId": 1019470,
"Position": {
"X": 152.11719,
"Y": 13.1533165,
"Z": -118.48633
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,169 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019476,
"Position": {
"X": 77.25635,
"Y": 0,
"Z": -14.175659
},
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019471,
"Position": {
"X": 149.49255,
"Y": 12.918162,
"Z": -137.07184
},
"TerritoryId": 635,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2007954,
"Position": {
"X": 89.52466,
"Y": 0.5340576,
"Z": -96.23871
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "0 32 0 0 0 0 -> 1 48 0 0 0 16",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
},
{
"Position": {
"X": 35.282135,
"Y": -2.2715392,
"Z": -115.13004
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"SkipConditions": {
"StepIf": {
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
}
}
},
{
"DataId": 2007951,
"Position": {
"X": 24.887451,
"Y": -0.3204956,
"Z": -119.85962
},
"TerritoryId": 635,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 2007953,
"Position": {
"X": -35.568848,
"Y": 9.262146,
"Z": 100.20593
},
"TerritoryId": 635,
"InteractionType": "Interact",
"AetheryteShortcut": "Rhalgr's Reach",
"$": "2 64 0 0 0 80 -> 3 80 0 0 0 112",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 2007952,
"Position": {
"X": -33.40204,
"Y": -0.16790771,
"Z": -16.800232
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "1 48 0 0 0 16 -> 2 64 0 0 0 80",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 0.3266226,
"Y": -2.281856,
"Z": -3.879818
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"Mount": true
},
{
"DataId": 1019476,
"Position": {
"X": 77.25635,
"Y": 0,
"Z": -14.175659
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,155 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"Position": {
"X": 0.3266226,
"Y": -2.281856,
"Z": -3.879818
},
"TerritoryId": 635,
"InteractionType": "WalkTo",
"Mount": true
},
{
"DataId": 1021167,
"Position": {
"X": -43.961243,
"Y": 0,
"Z": -15.030151
},
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1021168,
"Position": {
"X": -160.38757,
"Y": -4.5343585,
"Z": -149.95044
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1021169,
"Position": {
"X": 19.485779,
"Y": -0.9195468,
"Z": 98.5885
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "1 0 0 0 0 128 -> 2 0 0 0 0 192",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 1021171,
"Position": {
"X": 79.78931,
"Y": -0.19127949,
"Z": 56.809326
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "2 0 0 0 0 192 -> 3 0 0 0 0 208",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
},
{
"DataId": 1021170,
"Position": {
"X": 76.21875,
"Y": 0,
"Z": -12.466675
},
"TerritoryId": 635,
"InteractionType": "Interact",
"$": "3 0 0 0 0 208 -> 4 0 0 0 0 240",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1021172,
"Position": {
"X": 179.85803,
"Y": 13.567484,
"Z": -144.15204
},
"TerritoryId": 635,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
8
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1021167,
"Position": {
"X": -43.961243,
"Y": 0,
"Z": -15.030151
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Rhalgr's Reach] Northeastern Rhalgr's Reach",
"[Rhalgr's Reach] Western Rhalgr's Reach"
]
}
]
}
]
}

View File

@ -0,0 +1,61 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1023298,
"Position": {
"X": 22.354431,
"Y": -0.33829167,
"Z": 3.7384033
},
"TerritoryId": 635,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Rhalgr's Reach",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2008813,
"Position": {
"X": 143.5415,
"Y": 14.206055,
"Z": -164.72119
},
"TerritoryId": 635,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Rhalgr's Reach] Aetheryte Plaza",
"[Rhalgr's Reach] Northeastern Rhalgr's Reach"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1023638,
"Position": {
"X": 152.84961,
"Y": 13.097335,
"Z": -94.16345
},
"TerritoryId": 635,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,63 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020450,
"Position": {
"X": -124.52893,
"Y": -6.9999976,
"Z": -55.832825
},
"StopDistance": 5,
"TerritoryId": 628,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020455,
"Position": {
"X": -63.34027,
"Y": -2.711526,
"Z": -58.396362
},
"StopDistance": 5,
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"TerritoryId": 628,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Kugane] Shiokaze Hostelry"
},
{
"TerritoryId": 628,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Kugane"
},
{
"DataId": 1020460,
"Position": {
"X": 17.92926,
"Y": -1.5668043E-05,
"Z": -41.21466
},
"TerritoryId": 628,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,77 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020460,
"Position": {
"X": 17.92926,
"Y": -1.5668043E-05,
"Z": -41.21466
},
"TerritoryId": 628,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Kugane",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020461,
"Position": {
"X": 24.582275,
"Y": 4,
"Z": 68.28406
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"TerritoryId": 628,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Kugane] Kogane Dori Markets"
},
{
"DataId": 1022359,
"Position": {
"X": 88.12085,
"Y": 4,
"Z": 69.7489
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020462,
"Position": {
"X": 95.140015,
"Y": 8.02,
"Z": 151.9646
},
"TerritoryId": 628,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,63 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020462,
"Position": {
"X": 95.140015,
"Y": 8.02,
"Z": 151.9646
},
"TerritoryId": 628,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Kugane",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 628,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Kugane] The Ruby Bazaar"
},
{
"DataId": 1020480,
"Position": {
"X": 150.80493,
"Y": 14.7757225,
"Z": 92.454346
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020465,
"Position": {
"X": 1.5411377,
"Y": 0,
"Z": -0.96136475
},
"StopDistance": 7,
"TerritoryId": 639,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,233 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020465,
"Position": {
"X": 1.5411377,
"Y": 0,
"Z": -0.96136475
},
"StopDistance": 7,
"TerritoryId": 639,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1022086,
"Position": {
"X": 142.47339,
"Y": 14.7757225,
"Z": 90.4707
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 142.47339,
"Y": 14.7757225,
"Z": 90.4707
},
"TerritoryId": 628,
"InteractionType": "UseItem",
"ItemId": 2002099
}
]
},
{
"Sequence": 3,
"Steps": [
{
"TerritoryId": 628,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Kugane] Rakuza District",
"AethernetShortcut": [
"[Kugane] The Ruby Bazaar",
"[Kugane] Aetheryte Plaza"
]
},
{
"TerritoryId": 628,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Kugane] Bokairo Inn"
},
{
"DataId": 1018982,
"Position": {
"X": -83.08539,
"Y": 18.05,
"Z": -191.14978
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1019002,
"Position": {
"X": -48.05072,
"Y": -2.9,
"Z": -50.247986
},
"TerritoryId": 628,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Kugane] Bokairo Inn",
"[Kugane] Shiokaze Hostelry"
]
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1020471,
"Position": {
"X": -81.83417,
"Y": -3,
"Z": 34.50061
},
"TerritoryId": 628,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Kugane] Shiokaze Hostelry",
"[Kugane] Kogane Dori Markets"
],
"$": "? ? ? ? ? ? -> 16 16 16 0 0 32",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1020469,
"Position": {
"X": -108.50696,
"Y": -5.999997,
"Z": 72.098755
},
"TerritoryId": 628,
"InteractionType": "Interact",
"$": "16 16 16 0 0 32 -> 32 17 16 0 0 160",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1020470,
"Position": {
"X": -158.64807,
"Y": 4.000002,
"Z": 86.96118
},
"TerritoryId": 628,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": -132.33249,
"Y": 4.510561,
"Z": 117.53347
},
"StopDistance": 0.25,
"TerritoryId": 628,
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": -131.75923,
"Y": 6.245034,
"Z": 123.01645
},
"StopDistance": 0.5
}
},
{
"Position": {
"X": -125.70999,
"Y": 8.414458,
"Z": 123.2643
},
"TerritoryId": 628,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"Position": {
"X": -124.25544,
"Y": -4.999999,
"Z": 145.54941
},
"TerritoryId": 628,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"TerritoryId": 628,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Kugane] Pier #1",
"DisableNavmesh": true
},
{
"TerritoryId": 628,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Kugane] Thavnairian Consulate"
},
{
"DataId": 1020472,
"Position": {
"X": -32.39496,
"Y": 0.029811792,
"Z": -68.3147
},
"TerritoryId": 628,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Kugane] Thavnairian Consulate",
"[Kugane] Shiokaze Hostelry"
]
}
]
}
]
}

View File

@ -0,0 +1,132 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020472,
"Position": {
"X": -32.39496,
"Y": 0.029811792,
"Z": -68.3147
},
"TerritoryId": 628,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Kugane",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020473,
"Position": {
"X": -34.65332,
"Y": 14.001162,
"Z": -46.616333
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1019070,
"Position": {
"X": 151.20166,
"Y": 14.7757225,
"Z": 95.78088
},
"TerritoryId": 628,
"InteractionType": "Interact",
"TargetTerritoryId": 639,
"AethernetShortcut": [
"[Kugane] Shiokaze Hostelry",
"[Kugane] The Ruby Bazaar"
]
},
{
"DataId": 1020465,
"Position": {
"X": 1.5411377,
"Y": 0,
"Z": -0.96136475
},
"TerritoryId": 639,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020468,
"Position": {
"X": -0.9309082,
"Y": 0.024139475,
"Z": -0.13739014
},
"TerritoryId": 639,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 2008134,
"Position": {
"X": -0.015319824,
"Y": 1.1443481,
"Z": 13.504211
},
"TerritoryId": 639,
"InteractionType": "Interact",
"TargetTerritoryId": 628
},
{
"DataId": 1020475,
"Position": {
"X": -52.140076,
"Y": 16.75975,
"Z": -6.729248
},
"TerritoryId": 628,
"InteractionType": "SinglePlayerDuty",
"AethernetShortcut": [
"[Kugane] The Ruby Bazaar",
"[Kugane] Kogane Dori Markets"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020476,
"Position": {
"X": 147.75305,
"Y": 14.775722,
"Z": 91.721924
},
"TerritoryId": 628,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,120 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020476,
"Position": {
"X": 147.75305,
"Y": 14.775722,
"Z": 91.721924
},
"TerritoryId": 628,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020464,
"Position": {
"X": 0.045776367,
"Y": 0,
"Z": -2.3041382
},
"TerritoryId": 639,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2008134,
"Position": {
"X": -0.015319824,
"Y": 1.1443481,
"Z": 13.504211
},
"TerritoryId": 639,
"InteractionType": "Interact",
"TargetTerritoryId": 628
},
{
"TerritoryId": 628,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Kugane] Sekiseigumi Barracks",
"AethernetShortcut": [
"[Kugane] The Ruby Bazaar",
"[Kugane] Aetheryte Plaza"
]
},
{
"DataId": 1020481,
"Position": {
"X": 125.596924,
"Y": 14.804411,
"Z": -102.861084
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 2007910,
"Position": {
"X": 125.322266,
"Y": 14.358704,
"Z": -100.48071
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 2008333,
"Position": {
"X": 125.41394,
"Y": 14.358704,
"Z": -100.51117
},
"TerritoryId": 628,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020483,
"Position": {
"X": 127.79431,
"Y": 14.650923,
"Z": -101.701416
},
"StopDistance": 7,
"TerritoryId": 628,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,90 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020484,
"Position": {
"X": 126.57361,
"Y": 14.054269,
"Z": -99.47363
},
"StopDistance": 7,
"TerritoryId": 628,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Kugane",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019070,
"Position": {
"X": 151.20166,
"Y": 14.7757225,
"Z": 95.78088
},
"TerritoryId": 628,
"InteractionType": "Interact",
"TargetTerritoryId": 639,
"AethernetShortcut": [
"[Kugane] Sekiseigumi Barracks",
"[Kugane] The Ruby Bazaar"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020485,
"Position": {
"X": -124.1322,
"Y": -6.999998,
"Z": -58.51837
},
"TerritoryId": 628,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_STMBDA207_02476_Q1_000_000",
"Answer": "TEXT_STMBDA207_02476_A1_000_001"
}
],
"AethernetShortcut": [
"[Kugane] The Ruby Bazaar",
"[Kugane] Shiokaze Hostelry"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019891,
"Position": {
"X": 852.4147,
"Y": 5.923008,
"Z": 847.7759
},
"StopDistance": 7,
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,76 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019891,
"Position": {
"X": 852.4147,
"Y": 5.923008,
"Z": 847.7759
},
"StopDistance": 7,
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019893,
"Position": {
"X": 736.1714,
"Y": -0.600044,
"Z": 822.96484
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 594.744,
"Y": -0.41014904,
"Z": 835.82776
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"DataId": 1019896,
"Position": {
"X": 560.54016,
"Y": 0.44452444,
"Z": 828.21387
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019898,
"Position": {
"X": 464.5609,
"Y": 30.21226,
"Z": 791.53125
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,106 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019898,
"Position": {
"X": 464.5609,
"Y": 30.21226,
"Z": 791.53125
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2007995,
"Position": {
"X": 423.54468,
"Y": 15.823547,
"Z": 801.541
},
"TerritoryId": 613,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818178
},
{
"Position": {
"X": 375.51163,
"Y": 9.2976055,
"Z": 788.4051
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"DisableNavmesh": true,
"Mount": true
},
{
"DataId": 2007848,
"Position": {
"X": 150.46924,
"Y": 1.2054443,
"Z": 551.9645
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1019912,
"Position": {
"X": 116.105835,
"Y": -0.5,
"Z": 499.32092
},
"StopDistance": 7,
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 377.86084,
"Y": 10.638865,
"Z": 792.4622
},
"StopDistance": 0.5,
"TerritoryId": 613,
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": 384.9748,
"Y": 14.661837,
"Z": 793.96063
}
}
},
{
"DataId": 1023650,
"Position": {
"X": 404.53186,
"Y": 19.5081,
"Z": 755.6113
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,171 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1023650,
"Position": {
"X": 404.53186,
"Y": 19.5081,
"Z": 755.6113
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1023683,
"Position": {
"X": 466.88025,
"Y": 30.398874,
"Z": 792.813
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 553.3004,
"Y": 0.94003797,
"Z": 833.7598
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"DataId": 1019915,
"Position": {
"X": 576.5315,
"Y": 0.94003797,
"Z": 849.3323
},
"TerritoryId": 613,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_STMBDA303_02479_Q1_000_021",
"Answer": "TEXT_STMBDA303_02479_A1_000_022"
}
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1019919,
"Position": {
"X": -711.32983,
"Y": -0.10000001,
"Z": -301.83875
},
"StopDistance": 5,
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1019923,
"Position": {
"X": -742.79395,
"Y": 2.129947,
"Z": -312.3064
},
"StopDistance": 5,
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"Position": {
"X": -462.84192,
"Y": -0.3000002,
"Z": -533.4066
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"DataId": 1019925,
"Position": {
"X": -423.78882,
"Y": 3.201082,
"Z": -545.89154
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 6,
"Steps": [
{
"Position": {
"X": -436.89062,
"Y": 1.4498298,
"Z": -547.5498
},
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
8029
]
}
]
},
{
"Sequence": 7,
"Steps": [
{
"DataId": 1019928,
"Position": {
"X": -228.93109,
"Y": 0.39421302,
"Z": -530.44934
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019930,
"Position": {
"X": -58.335266,
"Y": 1.9963632,
"Z": -597.0703
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,244 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019929,
"Position": {
"X": -57.724915,
"Y": 2.0040545,
"Z": -598.2605
},
"StopDistance": 5,
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019931,
"Position": {
"X": 54.703613,
"Y": 2.4445753,
"Z": -595.4528
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Ruby Sea - Onokoro"
},
{
"Position": {
"X": 20.867485,
"Y": 25.111027,
"Z": -634.323
},
"TerritoryId": 613,
"StopDistance": 0.25,
"InteractionType": "Jump",
"JumpDestination": {
"Position": {
"X": 20.556915,
"Y": 26.25455,
"Z": -633.04
}
}
},
{
"DataId": 2007999,
"Position": {
"X": 21.286316,
"Y": 24.002441,
"Z": -623.621
},
"TerritoryId": 613,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818182
},
{
"Position": {
"X": 20.3128,
"Y": 26.236794,
"Z": -629.7924
},
"TerritoryId": 613,
"InteractionType": "Jump",
"StopDistance": 0.25,
"Mount": true,
"JumpDestination": {
"Position": {
"X": 20.867485,
"Y": 25.111027,
"Z": -634.323
}
}
},
{
"DataId": 1021505,
"Position": {
"X": 79.42322,
"Y": 33.00897,
"Z": -669.9474
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1019938,
"Position": {
"X": 68.46716,
"Y": 25.007832,
"Z": -643.8239
},
"TerritoryId": 613,
"InteractionType": "Interact",
"Mount": true
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 2007852,
"Position": {
"X": 109.17822,
"Y": 2.670288,
"Z": -619.95886
},
"TerritoryId": 613,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 16 1 0 0 0 128",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"Position": {
"X": 28.796398,
"Y": 1.1177638,
"Z": -561.9825
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"SkipConditions": {
"StepIf": {
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
}
}
},
{
"DataId": 1021508,
"Position": {
"X": 13.565186,
"Y": 5.3493934,
"Z": -482.87177
},
"TerritoryId": 613,
"InteractionType": "Interact",
"$": "16 1 0 0 0 128 -> 33 1 0 0 0 160",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 2007854,
"Position": {
"X": -107.74402,
"Y": 2.1209717,
"Z": -521.32446
},
"TerritoryId": 613,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": -61.59895,
"Y": 0.75750256,
"Z": -577.81134
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": 47.88596,
"Y": 2.0565174,
"Z": -591.9783
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": 47.516483,
"Y": 8.753822,
"Z": -612.76074
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"DataId": 1019939,
"Position": {
"X": 69.53528,
"Y": 25.007832,
"Z": -643.6713
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,143 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1021511,
"Position": {
"X": 31.3573,
"Y": 3.245383,
"Z": -602.74664
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2007911,
"Position": {
"X": 33.98181,
"Y": 4.1046753,
"Z": -603.87585
},
"StopDistance": 4,
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2007912,
"Position": {
"X": 138.10938,
"Y": 0.9613037,
"Z": -688.1666
},
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "AfterItemUse",
"KillEnemyDataIds": [
6676
],
"ItemId": 2002093,
"$": "0 2 0 0 0 0 -> 16 17 0 0 0 128"
},
{
"DataId": 2007913,
"Position": {
"X": 256.21423,
"Y": -0.015319824,
"Z": -673.4874
},
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "AfterItemUse",
"KillEnemyDataIds": [
6676
],
"ItemId": 2002093
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": 446.98648,
"Y": 9.27001,
"Z": -657.7555
},
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
6618
]
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1019946,
"Position": {
"X": 449.39343,
"Y": 9.2068815,
"Z": -661.21924
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1019939,
"Position": {
"X": 69.53528,
"Y": 25.007832,
"Z": -643.6713
},
"TerritoryId": 613,
"InteractionType": "Interact",
"AetheryteShortcut": "Ruby Sea - Onokoro"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1021505,
"Position": {
"X": 79.42322,
"Y": 33.00897,
"Z": -669.9474
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,126 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1021505,
"Position": {
"X": 79.42322,
"Y": 33.00897,
"Z": -669.9474
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019951,
"Position": {
"X": 152.6665,
"Y": 1.1855946,
"Z": -500.3586
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 159.34975,
"Y": -0.60327315,
"Z": -494.75882
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"Position": {
"X": 529.52386,
"Y": -0.2066946,
"Z": -264.25665
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"DataId": 1019952,
"Position": {
"X": 732.63135,
"Y": 3.4147437,
"Z": -237.72034
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2008002,
"Position": {
"X": 694.7584,
"Y": 1.9073486,
"Z": -53.48291
},
"TerritoryId": 613,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818185
},
{
"Position": {
"X": 637.34863,
"Y": 3.9160664,
"Z": -62.50255
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": 540.77136,
"Y": -64.228035,
"Z": -173.20897
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019956,
"Position": {
"X": 422.11023,
"Y": -98.96018,
"Z": -223.10223
},
"StopDistance": 5,
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,114 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019958,
"Position": {
"X": 420.34033,
"Y": -99.19678,
"Z": -221.36267
},
"StopDistance": 7,
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019178,
"Position": {
"X": 319.69165,
"Y": -120.03494,
"Z": -250.90417
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1019960,
"Position": {
"X": 321.3092,
"Y": -120.01774,
"Z": -248.2185
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Ruby Sea - Tamamizu"
},
{
"Position": {
"X": 543.42303,
"Y": -61.394184,
"Z": -153.51427
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": 647.60547,
"Y": 3.3050807,
"Z": -55.93293
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": 664.2144,
"Y": 1.8086157,
"Z": -5.028036
},
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 6638,
"MinimumKillCount": 1,
"RewardItemId": 2002094,
"RewardItemCount": 1
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019958,
"Position": {
"X": 420.34033,
"Y": -99.19678,
"Z": -221.36267
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Ruby Sea - Tamamizu"
}
]
}
]
}

View File

@ -0,0 +1,68 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019958,
"Position": {
"X": 420.34033,
"Y": -99.19678,
"Z": -221.36267
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Ruby Sea - Tamamizu",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019969,
"Position": {
"X": 322.56042,
"Y": -120.39043,
"Z": -300.5265
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 22.288645,
"Y": -196.2301,
"Z": -155.5739
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"$": "Sui-no-Sato, NE outside"
},
{
"DataId": 1019970,
"Position": {
"X": 19.424683,
"Y": -197.53093,
"Z": -143.93835
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"Mount": false
}
]
}
]
}

View File

@ -0,0 +1,52 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019970,
"Position": {
"X": 19.424683,
"Y": -197.53093,
"Z": -143.93835
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019197,
"Position": {
"X": -8.926575,
"Y": -187.08374,
"Z": -95.018005
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019971,
"Position": {
"X": 20.248657,
"Y": -197.56319,
"Z": -145.4032
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"Mount": true
}
]
}
]
}

View File

@ -0,0 +1,95 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019971,
"Position": {
"X": 20.248657,
"Y": -197.56319,
"Z": -145.4032
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 21.067955,
"Y": -197.78902,
"Z": -155.23956
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"$": "Sui-no-Sato, NE inside"
},
{
"DataId": 1019978,
"Position": {
"X": -227.86298,
"Y": -178.2102,
"Z": 185.74805
},
"TerritoryId": 613,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -220.46619,
"Y": -193.02971,
"Z": 222.901
},
"TerritoryId": 613,
"InteractionType": "UseItem",
"StopDistance": 1,
"Fly": true,
"ItemId": 2002243
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2007920,
"Position": {
"X": -220.6607,
"Y": -192.49261,
"Z": 221.51514
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019978,
"Position": {
"X": -227.86298,
"Y": -178.2102,
"Z": 185.74805
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"Fly": true
}
]
}
]
}

View File

@ -0,0 +1,53 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019978,
"Position": {
"X": -227.86298,
"Y": -178.2102,
"Z": 185.74805
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"Mount": false
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019178,
"Position": {
"X": 319.69165,
"Y": -120.03494,
"Z": -250.90417
},
"TerritoryId": 613,
"InteractionType": "Interact",
"AetheryteShortcut": "Ruby Sea - Tamamizu"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019961,
"Position": {
"X": 323.0487,
"Y": -120.03495,
"Z": -249.01202
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,185 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019961,
"Position": {
"X": 323.0487,
"Y": -120.03495,
"Z": -249.01202
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_STMBDA312_02488_Q1_000_013",
"Answer": "TEXT_STMBDA312_02488_A1_000_014"
}
],
"AetheryteShortcut": "Ruby Sea - Tamamizu",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 322.05746,
"Y": -121.20501,
"Z": -314.00232
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"DataId": 1019981,
"Position": {
"X": -470.81714,
"Y": -94.80432,
"Z": 191.85156
},
"TerritoryId": 613,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -659.02277,
"Y": -21.210977,
"Z": 270.70654
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"Fly": true,
"StopDistance": 0.25
},
{
"Position": {
"X": -692.9208,
"Y": -0.3971126,
"Z": 261.18878
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -721.99646,
"Y": 0.08899796,
"Z": 248.7757
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -739.8565,
"Y": 4.6514797,
"Z": 233.82903
},
"StopDistance": 0.5,
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7557,
7558
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": -701.18787,
"Y": 6.9741554,
"Z": 19.126472
},
"StopDistance": 0.5,
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7559,
8041,
8042
]
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1020624,
"Position": {
"X": -740.2304,
"Y": 8.312634,
"Z": 118.18103
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 2008004,
"Position": {
"X": -805.7832,
"Y": 36.575806,
"Z": 235.18726
},
"TerritoryId": 613,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818187
},
{
"DataId": 1019983,
"Position": {
"X": -835.7214,
"Y": 51.33433,
"Z": 38.986816
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019985,
"Position": {
"X": -797.3602,
"Y": 48.41823,
"Z": 149.64526
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,98 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019985,
"Position": {
"X": -797.3602,
"Y": 48.41823,
"Z": 149.64526
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2007853,
"Position": {
"X": -838.9868,
"Y": 52.017944,
"Z": 38.010254
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"TerritoryId": 613,
"InteractionType": "Duty",
"ContentFinderConditionId": 243
}
]
},
{
"Sequence": 3
},
{
"Sequence": 4,
"Steps": [
{
"Position": {
"X": -596.66895,
"Y": -45.822067,
"Z": -272.77194
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -625.9836,
"Y": -0.5999986,
"Z": -278.578
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"DataId": 1019987,
"Position": {
"X": -727.657,
"Y": 0.3198316,
"Z": -316.88416
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019988,
"Position": {
"X": -761.83716,
"Y": 4.763445,
"Z": -455.2224
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,119 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019988,
"Position": {
"X": -761.83716,
"Y": 4.763445,
"Z": -455.2224
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019991,
"Position": {
"X": -807.3701,
"Y": 8.49827,
"Z": -418.87543
},
"TerritoryId": 613,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 0 16 0 0 0 64",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"Position": {
"X": -796.8525,
"Y": 8.05057,
"Z": -418.3381
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"SkipConditions": {
"StepIf": {
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
}
}
},
{
"DataId": 1019990,
"Position": {
"X": -794.6136,
"Y": 4.993313,
"Z": -372.67108
},
"TerritoryId": 613,
"InteractionType": "Interact",
"$": "0 16 0 0 0 64 -> 16 32 0 0 0 192",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
],
"DisableNavmesh": true
},
{
"DataId": 1019992,
"Position": {
"X": -791.2566,
"Y": 21.428185,
"Z": -480.24725
},
"TerritoryId": 613,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019989,
"Position": {
"X": -761.83716,
"Y": 4.763445,
"Z": -453.4829
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,67 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020186,
"Position": {
"X": -761.7761,
"Y": 4.763445,
"Z": -460.01373
},
"StopDistance": 5,
"TerritoryId": 613,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -831.06116,
"Y": 20.168653,
"Z": -266.25217
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"TargetTerritoryId": 614
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1019994,
"Position": {
"X": 790.4325,
"Y": 99.489136,
"Z": -290.8523
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1019997,
"Position": {
"X": 527.9164,
"Y": 43.697002,
"Z": -156.05408
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,73 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1021509,
"Position": {
"X": 107.80493,
"Y": 0.80715245,
"Z": -574.548
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2008475,
"Position": {
"X": -103.01367,
"Y": 2.2124634,
"Z": -856.199
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1022401,
"Position": {
"X": -158.89221,
"Y": -0.5,
"Z": -898.0087
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1021509,
"Position": {
"X": 107.80493,
"Y": 0.80715245,
"Z": -574.548
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro"
}
]
}
]
}

View File

@ -0,0 +1,82 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1021517,
"Position": {
"X": 85.09949,
"Y": 41.112656,
"Z": -717.89124
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1021513,
"Position": {
"X": 41.000854,
"Y": 21.22528,
"Z": -634.0276
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 97.741745,
"Y": 0.95900655,
"Z": -790.4652
},
"TerritoryId": 613,
"InteractionType": "WalkTo"
},
{
"DataId": 1022959,
"Position": {
"X": 88.36499,
"Y": 5.006782,
"Z": -862.3331
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1021517,
"Position": {
"X": 85.09949,
"Y": 41.112656,
"Z": -717.89124
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro"
}
]
}
]
}

View File

@ -0,0 +1,101 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"Position": {
"X": 52.668243,
"Y": 4.323245,
"Z": -600.21014
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Ruby Sea - Onokoro",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
},
{
"DataId": 1021507,
"Position": {
"X": 57.236572,
"Y": 1.575162,
"Z": -578.24066
},
"TerritoryId": 613,
"InteractionType": "AcceptQuest",
"DisableNavmesh": true
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -371.42313,
"Y": 3.2183487,
"Z": -537.3274
},
"TerritoryId": 613,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
8029
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1023682,
"Position": {
"X": -367.9713,
"Y": 3.3707767,
"Z": -534.4778
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1023682,
"Position": {
"X": -367.9713,
"Y": 3.3707767,
"Z": -534.4778
},
"TerritoryId": 613,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1021507,
"Position": {
"X": 57.236572,
"Y": 1.575162,
"Z": -578.24066
},
"TerritoryId": 613,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Ruby Sea - Onokoro"
}
]
}
]
}

View File

@ -0,0 +1,117 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1019997,
"Position": {
"X": 527.9164,
"Y": 43.697002,
"Z": -156.05408
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2007834,
"Position": {
"X": 487.0526,
"Y": 50.461548,
"Z": -115.03784
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020000,
"Position": {
"X": 507.95752,
"Y": 41.742855,
"Z": -94.5907
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"TerritoryId": 614,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Yanxia - Namai"
},
{
"DataId": 1020016,
"Position": {
"X": 414.51123,
"Y": -0.30000687,
"Z": -276.56976
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 406.34747,
"Y": -0.6000004,
"Z": -281.95883
},
"TerritoryId": 614,
"InteractionType": "Dive",
"StopDistance": 0.25
},
{
"Position": {
"X": 365.84177,
"Y": -50.164906,
"Z": -309.3022
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"Fly": true
},
{
"Position": {
"X": 301.059,
"Y": -21.410977,
"Z": -358.57938
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"Fly": true,
"StopDistance": 0.25
},
{
"DataId": 1020007,
"Position": {
"X": 277.9735,
"Y": 3.2627518,
"Z": -378.95782
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,140 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020011,
"Position": {
"X": -49.881836,
"Y": -0.26051223,
"Z": -12.893921
},
"TerritoryId": 681,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020012,
"Position": {
"X": 486.9917,
"Y": 50.48013,
"Z": -115.40399
},
"TerritoryId": 614,
"InteractionType": "Interact",
"AetheryteShortcut": "Yanxia - Namai"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1019263,
"Position": {
"X": 451.56018,
"Y": 58.77665,
"Z": -188.3421
},
"TerritoryId": 614,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 17 0 0 0 0 64",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 1022719,
"Position": {
"X": 434.22595,
"Y": 68.02851,
"Z": -65.171326
},
"TerritoryId": 614,
"InteractionType": "Interact",
"$": "17 0 0 0 0 64 -> 33 16 0 0 0 96",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_STMBDA317_02493_Q1_100_040",
"Answer": "TEXT_STMBDA317_02493_A1_102_040"
}
],
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1019259,
"Position": {
"X": 405.4779,
"Y": 67.4601,
"Z": -61.539734
},
"TerritoryId": 614,
"InteractionType": "Interact",
"$": "33 16 0 0 0 96 -> 49 17 0 0 0 112",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
},
{
"DataId": 1020015,
"Position": {
"X": 389.2423,
"Y": 72.07916,
"Z": -68.467285
},
"TerritoryId": 614,
"InteractionType": "Interact",
"Mount": true,
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020012,
"Position": {
"X": 486.9917,
"Y": 50.48013,
"Z": -115.40399
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,137 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020012,
"Position": {
"X": 486.9917,
"Y": 50.48013,
"Z": -115.40399
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Yanxia - Namai",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 508.4545,
"Y": 83.838875,
"Z": 98.54378
},
"TerritoryId": 614,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
7560
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020018,
"Position": {
"X": 507.86584,
"Y": 83.5696,
"Z": 94.92627
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2007836,
"Position": {
"X": 370.01587,
"Y": 85.52673,
"Z": 32.48633
},
"TerritoryId": 614,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
6685
]
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1020018,
"Position": {
"X": 507.86584,
"Y": 83.5696,
"Z": 94.92627
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1020019,
"Position": {
"X": 208.8197,
"Y": 141.52237,
"Z": -28.82434
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 2008008,
"Position": {
"X": 163.5614,
"Y": 144.60962,
"Z": -11.917358
},
"TerritoryId": 614,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818196
},
{
"DataId": 1020020,
"Position": {
"X": 397.75684,
"Y": 72.835175,
"Z": -97.06268
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Yanxia - Namai",
"Mount": true
}
]
}
]
}

View File

@ -0,0 +1,172 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020020,
"Position": {
"X": 397.75684,
"Y": 72.835175,
"Z": -97.06268
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Yanxia - Namai",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 417.0395,
"Y": 68.028534,
"Z": -109.489944
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"Mount": true
},
{
"DataId": 2007838,
"Position": {
"X": 418.4176,
"Y": 68.0094,
"Z": -135.4544
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020022,
"Position": {
"X": 418.0514,
"Y": 68.0285,
"Z": -133.89801
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020024,
"Position": {
"X": 534.2335,
"Y": 84.80294,
"Z": 111.13135
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1020282,
"Position": {
"X": 498.83264,
"Y": 78.04988,
"Z": 147.23425
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 2007835,
"Position": {
"X": 535.2406,
"Y": 54.48987,
"Z": 237.04883
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1020025,
"Position": {
"X": 303.60876,
"Y": 16.701138,
"Z": 584.71045
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 7,
"Steps": [
{
"DataId": 2007915,
"Position": {
"X": 329.67102,
"Y": 32.97461,
"Z": 603.2959
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 8,
"Steps": [
{
"DataId": 1020025,
"Position": {
"X": 303.60876,
"Y": 16.701138,
"Z": 584.71045
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020283,
"Position": {
"X": 406.27136,
"Y": 14.6418705,
"Z": 626.1234
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,184 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1023780,
"Position": {
"X": 406.21033,
"Y": 14.6418705,
"Z": 625.9707
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2007839,
"Position": {
"X": 358.69373,
"Y": 22.659607,
"Z": 573.69336
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020042,
"Position": {
"X": 435.2329,
"Y": 14.64187,
"Z": 619.8672
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020045,
"Position": {
"X": 439.01733,
"Y": 14.6418705,
"Z": 624.0481
},
"TerritoryId": 614,
"InteractionType": "Interact"
},
{
"DataId": 1020044,
"Position": {
"X": 438.40686,
"Y": 14.6418705,
"Z": 622.21704
},
"TerritoryId": 614,
"InteractionType": "Interact"
},
{
"DataId": 1020043,
"Position": {
"X": 438.4375,
"Y": 14.6418705,
"Z": 620.35547
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1020042,
"Position": {
"X": 435.2329,
"Y": 14.64187,
"Z": 619.8672
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"TerritoryId": 614,
"InteractionType": "EquipItem",
"ItemId": 20596
},
{
"TerritoryId": 614,
"InteractionType": "EquipItem",
"ItemId": 20597
},
{
"TerritoryId": 614,
"InteractionType": "EquipItem",
"ItemId": 20598
},
{
"TerritoryId": 614,
"InteractionType": "EquipItem",
"ItemId": 20599
},
{
"TerritoryId": 614,
"InteractionType": "EquipItem",
"ItemId": 20600
},
{
"DataId": 1020041,
"Position": {
"X": 446.73828,
"Y": 14.626371,
"Z": 705.0431
},
"TerritoryId": 614,
"InteractionType": "Emote",
"Emote": "imperialsalute",
"$": "0 0 0 0 0 0 -> 17 0 0 0 0 64"
},
{
"DataId": 1020040,
"Position": {
"X": 436.14856,
"Y": 14.6418705,
"Z": 706.1721
},
"TerritoryId": 614,
"InteractionType": "Emote",
"Emote": "imperialsalute"
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1020042,
"Position": {
"X": 435.2329,
"Y": 14.64187,
"Z": 619.8672
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020029,
"Position": {
"X": 457.69434,
"Y": 30.001902,
"Z": 764.187
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,190 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020046,
"Position": {
"X": 455.95483,
"Y": 29.324865,
"Z": 759.6703
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 614,
"InteractionType": "EquipRecommended"
},
{
"DataId": 2008011,
"Position": {
"X": 457.51123,
"Y": 32.36438,
"Z": 822.4154
},
"TerritoryId": 614,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818199
},
{
"DataId": 1020047,
"Position": {
"X": 433.9818,
"Y": 14.6418705,
"Z": 622.76636
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2007840,
"Position": {
"X": 390.6156,
"Y": 14.633362,
"Z": 685.96924
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020049,
"Position": {
"X": 390.5547,
"Y": 14.64187,
"Z": 685.9387
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002070
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1020048,
"Position": {
"X": 434.5006,
"Y": 14.6418705,
"Z": 624.567
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 2007841,
"Position": {
"X": 485.37415,
"Y": 14.633362,
"Z": 742.97705
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1020050,
"Position": {
"X": 485.2522,
"Y": 14.641862,
"Z": 742.97705
},
"TerritoryId": 614,
"InteractionType": "UseItem",
"ItemId": 2002070
}
]
},
{
"Sequence": 7,
"Steps": [
{
"DataId": 1020051,
"Position": {
"X": 232.56274,
"Y": 1.4025975,
"Z": 756.0996
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 406.34747,
"Y": -0.6000004,
"Z": -281.95883
},
"TerritoryId": 614,
"InteractionType": "Dive",
"StopDistance": 0.25,
"AetheryteShortcut": "Yanxia - Namai"
},
{
"Position": {
"X": 365.84177,
"Y": -50.164906,
"Z": -309.3022
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"Fly": true
},
{
"Position": {
"X": 301.059,
"Y": -21.410977,
"Z": -358.57938
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"Fly": true,
"StopDistance": 0.25
},
{
"DataId": 1023787,
"Position": {
"X": 278.30933,
"Y": 2.9544957,
"Z": -378.43903
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,67 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020055,
"Position": {
"X": -463.21814,
"Y": 1.2300053,
"Z": 535.6068
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2007842,
"Position": {
"X": -245.74658,
"Y": 16.922241,
"Z": 577.7217
},
"TerritoryId": 614,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020056,
"Position": {
"X": -247.91339,
"Y": 16.932724,
"Z": 577.4165
},
"StopDistance": 7,
"TerritoryId": 614,
"InteractionType": "SinglePlayerDuty"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020057,
"Position": {
"X": 488.30383,
"Y": 7.396728,
"Z": 375.14294
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,134 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020059,
"Position": {
"X": 490.19604,
"Y": 8.442365,
"Z": 373.22034
},
"StopDistance": 7,
"TerritoryId": 614,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020062,
"Position": {
"X": 453.4828,
"Y": 57.1882,
"Z": -146.41034
},
"TerritoryId": 614,
"InteractionType": "Interact",
"AetheryteShortcut": "Yanxia - Namai"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020064,
"Position": {
"X": 443.2898,
"Y": 58.814686,
"Z": -172.90002
},
"TerritoryId": 614,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 64",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 1020063,
"Position": {
"X": 442.83203,
"Y": 58.859047,
"Z": -171.06891
},
"TerritoryId": 614,
"InteractionType": "Interact",
"$": "1 0 0 0 0 64 -> 2 0 0 0 0 192",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1020065,
"Position": {
"X": 459.25073,
"Y": 58.79123,
"Z": -187.42657
},
"TerritoryId": 614,
"InteractionType": "Interact",
"Mount": true,
"$": "2 0 0 0 0 192 -> 3 0 0 0 0 224",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1020066,
"Position": {
"X": 445.5481,
"Y": 68.028534,
"Z": -73.56378
},
"TerritoryId": 614,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020067,
"Position": {
"X": 446.67737,
"Y": 68.028534,
"Z": -74.47931
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,113 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020068,
"Position": {
"X": 444.41882,
"Y": 68.028534,
"Z": -76.951294
},
"TerritoryId": 614,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Yanxia - Namai",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 839.0091,
"Y": 99.60754,
"Z": -427.17267
},
"TerritoryId": 614,
"InteractionType": "WalkTo",
"Fly": true,
"StopDistance": 0.25,
"TargetTerritoryId": 613
},
{
"DataId": 1020073,
"Position": {
"X": -762.1119,
"Y": 4.763445,
"Z": -453.4829
},
"TerritoryId": 613,
"InteractionType": "Interact",
"Fly": true,
"StopDistance": 0.25
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -743.88257,
"Y": -2.4347913,
"Z": -871.06934
},
"TerritoryId": 613,
"InteractionType": "WalkTo",
"Fly": true,
"TargetTerritoryId": 622
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020076,
"Position": {
"X": 540.3677,
"Y": -19.793196,
"Z": 636.6216
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 2008015,
"Position": {
"X": 570.27527,
"Y": -19.516357,
"Z": 438.16272
},
"TerritoryId": 622,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818208
},
{
"DataId": 1020079,
"Position": {
"X": 560.235,
"Y": -19.505638,
"Z": 408.68237
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,108 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020004,
"Position": {
"X": 276.35608,
"Y": 3.6584158,
"Z": -377.5235
},
"StopDistance": 5,
"TerritoryId": 614,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1020008,
"Position": {
"X": 5.996765,
"Y": -0.5066767,
"Z": 2.5177002
},
"TerritoryId": 681,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 16 1 0 0 0 128",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1020010,
"Position": {
"X": -30.014526,
"Y": -0.24868584,
"Z": -2.822998
},
"TerritoryId": 681,
"InteractionType": "Interact",
"$": "16 1 0 0 0 128 -> 32 17 0 0 0 160",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1020009,
"Position": {
"X": -45.243042,
"Y": -0.2509899,
"Z": -31.845642
},
"TerritoryId": 681,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020011,
"Position": {
"X": -49.881836,
"Y": -0.26051223,
"Z": -12.893921
},
"TerritoryId": 681,
"InteractionType": "CompleteQuest",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_STMBDA325_02934_Q1_000_064",
"Answer": "TEXT_STMBDA325_02934_A1_000_065"
}
]
}
]
}
]
}

View File

@ -0,0 +1,73 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020052,
"Position": {
"X": -52.47583,
"Y": -0.2509899,
"Z": -25.742065
},
"StopDistance": 7,
"TerritoryId": 681,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020053,
"Position": {
"X": 456.01575,
"Y": 41.2719,
"Z": -43.320435
},
"TerritoryId": 614,
"InteractionType": "Interact",
"AetheryteShortcut": "Yanxia - Namai"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 161.05653,
"Y": -0.299994,
"Z": 191.03581
},
"TerritoryId": 614,
"InteractionType": "WalkTo"
},
{
"DataId": 2008013,
"Position": {
"X": -97.428955,
"Y": 13.260071,
"Z": 563.714
},
"TerritoryId": 614,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818201
},
{
"DataId": 1020055,
"Position": {
"X": -463.21814,
"Y": 1.2300053,
"Z": 535.6068
},
"TerritoryId": 614,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,113 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020079,
"Position": {
"X": 560.235,
"Y": -19.505638,
"Z": 408.68237
},
"TerritoryId": 622,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1019355,
"Position": {
"X": 556.8779,
"Y": -19.505642,
"Z": 397.14648
},
"TerritoryId": 622,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128"
},
{
"DataId": 1019353,
"Position": {
"X": 544.0298,
"Y": -19.505642,
"Z": 391.68372
},
"TerritoryId": 622,
"InteractionType": "Interact",
"StopDistance": 7,
"$": "1 0 0 0 0 128 -> 2 0 0 0 0 192"
},
{
"DataId": 1019349,
"Position": {
"X": 543.93823,
"Y": -19.505642,
"Z": 354.08557
},
"TerritoryId": 622,
"InteractionType": "Interact",
"StopDistance": 7
}
]
},
{
"Sequence": 2,
"Steps": [
{
"TerritoryId": 622,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Azim Steppe - Reunion"
},
{
"DataId": 1020275,
"Position": {
"X": 540.917,
"Y": -19.504309,
"Z": 278.0652
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1020281,
"Position": {
"X": 571.58765,
"Y": -19.505655,
"Z": 313.71008
},
"TerritoryId": 622,
"InteractionType": "Say",
"ChatMessage": {
"Key": "TEXT_STMBDA401_02500_SAYTODO_000_000"
}
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020281,
"Position": {
"X": 571.58765,
"Y": -19.505655,
"Z": 313.71008
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,66 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020281,
"Position": {
"X": 571.58765,
"Y": -19.505655,
"Z": 313.71008
},
"TerritoryId": 622,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Azim Steppe - Reunion",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 259.30197,
"Y": 1.436653,
"Z": 337.41043
},
"TerritoryId": 622,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 6626,
"MinimumKillCount": 2,
"RewardItemId": 2002204,
"RewardItemCount": 2
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020281,
"Position": {
"X": 571.58765,
"Y": -19.505655,
"Z": 313.71008
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Azim Steppe - Reunion"
}
]
}
]
}

View File

@ -0,0 +1,57 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020281,
"Position": {
"X": 571.58765,
"Y": -19.505655,
"Z": 313.71008
},
"TerritoryId": 622,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Azim Steppe - Reunion",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020279,
"Position": {
"X": 592.9198,
"Y": 24.918879,
"Z": 380.27002
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020543,
"Position": {
"X": 592.9198,
"Y": 24.943647,
"Z": 380.0564
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,72 @@
{
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1020543,
"Position": {
"X": 592.9198,
"Y": 24.943647,
"Z": 380.0564
},
"TerritoryId": 622,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Azim Steppe - Reunion",
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1020531,
"Position": {
"X": 491.29468,
"Y": 8.481642,
"Z": -234.48541
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1019382,
"Position": {
"X": 496.5437,
"Y": 40.859642,
"Z": -510.58215
},
"TerritoryId": 622,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1020501,
"Position": {
"X": 484.48914,
"Y": 40.21725,
"Z": -469.5354
},
"TerritoryId": 622,
"InteractionType": "CompleteQuest"
}
]
}
]
}

Some files were not shown because too many files have changed in this diff Show More