Merge pull request 'master' (#1) from liza/Questionable:master into master
Reviewed-on: cacahuetes/Questionable#1
This commit is contained in:
commit
165c707422
@ -1,5 +1,5 @@
|
|||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>2.5</Version>
|
<Version>2.6</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -175,7 +175,7 @@ internal sealed class EditorCommands : IDisposable
|
|||||||
{
|
{
|
||||||
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>()!.GetRow(_clientState.TerritoryType)!;
|
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>()!.GetRow(_clientState.TerritoryType)!;
|
||||||
targetFolder = _plugin.PathsDirectory
|
targetFolder = _plugin.PathsDirectory
|
||||||
.CreateSubdirectory(ExpansionData.ExpansionFolders[(byte)territoryInfo.ExVersion.Row])
|
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.Row])
|
||||||
.CreateSubdirectory(territoryInfo.PlaceName.Value!.Name.ToString());
|
.CreateSubdirectory(territoryInfo.PlaceName.Value!.Name.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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>
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Text.Encodings.Web;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Text.Json.Nodes;
|
using System.Text.Json.Nodes;
|
||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
@ -13,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;
|
||||||
|
|
||||||
@ -33,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,
|
||||||
@ -54,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);
|
||||||
@ -63,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);
|
||||||
}
|
}
|
||||||
@ -147,6 +152,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
{
|
{
|
||||||
JsonSerializerOptions options = new()
|
JsonSerializerOptions options = new()
|
||||||
{
|
{
|
||||||
|
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping,
|
||||||
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault,
|
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault,
|
||||||
WriteIndented = true,
|
WriteIndented = true,
|
||||||
};
|
};
|
||||||
@ -161,6 +167,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
|
|
||||||
using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions
|
using var writer = new Utf8JsonWriter(stream, new JsonWriterOptions
|
||||||
{
|
{
|
||||||
|
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping,
|
||||||
Indented = true
|
Indented = true
|
||||||
});
|
});
|
||||||
newNode.WriteTo(writer, options);
|
newNode.WriteTo(writer, options);
|
||||||
@ -171,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 =>
|
||||||
@ -216,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,
|
||||||
@ -234,8 +251,9 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
Enabled = true,
|
Enabled = true,
|
||||||
overlayText =
|
overlayText =
|
||||||
$"{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 : 0,
|
overlayBGColor = isUnsaved ? 0xFF2020FF : 0xFF000000,
|
||||||
},
|
},
|
||||||
|
#if false
|
||||||
new Element(ElementType.CircleAtFixedCoordinates)
|
new Element(ElementType.CircleAtFixedCoordinates)
|
||||||
{
|
{
|
||||||
refX = a.X,
|
refX = a.X,
|
||||||
@ -256,6 +274,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
Enabled = true,
|
Enabled = true,
|
||||||
overlayText = "Max Angle"
|
overlayText = "Max Angle"
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
}))))
|
}))))
|
||||||
.ToList();
|
.ToList();
|
||||||
@ -284,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;
|
||||||
|
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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": {
|
||||||
|
@ -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 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -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 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
105
GatheringPaths/7.x - Dawntrail/Kozama'uka/946__BTN.json
Normal file
105
GatheringPaths/7.x - Dawntrail/Kozama'uka/946__BTN.json
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||||
|
"Author": "liza",
|
||||||
|
"TerritoryId": 1188,
|
||||||
|
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||||
|
"FlyBetweenNodes": true,
|
||||||
|
"Groups": [
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34520,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 759.8123,
|
||||||
|
"Y": 26.14559,
|
||||||
|
"Z": -561.7435
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34521,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 791.0515,
|
||||||
|
"Y": 25.74059,
|
||||||
|
"Z": -545.9295
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34522,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 821.4519,
|
||||||
|
"Y": 28.47348,
|
||||||
|
"Z": -533.9607
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34517,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 840.8483,
|
||||||
|
"Y": 34.05744,
|
||||||
|
"Z": -586.0533
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34518,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 837.7969,
|
||||||
|
"Y": 33.55795,
|
||||||
|
"Z": -619.7623
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34519,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 784.021,
|
||||||
|
"Y": 24.16835,
|
||||||
|
"Z": -598.9781
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
118
GatheringPaths/7.x - Dawntrail/Urqopacha/961__MIN.json
Normal file
118
GatheringPaths/7.x - Dawntrail/Urqopacha/961__MIN.json
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||||
|
"Author": "liza",
|
||||||
|
"TerritoryId": 1187,
|
||||||
|
"AetheryteShortcut": "Urqopacha - Wachunpelo",
|
||||||
|
"FlyBetweenNodes": false,
|
||||||
|
"Groups": [
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34646,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 227.4615,
|
||||||
|
"Y": -89.93336,
|
||||||
|
"Z": -225.4792
|
||||||
|
},
|
||||||
|
"MinimumAngle": 150,
|
||||||
|
"MaximumAngle": 250
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34641,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 249.5856,
|
||||||
|
"Y": -97.79176,
|
||||||
|
"Z": -217.3474
|
||||||
|
},
|
||||||
|
"MinimumAngle": 135,
|
||||||
|
"MaximumAngle": 215
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34642,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 257.8141,
|
||||||
|
"Y": -99.51778,
|
||||||
|
"Z": -217.7757
|
||||||
|
},
|
||||||
|
"MinimumAngle": 130,
|
||||||
|
"MaximumAngle": 240
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34643,
|
||||||
|
"Fly": true,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 274.7205,
|
||||||
|
"Y": -99.65348,
|
||||||
|
"Z": -201.6824
|
||||||
|
},
|
||||||
|
"MinimumAngle": 220,
|
||||||
|
"MaximumAngle": 270
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34644,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 278.0735,
|
||||||
|
"Y": -101.2599,
|
||||||
|
"Z": -194.8121
|
||||||
|
},
|
||||||
|
"MinimumAngle": 200,
|
||||||
|
"MaximumAngle": 300
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34645,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 308.4911,
|
||||||
|
"Y": -100.6525,
|
||||||
|
"Z": -174.6859
|
||||||
|
},
|
||||||
|
"MinimumAngle": 145,
|
||||||
|
"MaximumAngle": 210
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
117
GatheringPaths/7.x - Dawntrail/Yak T'el/955__BTN.json
Normal file
117
GatheringPaths/7.x - Dawntrail/Yak T'el/955__BTN.json
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||||
|
"Author": "liza",
|
||||||
|
"TerritoryId": 1189,
|
||||||
|
"AetheryteShortcut": "Yak T'el - Iq Br'aax",
|
||||||
|
"FlyBetweenNodes": true,
|
||||||
|
"Groups": [
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34601,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 484.1779,
|
||||||
|
"Y": 16.59889,
|
||||||
|
"Z": -304.2079
|
||||||
|
},
|
||||||
|
"MinimumAngle": -185,
|
||||||
|
"MaximumAngle": 20
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34599,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 509.181,
|
||||||
|
"Y": 21.64949,
|
||||||
|
"Z": -349.9709
|
||||||
|
},
|
||||||
|
"MinimumAngle": -25,
|
||||||
|
"MaximumAngle": 80
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34597,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 534.7657,
|
||||||
|
"Y": 19.33411,
|
||||||
|
"Z": -333.3713
|
||||||
|
},
|
||||||
|
"MinimumAngle": 155,
|
||||||
|
"MaximumAngle": 275
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34600,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 525.0291,
|
||||||
|
"Y": 11.97125,
|
||||||
|
"Z": -252.6589
|
||||||
|
},
|
||||||
|
"MinimumAngle": 145,
|
||||||
|
"MaximumAngle": 265
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34598,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 518.5205,
|
||||||
|
"Y": 9.694121,
|
||||||
|
"Z": -223.9382
|
||||||
|
},
|
||||||
|
"MinimumAngle": 65,
|
||||||
|
"MaximumAngle": 170
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Nodes": [
|
||||||
|
{
|
||||||
|
"DataId": 34602,
|
||||||
|
"Locations": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 480.2552,
|
||||||
|
"Y": 10.94543,
|
||||||
|
"Z": -234.4949
|
||||||
|
},
|
||||||
|
"MinimumAngle": 95,
|
||||||
|
"MaximumAngle": 180
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -2,6 +2,7 @@
|
|||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||||
"Author": "liza",
|
"Author": "liza",
|
||||||
"TerritoryId": 1189,
|
"TerritoryId": 1189,
|
||||||
|
"AetheryteShortcut": "Yak T'el - Mamook",
|
||||||
"Groups": [
|
"Groups": [
|
||||||
{
|
{
|
||||||
"Nodes": [
|
"Nodes": [
|
||||||
@ -112,4 +113,4 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -34,6 +34,11 @@
|
|||||||
"$ref": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json#/$defs/AethernetShard"
|
"$ref": "https://git.carvel.li/liza/Questionable/raw/branch/master/Questionable.Model/common-schema.json#/$defs/AethernetShard"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"FlyBetweenNodes": {
|
||||||
|
"description": "If nodes are close enough together, flying makes no sense due to the pathfinding overhead",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": true
|
||||||
|
},
|
||||||
"Groups": {
|
"Groups": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
@ -49,6 +54,9 @@
|
|||||||
"minimum": 30000,
|
"minimum": 30000,
|
||||||
"maximum": 50000
|
"maximum": 50000
|
||||||
},
|
},
|
||||||
|
"Fly": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
|
@ -143,6 +143,7 @@ public class GatheringSourceGenerator : ISourceGenerator
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
var emptyRoot = new GatheringRoot();
|
||||||
return ObjectCreationExpression(
|
return ObjectCreationExpression(
|
||||||
IdentifierName(nameof(GatheringRoot)))
|
IdentifierName(nameof(GatheringRoot)))
|
||||||
.WithInitializer(
|
.WithInitializer(
|
||||||
@ -151,10 +152,17 @@ public class GatheringSourceGenerator : ISourceGenerator
|
|||||||
SeparatedList<ExpressionSyntax>(
|
SeparatedList<ExpressionSyntax>(
|
||||||
SyntaxNodeList(
|
SyntaxNodeList(
|
||||||
AssignmentList(nameof(GatheringRoot.Author), root.Author).AsSyntaxNodeOrToken(),
|
AssignmentList(nameof(GatheringRoot.Author), root.Author).AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(GatheringRoot.TerritoryId), root.TerritoryId, default)
|
Assignment(nameof(GatheringRoot.TerritoryId), root.TerritoryId, emptyRoot.TerritoryId)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(GatheringRoot.AetheryteShortcut), root.AetheryteShortcut,
|
||||||
|
emptyRoot.AetheryteShortcut)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(GatheringRoot.AethernetShortcut), root.AethernetShortcut,
|
||||||
|
emptyRoot.AethernetShortcut)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(GatheringRoot.FlyBetweenNodes), root.FlyBetweenNodes,
|
||||||
|
emptyRoot.FlyBetweenNodes)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(GatheringRoot.AetheryteShortcut), root.AetheryteShortcut, null),
|
|
||||||
Assignment(nameof(GatheringRoot.AethernetShortcut), root.AethernetShortcut, null),
|
|
||||||
AssignmentList(nameof(GatheringRoot.Groups), root.Groups).AsSyntaxNodeOrToken()))));
|
AssignmentList(nameof(GatheringRoot.Groups), root.Groups).AsSyntaxNodeOrToken()))));
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
|
@ -408,6 +408,8 @@ public static class RoslynShortcuts
|
|||||||
Assignment(nameof(GatheringNode.DataId), nodeLocation.DataId,
|
Assignment(nameof(GatheringNode.DataId), nodeLocation.DataId,
|
||||||
emptyLocation.DataId)
|
emptyLocation.DataId)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(GatheringNode.Fly), nodeLocation.Fly, emptyLocation.Fly)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
AssignmentList(nameof(GatheringNode.Locations), nodeLocation.Locations)
|
AssignmentList(nameof(GatheringNode.Locations), nodeLocation.Locations)
|
||||||
.AsSyntaxNodeOrToken()))));
|
.AsSyntaxNodeOrToken()))));
|
||||||
}
|
}
|
||||||
|
@ -13,7 +13,23 @@
|
|||||||
"Z": -255.8786
|
"Z": -255.8786
|
||||||
},
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "Limsa Lominsa",
|
||||||
|
"AethernetShortcut": [
|
||||||
|
"[Limsa Lominsa] Aetheryte Plaza",
|
||||||
|
"[Limsa Lominsa] Marauders' Guild"
|
||||||
|
],
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true,
|
||||||
|
"InTerritory": [
|
||||||
|
129
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"AethernetShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -8,7 +8,13 @@
|
|||||||
{
|
{
|
||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "EquipItem",
|
"InteractionType": "EquipItem",
|
||||||
"ItemId": 4544
|
"ItemId": 4544,
|
||||||
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006746,
|
"DataId": 1006746,
|
||||||
|
@ -13,7 +13,13 @@
|
|||||||
"Z": 74.47925
|
"Z": 74.47925
|
||||||
},
|
},
|
||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -13,7 +13,13 @@
|
|||||||
"Z": 74.47925
|
"Z": 74.47925
|
||||||
},
|
},
|
||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -202,7 +208,8 @@
|
|||||||
"Z": 74.47925
|
"Z": 74.47925
|
||||||
},
|
},
|
||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -13,7 +13,13 @@
|
|||||||
"Z": 74.47925
|
"Z": 74.47925
|
||||||
},
|
},
|
||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -13,7 +13,13 @@
|
|||||||
"Z": 74.47925
|
"Z": 74.47925
|
||||||
},
|
},
|
||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -13,7 +13,23 @@
|
|||||||
"Z": -255.8786
|
"Z": -255.8786
|
||||||
},
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "Limsa Lominsa",
|
||||||
|
"AethernetShortcut": [
|
||||||
|
"[Limsa Lominsa] Aetheryte Plaza",
|
||||||
|
"[Limsa Lominsa] Marauders' Guild"
|
||||||
|
],
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true,
|
||||||
|
"InTerritory": [
|
||||||
|
129
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"AethernetShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -13,7 +13,23 @@
|
|||||||
"Z": -255.8786
|
"Z": -255.8786
|
||||||
},
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "Limsa Lominsa",
|
||||||
|
"AethernetShortcut": [
|
||||||
|
"[Limsa Lominsa] Aetheryte Plaza",
|
||||||
|
"[Limsa Lominsa] Marauders' Guild"
|
||||||
|
],
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true,
|
||||||
|
"InTerritory": [
|
||||||
|
129
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"AethernetShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -13,7 +13,23 @@
|
|||||||
"Z": -255.8786
|
"Z": -255.8786
|
||||||
},
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "Limsa Lominsa",
|
||||||
|
"AethernetShortcut": [
|
||||||
|
"[Limsa Lominsa] Aetheryte Plaza",
|
||||||
|
"[Limsa Lominsa] Marauders' Guild"
|
||||||
|
],
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true,
|
||||||
|
"InTerritory": [
|
||||||
|
129
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"AethernetShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -30,6 +30,26 @@
|
|||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo",
|
||||||
"AetheryteShortcut": "Western Thanalan - Horizon"
|
"AetheryteShortcut": "Western Thanalan - Horizon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -396.50018,
|
||||||
|
"Y": 23,
|
||||||
|
"Z": -351.0944
|
||||||
|
},
|
||||||
|
"TerritoryId": 140,
|
||||||
|
"InteractionType": "WalkTo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -408.92343,
|
||||||
|
"Y": 23.167036,
|
||||||
|
"Z": -351.16223
|
||||||
|
},
|
||||||
|
"TerritoryId": 140,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"$": "Vesper Bay Gate",
|
||||||
|
"DisableNavmesh": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1004603,
|
"DataId": 1004603,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -58,6 +58,26 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -421.5307,
|
||||||
|
"Y": 219.52408,
|
||||||
|
"Z": -292.88748
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Comment": "North Whitebrim, Stairs (bottom)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -417.45395,
|
||||||
|
"Y": 223.30249,
|
||||||
|
"Z": -291.59283
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Comment": "North Whitebrim, Stairs (top)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006461,
|
"DataId": 1006461,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -41,6 +41,26 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -421.5307,
|
||||||
|
"Y": 219.52408,
|
||||||
|
"Z": -292.88748
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Comment": "North Whitebrim, Stairs (bottom)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -417.45395,
|
||||||
|
"Y": 223.30249,
|
||||||
|
"Z": -291.59283
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Comment": "North Whitebrim, Stairs (top)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006442,
|
"DataId": 1006442,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -35,10 +35,14 @@
|
|||||||
"Z": 89.58569
|
"Z": 89.58569
|
||||||
},
|
},
|
||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "Combat",
|
"InteractionType": "Instruction",
|
||||||
|
"Comment": "Use Quest item on enemy to weaken it first",
|
||||||
|
"$": "Status Effects: 22 (HP Penalty) + 62 (Damage Down)",
|
||||||
"EnemySpawnType": "AfterInteraction",
|
"EnemySpawnType": "AfterInteraction",
|
||||||
"KillEnemyDataIds": [
|
"ComplexCombatData": [
|
||||||
2196
|
{
|
||||||
|
"DataId": 2196
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -136,6 +140,26 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -421.5307,
|
||||||
|
"Y": 219.52408,
|
||||||
|
"Z": -292.88748
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Comment": "North Whitebrim, Stairs (bottom)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -417.45395,
|
||||||
|
"Y": 223.30249,
|
||||||
|
"Z": -291.59283
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Comment": "North Whitebrim, Stairs (top)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1007567,
|
"DataId": 1007567,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -26,6 +26,26 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 1,
|
"Sequence": 1,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -417.45395,
|
||||||
|
"Y": 223.30249,
|
||||||
|
"Z": -291.59283
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Comment": "North Whitebrim, Stairs (top)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -421.5307,
|
||||||
|
"Y": 219.52408,
|
||||||
|
"Z": -292.88748
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Comment": "North Whitebrim, Stairs (bottom)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006466,
|
"DataId": 1006466,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -26,6 +26,18 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 1,
|
"Sequence": 1,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
|
||||||
|
"DataId": 2002327,
|
||||||
|
"Position": {
|
||||||
|
"X": 423.17834,
|
||||||
|
"Y": -62.45526,
|
||||||
|
"Z": 213.39734
|
||||||
|
},
|
||||||
|
"StopDistance": 3,
|
||||||
|
"TerritoryId": 145,
|
||||||
|
"InteractionType": "WalkTo"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2002327,
|
"DataId": 2002327,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -35,7 +47,8 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "UseItem",
|
"InteractionType": "UseItem",
|
||||||
"ItemId": 2000742
|
"ItemId": 2000742,
|
||||||
|
"DelaySecondsAtStart": 2
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -51,7 +64,8 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "UseItem",
|
"InteractionType": "UseItem",
|
||||||
"ItemId": 2000837
|
"ItemId": 2000837,
|
||||||
|
"DelaySecondsAtStart": 3
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -32,7 +32,8 @@
|
|||||||
"EnemySpawnType": "AfterInteraction",
|
"EnemySpawnType": "AfterInteraction",
|
||||||
"KillEnemyDataIds": [
|
"KillEnemyDataIds": [
|
||||||
43
|
43
|
||||||
]
|
],
|
||||||
|
"CombatDelaySecondsAtStart": 5
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -20,6 +20,27 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 1,
|
"Sequence": 1,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -148.50606,
|
||||||
|
"Y": -0.6686005,
|
||||||
|
"Z": -615.3246
|
||||||
|
},
|
||||||
|
"TerritoryId": 156,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"SkipConditions": {
|
||||||
|
"StepIf": {
|
||||||
|
"CompletionQuestVariablesFlags": [
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
16
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2002232,
|
"DataId": 2002232,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -31,7 +31,8 @@
|
|||||||
"EnemySpawnType": "AutoOnEnterArea",
|
"EnemySpawnType": "AutoOnEnterArea",
|
||||||
"KillEnemyDataIds": [
|
"KillEnemyDataIds": [
|
||||||
55
|
55
|
||||||
]
|
],
|
||||||
|
"CombatDelaySecondsAtStart": 5
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2002238,
|
"DataId": 2002238,
|
||||||
|
@ -137,6 +137,15 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 5,
|
"Sequence": 5,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -427.75616,
|
||||||
|
"Y": -0.77819824,
|
||||||
|
"Z": -273.82324
|
||||||
|
},
|
||||||
|
"TerritoryId": 335,
|
||||||
|
"InteractionType": "EquipRecommended"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2002376,
|
"DataId": 2002376,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -159,6 +168,7 @@
|
|||||||
"Y": 84,
|
"Y": 84,
|
||||||
"Z": 2.1514893
|
"Z": 2.1514893
|
||||||
},
|
},
|
||||||
|
"StopDistance": 5,
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest"
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
"Y": 84,
|
"Y": 84,
|
||||||
"Z": 2.1514893
|
"Z": 2.1514893
|
||||||
},
|
},
|
||||||
|
"StopDistance": 5,
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest"
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,8 @@
|
|||||||
"Z": -0.015319824
|
"Z": -0.015319824
|
||||||
},
|
},
|
||||||
"TerritoryId": 212,
|
"TerritoryId": 212,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"TargetTerritoryId": 212
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001716,
|
"DataId": 2001716,
|
||||||
|
@ -22,9 +22,9 @@
|
|||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -209.9414,
|
"X": -203.21945,
|
||||||
"Y": -42.109043,
|
"Y": -42.30963,
|
||||||
"Z": -248.07559
|
"Z": -253.10411
|
||||||
},
|
},
|
||||||
"StopDistance": 0.25,
|
"StopDistance": 0.25,
|
||||||
"TerritoryId": 138,
|
"TerritoryId": 138,
|
||||||
|
@ -117,7 +117,12 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 135,
|
"TerritoryId": 135,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo",
|
||||||
"Mount": true
|
"Mount": true,
|
||||||
|
"SkipConditions": {
|
||||||
|
"StepIf": {
|
||||||
|
"AetheryteUnlocked": "Lower La Noscea - Moraby Drydocks"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -127,12 +132,22 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 135,
|
"TerritoryId": 135,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo",
|
||||||
"Fly": true
|
"Fly": true,
|
||||||
|
"SkipConditions": {
|
||||||
|
"StepIf": {
|
||||||
|
"AetheryteUnlocked": "Lower La Noscea - Moraby Drydocks"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"TerritoryId": 135,
|
"TerritoryId": 135,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Lower La Noscea - Moraby Drydocks"
|
"Aetheryte": "Lower La Noscea - Moraby Drydocks",
|
||||||
|
"SkipConditions": {
|
||||||
|
"StepIf": {
|
||||||
|
"AetheryteUnlocked": "Lower La Noscea - Moraby Drydocks"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -142,7 +157,13 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 135,
|
"TerritoryId": 135,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo",
|
||||||
"Fly": true
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"AetheryteLocked": "Lower La Noscea - Moraby Drydocks"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1008693,
|
"DataId": 1008693,
|
||||||
|
@ -91,6 +91,17 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -119.1183,
|
||||||
|
"Y": 3.7999938,
|
||||||
|
"Z": -104.33473
|
||||||
|
},
|
||||||
|
"TerritoryId": 130,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"AetheryteShortcut": "Ul'dah",
|
||||||
|
"$": "Ul'dah Aetheryte to Immortal Flames"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1004576,
|
"DataId": 1004576,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -99,8 +110,7 @@
|
|||||||
"Z": -114.67157
|
"Z": -114.67157
|
||||||
},
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "CompleteQuest"
|
||||||
"AetheryteShortcut": "Ul'dah"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -87,6 +87,16 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 4,
|
"Sequence": 4,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -340.60776,
|
||||||
|
"Y": 259.52878,
|
||||||
|
"Z": 58.521606
|
||||||
|
},
|
||||||
|
"TerritoryId": 155,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"Fly": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2004655,
|
"DataId": 2004655,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -86,6 +86,7 @@
|
|||||||
"Y": 71.617355,
|
"Y": 71.617355,
|
||||||
"Z": -132.52466
|
"Z": -132.52466
|
||||||
},
|
},
|
||||||
|
"StopDistance": 5,
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest"
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
"Y": 71.617355,
|
"Y": 71.617355,
|
||||||
"Z": -132.52466
|
"Z": -132.52466
|
||||||
},
|
},
|
||||||
|
"StopDistance": 5,
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||||
|
@ -5,6 +5,46 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
"Steps": [
|
"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": 2002878,
|
||||||
|
"Position": {
|
||||||
|
"X": -0.015319824,
|
||||||
|
"Y": -1.0223389,
|
||||||
|
"Z": -26.779602
|
||||||
|
},
|
||||||
|
"TerritoryId": 351,
|
||||||
|
"InteractionType": "Interact",
|
||||||
|
"TargetTerritoryId": 351,
|
||||||
|
"SkipConditions": {
|
||||||
|
"StepIf": {
|
||||||
|
"ExtraCondition": "RisingStonesSolar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1008969,
|
"DataId": 1008969,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -63,6 +63,16 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 4.0611796,
|
||||||
|
"Y": 0.0149827,
|
||||||
|
"Z": 4.914047
|
||||||
|
},
|
||||||
|
"TerritoryId": 395,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"DisableNavmesh": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1009974,
|
"DataId": 1009974,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -71,7 +81,8 @@
|
|||||||
"Z": -0.015319824
|
"Z": -0.015319824
|
||||||
},
|
},
|
||||||
"TerritoryId": 395,
|
"TerritoryId": 395,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"DisableNavmesh": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -5,6 +5,46 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
"Steps": [
|
"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": 2002878,
|
||||||
|
"Position": {
|
||||||
|
"X": -0.015319824,
|
||||||
|
"Y": -1.0223389,
|
||||||
|
"Z": -26.779602
|
||||||
|
},
|
||||||
|
"TerritoryId": 351,
|
||||||
|
"InteractionType": "Interact",
|
||||||
|
"TargetTerritoryId": 351,
|
||||||
|
"SkipConditions": {
|
||||||
|
"StepIf": {
|
||||||
|
"ExtraCondition": "RisingStonesSolar"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1010897,
|
"DataId": 1010897,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -0,0 +1,119 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
|
"Author": "liza",
|
||||||
|
"QuestSequence": [
|
||||||
|
{
|
||||||
|
"Sequence": 0,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"DataId": 1002754,
|
||||||
|
"Position": {
|
||||||
|
"X": -219.22644,
|
||||||
|
"Y": 20.923328,
|
||||||
|
"Z": 338.4298
|
||||||
|
},
|
||||||
|
"TerritoryId": 153,
|
||||||
|
"InteractionType": "AcceptQuest",
|
||||||
|
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 1,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"DataId": 1000471,
|
||||||
|
"Position": {
|
||||||
|
"X": -60.471558,
|
||||||
|
"Y": 0.19999865,
|
||||||
|
"Z": 6.301941
|
||||||
|
},
|
||||||
|
"TerritoryId": 148,
|
||||||
|
"InteractionType": "Interact",
|
||||||
|
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 2,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"DataId": 2001467,
|
||||||
|
"Position": {
|
||||||
|
"X": -44.419067,
|
||||||
|
"Y": 1.4190674,
|
||||||
|
"Z": -36.850586
|
||||||
|
},
|
||||||
|
"TerritoryId": 148,
|
||||||
|
"InteractionType": "Interact"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 3,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"DataId": 1000471,
|
||||||
|
"Position": {
|
||||||
|
"X": -60.471558,
|
||||||
|
"Y": 0.19999865,
|
||||||
|
"Z": 6.301941
|
||||||
|
},
|
||||||
|
"TerritoryId": 148,
|
||||||
|
"InteractionType": "Interact"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 4,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -230.51279,
|
||||||
|
"Y": 57.95885,
|
||||||
|
"Z": -84.411194
|
||||||
|
},
|
||||||
|
"TerritoryId": 148,
|
||||||
|
"InteractionType": "UseItem",
|
||||||
|
"ItemId": 4868
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": -230.51279,
|
||||||
|
"Y": 57.95885,
|
||||||
|
"Z": -84.411194
|
||||||
|
},
|
||||||
|
"TerritoryId": 148,
|
||||||
|
"InteractionType": "Combat",
|
||||||
|
"ComplexCombatData": [
|
||||||
|
{
|
||||||
|
"DataId": 178,
|
||||||
|
"MinimumKillCount": 3
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"EnemySpawnType": "OverworldEnemies"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Sequence": 255,
|
||||||
|
"Steps": [
|
||||||
|
{
|
||||||
|
"DataId": 1000471,
|
||||||
|
"Position": {
|
||||||
|
"X": -60.471558,
|
||||||
|
"Y": 0.19999865,
|
||||||
|
"Z": 6.301941
|
||||||
|
},
|
||||||
|
"TerritoryId": 148,
|
||||||
|
"InteractionType": "CompleteQuest"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user