Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
ff34f392b8 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -2,5 +2,4 @@
|
|||||||
bin/
|
bin/
|
||||||
/.idea
|
/.idea
|
||||||
/.vs
|
/.vs
|
||||||
/.vscode
|
|
||||||
*.user
|
*.user
|
||||||
|
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -4,6 +4,3 @@
|
|||||||
[submodule "vendor/ECommons"]
|
[submodule "vendor/ECommons"]
|
||||||
path = vendor/ECommons
|
path = vendor/ECommons
|
||||||
url = https://github.com/NightmareXIV/ECommons.git
|
url = https://github.com/NightmareXIV/ECommons.git
|
||||||
[submodule "vendor/NotificationMasterAPI"]
|
|
||||||
path = vendor/NotificationMasterAPI
|
|
||||||
url = https://github.com/NightmareXIV/NotificationMasterAPI.git
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup Condition="$(MSBuildProjectName) != 'GatheringPathRenderer'">
|
<PropertyGroup>
|
||||||
<Version>4.16</Version>
|
<Version>3.12</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
1
GatheringPathRenderer/.gitignore
vendored
1
GatheringPathRenderer/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
/dist
|
|
@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<Project>
|
|
||||||
<Target Name="PackagePluginDebug" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
|
|
||||||
<DalamudPackager
|
|
||||||
ProjectDir="$(ProjectDir)"
|
|
||||||
OutputPath="$(OutputPath)"
|
|
||||||
AssemblyName="$(AssemblyName)"
|
|
||||||
MakeZip="false"
|
|
||||||
VersionComponents="2"/>
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<Target Name="PackagePlugin" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
|
|
||||||
<DalamudPackager
|
|
||||||
ProjectDir="$(ProjectDir)"
|
|
||||||
OutputPath="$(OutputPath)"
|
|
||||||
AssemblyName="$(AssemblyName)"
|
|
||||||
MakeZip="true"
|
|
||||||
VersionComponents="2"
|
|
||||||
Exclude="GatheringPathRenderer.deps.json;ECommons.xml;ECommons.pdb;LLib.pdb"/>
|
|
||||||
</Target>
|
|
||||||
</Project>
|
|
@ -3,12 +3,16 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
|
using System.Text.Json;
|
||||||
|
using System.Text.Json.Nodes;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
using System.Text.Json.Serialization.Metadata;
|
||||||
using Dalamud.Game.ClientState.Objects;
|
using Dalamud.Game.ClientState.Objects;
|
||||||
using Dalamud.Game.ClientState.Objects.Enums;
|
using Dalamud.Game.ClientState.Objects.Enums;
|
||||||
using Dalamud.Game.ClientState.Objects.Types;
|
using Dalamud.Game.ClientState.Objects.Types;
|
||||||
using Dalamud.Game.Command;
|
using Dalamud.Game.Command;
|
||||||
using Dalamud.Plugin.Services;
|
using Dalamud.Plugin.Services;
|
||||||
using Lumina.Excel.Sheets;
|
using Lumina.Excel.GeneratedSheets;
|
||||||
using Questionable.Model;
|
using Questionable.Model;
|
||||||
using Questionable.Model.Gathering;
|
using Questionable.Model.Gathering;
|
||||||
using Questionable.Model.Questing;
|
using Questionable.Model.Questing;
|
||||||
@ -66,14 +70,14 @@ internal sealed class EditorCommands : IDisposable
|
|||||||
if (target == null || target.ObjectKind != ObjectKind.GatheringPoint)
|
if (target == null || target.ObjectKind != ObjectKind.GatheringPoint)
|
||||||
throw new Exception("No valid target");
|
throw new Exception("No valid target");
|
||||||
|
|
||||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>().GetRowOrDefault(target.DataId);
|
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(target.DataId);
|
||||||
if (gatheringPoint == null)
|
if (gatheringPoint == null)
|
||||||
throw new Exception("Invalid gathering point");
|
throw new Exception("Invalid gathering point");
|
||||||
|
|
||||||
FileInfo targetFile;
|
FileInfo targetFile;
|
||||||
GatheringRoot root;
|
GatheringRoot root;
|
||||||
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
||||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.Value.GatheringPointBase.RowId);
|
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
|
||||||
if (location != null)
|
if (location != null)
|
||||||
{
|
{
|
||||||
targetFile = location.File;
|
targetFile = location.File;
|
||||||
@ -92,7 +96,7 @@ internal sealed class EditorCommands : IDisposable
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
(targetFile, root) = CreateNewFile(gatheringPoint.Value, target);
|
(targetFile, root) = CreateNewFile(gatheringPoint, target);
|
||||||
_chatGui.Print($"Creating new file under {targetFile.FullName}", "qG");
|
_chatGui.Print($"Creating new file under {targetFile.FullName}", "qG");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -170,16 +174,16 @@ internal sealed class EditorCommands : IDisposable
|
|||||||
?.File.Directory;
|
?.File.Directory;
|
||||||
if (targetFolder == null)
|
if (targetFolder == null)
|
||||||
{
|
{
|
||||||
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[(EExpansionVersion)territoryInfo.ExVersion.RowId])
|
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.Row])
|
||||||
.CreateSubdirectory(territoryInfo.PlaceName.Value.Name.ToString());
|
.CreateSubdirectory(territoryInfo.PlaceName.Value!.Name.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
FileInfo targetFile =
|
FileInfo targetFile =
|
||||||
new FileInfo(
|
new FileInfo(
|
||||||
Path.Combine(targetFolder.FullName,
|
Path.Combine(targetFolder.FullName,
|
||||||
$"{gatheringPoint.GatheringPointBase.RowId}_{gatheringPoint.PlaceName.Value.Name}_{(_clientState.LocalPlayer!.ClassJob.RowId == 16 ? "MIN" : "BTN")}.json"));
|
$"{gatheringPoint.GatheringPointBase.Row}_{gatheringPoint.PlaceName.Value!.Name}_{(_clientState.LocalPlayer!.ClassJob.Id == 16 ? "MIN" : "BTN")}.json"));
|
||||||
var root = new GatheringRoot
|
var root = new GatheringRoot
|
||||||
{
|
{
|
||||||
Author = [_configuration.AuthorName],
|
Author = [_configuration.AuthorName],
|
||||||
|
@ -1,11 +1,4 @@
|
|||||||
<Project Sdk="Dalamud.NET.Sdk/11.0.0">
|
<Project Sdk="Dalamud.NET.Sdk/10.0.0">
|
||||||
<PropertyGroup>
|
|
||||||
<Version>0.1</Version>
|
|
||||||
<OutputPath>dist</OutputPath>
|
|
||||||
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
|
|
||||||
<Platforms>x64</Platforms>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\LLib\LLib.csproj" />
|
<ProjectReference Include="..\LLib\LLib.csproj" />
|
||||||
<ProjectReference Include="..\Questionable.Model\Questionable.Model.csproj" />
|
<ProjectReference Include="..\Questionable.Model\Questionable.Model.csproj" />
|
||||||
@ -13,5 +6,4 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Import Project="..\LLib\LLib.targets"/>
|
<Import Project="..\LLib\LLib.targets"/>
|
||||||
<Import Project="..\LLib\RenameZip.targets"/>
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"Name": "GatheringPathRenderer",
|
"Name": "GatheringPathRenderer",
|
||||||
"Author": "Liza Carvelli",
|
"Author": "Liza Carvelli",
|
||||||
"Punchline": "[Questionable dev plugin]: Renders gathering location.",
|
"Punchline": "dev only plugin: Renders gathering location.",
|
||||||
"Description": "[Questionable dev plugin]: Renders gathering location using Splatoon.",
|
"Description": "dev only plugin: Renders gathering location (without ECommons polluting the entire normal project)."
|
||||||
"RepoUrl": "https://git.carvel.li/liza/Questionable/src/branch/master/GatheringPathRenderer"
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text.Encodings.Web;
|
using System.Text.Encodings.Web;
|
||||||
@ -18,11 +17,11 @@ using ECommons.Schedulers;
|
|||||||
using ECommons.SplatoonAPI;
|
using ECommons.SplatoonAPI;
|
||||||
using GatheringPathRenderer.Windows;
|
using GatheringPathRenderer.Windows;
|
||||||
using LLib.GameData;
|
using LLib.GameData;
|
||||||
|
using Questionable.Model;
|
||||||
using Questionable.Model.Gathering;
|
using Questionable.Model.Gathering;
|
||||||
|
|
||||||
namespace GatheringPathRenderer;
|
namespace GatheringPathRenderer;
|
||||||
|
|
||||||
[SuppressMessage("ReSharper", "ClassNeverInstantiated.Global")]
|
|
||||||
public sealed class RendererPlugin : IDalamudPlugin
|
public sealed class RendererPlugin : IDalamudPlugin
|
||||||
{
|
{
|
||||||
private const long OnTerritoryChange = -2;
|
private const long OnTerritoryChange = -2;
|
||||||
@ -57,12 +56,10 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
|
|
||||||
_editorCommands = new EditorCommands(this, dataManager, commandManager, targetManager, clientState, chatGui,
|
_editorCommands = new EditorCommands(this, dataManager, commandManager, targetManager, clientState, chatGui,
|
||||||
configuration);
|
configuration);
|
||||||
var configWindow = new ConfigWindow(pluginInterface, configuration);
|
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
|
||||||
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable, configWindow)
|
|
||||||
{ IsOpen = true };
|
{ IsOpen = true };
|
||||||
_windowSystem.AddWindow(configWindow);
|
|
||||||
_windowSystem.AddWindow(_editorWindow);
|
_windowSystem.AddWindow(_editorWindow);
|
||||||
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.RowId ?? EClassJob.Adventurer;
|
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.Id ?? EClassJob.Adventurer;
|
||||||
|
|
||||||
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
|
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
|
||||||
.Subscribe(Reload);
|
.Subscribe(Reload);
|
||||||
@ -81,8 +78,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
#if DEBUG
|
DirectoryInfo? solutionDirectory = _pluginInterface.AssemblyLocation.Directory?.Parent?.Parent?.Parent;
|
||||||
DirectoryInfo? solutionDirectory = _pluginInterface.AssemblyLocation.Directory?.Parent?.Parent;
|
|
||||||
if (solutionDirectory != null)
|
if (solutionDirectory != null)
|
||||||
{
|
{
|
||||||
DirectoryInfo pathProjectDirectory =
|
DirectoryInfo pathProjectDirectory =
|
||||||
@ -91,13 +87,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
return pathProjectDirectory;
|
return pathProjectDirectory;
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unable to resolve project path ({_pluginInterface.AssemblyLocation.Directory})");
|
throw new Exception("Unable to resolve project path");
|
||||||
#else
|
|
||||||
var allPluginsDirectory = _pluginInterface.ConfigFile.Directory ?? throw new Exception("Unknown directory for plugin configs");
|
|
||||||
return allPluginsDirectory
|
|
||||||
.CreateSubdirectory("Questionable")
|
|
||||||
.CreateSubdirectory("GatheringPaths");
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -113,18 +103,12 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
#if DEBUG
|
foreach (var expansionFolder in ExpansionData.ExpansionFolders.Values)
|
||||||
foreach (var expansionFolder in Questionable.Model.ExpansionData.ExpansionFolders.Values)
|
|
||||||
LoadFromDirectory(
|
LoadFromDirectory(
|
||||||
new DirectoryInfo(Path.Combine(PathsDirectory.FullName, expansionFolder)));
|
new DirectoryInfo(Path.Combine(PathsDirectory.FullName, expansionFolder)));
|
||||||
|
|
||||||
_pluginLog.Information(
|
_pluginLog.Information(
|
||||||
$"Loaded {_gatheringLocations.Count} gathering root locations from project directory");
|
$"Loaded {_gatheringLocations.Count} gathering root locations from project directory");
|
||||||
#else
|
|
||||||
LoadFromDirectory(PathsDirectory);
|
|
||||||
_pluginLog.Information(
|
|
||||||
$"Loaded {_gatheringLocations.Count} gathering root locations from {PathsDirectory.FullName} directory");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
using Dalamud.Interface.Windowing;
|
|
||||||
using Dalamud.Plugin;
|
|
||||||
using ImGuiNET;
|
|
||||||
|
|
||||||
namespace GatheringPathRenderer.Windows;
|
|
||||||
|
|
||||||
internal sealed class ConfigWindow : Window
|
|
||||||
{
|
|
||||||
private readonly IDalamudPluginInterface _pluginInterface;
|
|
||||||
private readonly Configuration _configuration;
|
|
||||||
|
|
||||||
public ConfigWindow(IDalamudPluginInterface pluginInterface, Configuration configuration)
|
|
||||||
: base("Gathering Path Config", ImGuiWindowFlags.AlwaysAutoResize)
|
|
||||||
{
|
|
||||||
_pluginInterface = pluginInterface;
|
|
||||||
_configuration = configuration;
|
|
||||||
|
|
||||||
AllowPinning = false;
|
|
||||||
AllowClickthrough = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public override void Draw()
|
|
||||||
{
|
|
||||||
string authorName = _configuration.AuthorName;
|
|
||||||
if (ImGui.InputText("Author name for new files", ref authorName, 256))
|
|
||||||
{
|
|
||||||
_configuration.AuthorName = authorName;
|
|
||||||
Save();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void Save() => _pluginInterface.SavePluginConfig(_configuration);
|
|
||||||
}
|
|
@ -1,17 +1,17 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Numerics;
|
using System.Numerics;
|
||||||
using Dalamud.Game.ClientState.Objects;
|
using Dalamud.Game.ClientState.Objects;
|
||||||
using Dalamud.Game.ClientState.Objects.Enums;
|
using Dalamud.Game.ClientState.Objects.Enums;
|
||||||
using Dalamud.Game.ClientState.Objects.Types;
|
using Dalamud.Game.ClientState.Objects.Types;
|
||||||
using Dalamud.Interface;
|
|
||||||
using Dalamud.Interface.Colors;
|
using Dalamud.Interface.Colors;
|
||||||
using Dalamud.Interface.Windowing;
|
using Dalamud.Interface.Windowing;
|
||||||
using Dalamud.Plugin.Services;
|
using Dalamud.Plugin.Services;
|
||||||
using ImGuiNET;
|
using ImGuiNET;
|
||||||
using Lumina.Excel.Sheets;
|
using Lumina.Excel.GeneratedSheets;
|
||||||
using Questionable.Model.Gathering;
|
using Questionable.Model.Gathering;
|
||||||
|
|
||||||
namespace GatheringPathRenderer.Windows;
|
namespace GatheringPathRenderer.Windows;
|
||||||
@ -33,8 +33,8 @@ internal sealed class EditorWindow : Window
|
|||||||
_targetLocation;
|
_targetLocation;
|
||||||
|
|
||||||
public EditorWindow(RendererPlugin plugin, EditorCommands editorCommands, IDataManager dataManager,
|
public EditorWindow(RendererPlugin plugin, EditorCommands editorCommands, IDataManager dataManager,
|
||||||
ITargetManager targetManager, IClientState clientState, IObjectTable objectTable, ConfigWindow configWindow)
|
ITargetManager targetManager, IClientState clientState, IObjectTable objectTable)
|
||||||
: base($"Gathering Path Editor {typeof(EditorWindow).Assembly.GetName().Version!.ToString(2)}###QuestionableGatheringPathEditor",
|
: base("Gathering Path Editor###QuestionableGatheringPathEditor",
|
||||||
ImGuiWindowFlags.NoFocusOnAppearing | ImGuiWindowFlags.NoNavFocus | ImGuiWindowFlags.AlwaysAutoResize)
|
ImGuiWindowFlags.NoFocusOnAppearing | ImGuiWindowFlags.NoNavFocus | ImGuiWindowFlags.AlwaysAutoResize)
|
||||||
{
|
{
|
||||||
_plugin = plugin;
|
_plugin = plugin;
|
||||||
@ -49,20 +49,6 @@ internal sealed class EditorWindow : Window
|
|||||||
MinimumSize = new Vector2(300, 100),
|
MinimumSize = new Vector2(300, 100),
|
||||||
};
|
};
|
||||||
|
|
||||||
TitleBarButtons.Add(new TitleBarButton
|
|
||||||
{
|
|
||||||
Icon = FontAwesomeIcon.Cog,
|
|
||||||
IconOffset = new Vector2(1.5f, 1),
|
|
||||||
Click = _ => configWindow.IsOpen = true,
|
|
||||||
Priority = int.MinValue,
|
|
||||||
ShowTooltip = () =>
|
|
||||||
{
|
|
||||||
ImGui.BeginTooltip();
|
|
||||||
ImGui.Text("Open Configuration");
|
|
||||||
ImGui.EndTooltip();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
RespectCloseHotkey = false;
|
RespectCloseHotkey = false;
|
||||||
ShowCloseButton = false;
|
ShowCloseButton = false;
|
||||||
AllowPinning = false;
|
AllowPinning = false;
|
||||||
@ -219,12 +205,12 @@ internal sealed class EditorWindow : Window
|
|||||||
}
|
}
|
||||||
else if (_target != null)
|
else if (_target != null)
|
||||||
{
|
{
|
||||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>().GetRowOrDefault(_target.DataId);
|
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(_target.DataId);
|
||||||
if (gatheringPoint == null)
|
if (gatheringPoint == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
||||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.Value.GatheringPointBase.RowId);
|
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
|
||||||
if (location != null)
|
if (location != null)
|
||||||
{
|
{
|
||||||
var targetFile = location.File;
|
var targetFile = location.File;
|
||||||
@ -248,9 +234,9 @@ internal sealed class EditorWindow : Window
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (ImGui.Button($"Create location ({gatheringPoint.Value.GatheringPointBase.RowId})"))
|
if (ImGui.Button($"Create location ({gatheringPoint.GatheringPointBase.Row})"))
|
||||||
{
|
{
|
||||||
var (targetFile, root) = _editorCommands.CreateNewFile(gatheringPoint.Value, _target);
|
var (targetFile, root) = _editorCommands.CreateNewFile(gatheringPoint, _target);
|
||||||
_plugin.Save(targetFile, root);
|
_plugin.Save(targetFile, root);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
"net8.0-windows7.0": {
|
"net8.0-windows7.0": {
|
||||||
"DalamudPackager": {
|
"DalamudPackager": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[11.0.0, )",
|
"requested": "[2.1.13, )",
|
||||||
"resolved": "11.0.0",
|
"resolved": "2.1.13",
|
||||||
"contentHash": "bjT7XUlhIJSmsE/O76b7weUX+evvGQctbQB8aKXt94o+oPWxHpCepxAGMs7Thow3AzCyqWs7cOpp9/2wcgRRQA=="
|
"contentHash": "rMN1omGe8536f4xLMvx9NwfvpAc9YFFfeXJ1t4P4PE6Gu8WCIoFliR1sh07hM+bfODmesk/dvMbji7vNI+B/pQ=="
|
||||||
},
|
},
|
||||||
"DotNet.ReproducibleBuilds": {
|
"DotNet.ReproducibleBuilds": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
@ -87,7 +87,7 @@
|
|||||||
"llib": {
|
"llib": {
|
||||||
"type": "Project",
|
"type": "Project",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"DalamudPackager": "[11.0.0, )"
|
"DalamudPackager": "[2.1.13, )"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"questionable.model": {
|
"questionable.model": {
|
||||||
|
@ -1,69 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "Theo",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 622,
|
|
||||||
"InteractionType": "None"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32320,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 609.3118,
|
|
||||||
"Y": -21.51083,
|
|
||||||
"Z": 558.524
|
|
||||||
},
|
|
||||||
"MinimumAngle": 90,
|
|
||||||
"MaximumAngle": 270,
|
|
||||||
"MaximumDistance": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32321,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 609.9794,
|
|
||||||
"Y": -21.53052,
|
|
||||||
"Z": 579.6443
|
|
||||||
},
|
|
||||||
"MinimumAngle": 90,
|
|
||||||
"MaximumAngle": 135,
|
|
||||||
"MaximumDistance": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32322,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 588.3865,
|
|
||||||
"Y": -20.42655,
|
|
||||||
"Z": 561.5663
|
|
||||||
},
|
|
||||||
"MinimumAngle": 45,
|
|
||||||
"MaximumAngle": 315,
|
|
||||||
"MaximumDistance": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,61 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 622,
|
|
||||||
"InteractionType": "None",
|
|
||||||
"AetheryteShortcut": "Azim Steppe - Dawn Throne"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32323,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -54.36381,
|
|
||||||
"Y": 55.83623,
|
|
||||||
"Z": -357.2043
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32325,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -56.99122,
|
|
||||||
"Y": 59.4855,
|
|
||||||
"Z": -368.9053
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32324,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -83.84797,
|
|
||||||
"Y": 60.70433,
|
|
||||||
"Z": -366.7615
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
{
|
|
||||||
"schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "Theo",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 622,
|
|
||||||
"InteractionType": "None"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32326,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -515.5125,
|
|
||||||
"Y": 65.79073,
|
|
||||||
"Z": -386.0356
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32327,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -527.5466,
|
|
||||||
"Y": 64.7018,
|
|
||||||
"Z": -379.2951
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32328,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -505.5859,
|
|
||||||
"Y": 64.95732,
|
|
||||||
"Z": -367.5692
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
{
|
|
||||||
"schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "Theo",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 622,
|
|
||||||
"InteractionType": "None"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32332,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 573.6873,
|
|
||||||
"Y": -20.41718,
|
|
||||||
"Z": 582.5559
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32333,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 579.1252,
|
|
||||||
"Y": -20.40873,
|
|
||||||
"Z": 565.84
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32334,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 608.5944,
|
|
||||||
"Y": -21.23272,
|
|
||||||
"Z": 571.2001
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,61 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 622,
|
|
||||||
"InteractionType": "None",
|
|
||||||
"AetheryteShortcut": "Azim Steppe - Dawn Throne"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32335,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -80.14488,
|
|
||||||
"Y": 58.18221,
|
|
||||||
"Z": -358.3333
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32336,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -58.9046,
|
|
||||||
"Y": 52.59887,
|
|
||||||
"Z": -350.7942
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32337,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -81.5958,
|
|
||||||
"Y": 51.05495,
|
|
||||||
"Z": -334.9854
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
{
|
|
||||||
"schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "Theo",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 622,
|
|
||||||
"InteractionType": "None"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32338,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 727.463,
|
|
||||||
"Y": 14.92286,
|
|
||||||
"Z": -477.1528
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32339,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 721.5626,
|
|
||||||
"Y": 24.81664,
|
|
||||||
"Z": -499.1444
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32340,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 702.1278,
|
|
||||||
"Y": 27.92893,
|
|
||||||
"Z": -505.186
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
{
|
|
||||||
"schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "Theo",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 622,
|
|
||||||
"InteractionType": "None"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32341,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 615.4055,
|
|
||||||
"Y": 31.42307,
|
|
||||||
"Z": -475.3718
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32342,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 612.0082,
|
|
||||||
"Y": 25.45944,
|
|
||||||
"Z": -442.0886
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 32343,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 634.1258,
|
|
||||||
"Y": 21.76424,
|
|
||||||
"Z": -436.3917
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,138 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 1190,
|
|
||||||
"InteractionType": "None"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34920,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 192.6021,
|
|
||||||
"Y": 12.31054,
|
|
||||||
"Z": 631.2545
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 194.8373,
|
|
||||||
"Y": 12.50387,
|
|
||||||
"Z": 646.5401
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 180.8447,
|
|
||||||
"Y": 12.43262,
|
|
||||||
"Z": 610.7131
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34919,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 186.171,
|
|
||||||
"Y": 12.54104,
|
|
||||||
"Z": 634.9042
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34917,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 39.45634,
|
|
||||||
"Y": -0.06042051,
|
|
||||||
"Z": 502.3853
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34918,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 46.03248,
|
|
||||||
"Y": -0.7049216,
|
|
||||||
"Z": 491.6059
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 36.15481,
|
|
||||||
"Y": -0.0501074,
|
|
||||||
"Z": 505.9388
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 24.72226,
|
|
||||||
"Y": 0.5922582,
|
|
||||||
"Z": 528.0809
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34922,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 2.302937,
|
|
||||||
"Y": -4.586716,
|
|
||||||
"Z": 687.4797
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 30.02284,
|
|
||||||
"Y": -2.447479,
|
|
||||||
"Z": 704.4326
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 41.59287,
|
|
||||||
"Y": -0.8454803,
|
|
||||||
"Z": 692.0099
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34921,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 18.47237,
|
|
||||||
"Y": -2.987581,
|
|
||||||
"Z": 690.8011
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,156 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 1190,
|
|
||||||
"InteractionType": "None"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34819,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -86.69859,
|
|
||||||
"Y": -8.177663,
|
|
||||||
"Z": 572.7712
|
|
||||||
},
|
|
||||||
"MinimumAngle": 45,
|
|
||||||
"MaximumAngle": 175
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34820,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -83.81214,
|
|
||||||
"Y": -8.291362,
|
|
||||||
"Z": 581.595
|
|
||||||
},
|
|
||||||
"MinimumAngle": 80,
|
|
||||||
"MaximumAngle": 175
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -88.70462,
|
|
||||||
"Y": -8.511888,
|
|
||||||
"Z": 578.6565
|
|
||||||
},
|
|
||||||
"MinimumAngle": 35,
|
|
||||||
"MaximumAngle": 150
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -81.00482,
|
|
||||||
"Y": -7.330131,
|
|
||||||
"Z": 574.7444
|
|
||||||
},
|
|
||||||
"MinimumAngle": 150,
|
|
||||||
"MaximumAngle": 245
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34817,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -264.2871,
|
|
||||||
"Y": -21.57944,
|
|
||||||
"Z": 593.6306
|
|
||||||
},
|
|
||||||
"MinimumAngle": 130,
|
|
||||||
"MaximumAngle": 255,
|
|
||||||
"MinimumDistance": 1.5,
|
|
||||||
"MaximumDistance": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34818,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -266.9412,
|
|
||||||
"Y": -21.20901,
|
|
||||||
"Z": 593.9532
|
|
||||||
},
|
|
||||||
"MinimumAngle": 70,
|
|
||||||
"MaximumAngle": 225
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -268.0496,
|
|
||||||
"Y": -21.79604,
|
|
||||||
"Z": 598.2532
|
|
||||||
},
|
|
||||||
"MinimumAngle": -45,
|
|
||||||
"MaximumAngle": 160
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -260.2841,
|
|
||||||
"Y": -22.10003,
|
|
||||||
"Z": 595.726
|
|
||||||
},
|
|
||||||
"MinimumAngle": 160,
|
|
||||||
"MaximumAngle": 330
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34815,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -276.2859,
|
|
||||||
"Y": -3.218076,
|
|
||||||
"Z": 437.6798
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34816,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -277.8067,
|
|
||||||
"Y": -2.664376,
|
|
||||||
"Z": 433.8469
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -273.7089,
|
|
||||||
"Y": -2.972111,
|
|
||||||
"Z": 434.3939
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -281.1727,
|
|
||||||
"Y": -2.682134,
|
|
||||||
"Z": 433.9476
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,163 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 1187,
|
|
||||||
"InteractionType": "None",
|
|
||||||
"AetheryteShortcut": "Urqopacha - Worlar's Echo"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34809,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 503.1253,
|
|
||||||
"Y": 113.6339,
|
|
||||||
"Z": 332.9355
|
|
||||||
},
|
|
||||||
"MinimumAngle": 35,
|
|
||||||
"MaximumAngle": 160
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34810,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 516.6899,
|
|
||||||
"Y": 116.4842,
|
|
||||||
"Z": 326.5524
|
|
||||||
},
|
|
||||||
"MinimumAngle": 20,
|
|
||||||
"MaximumAngle": 160
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 505.7916,
|
|
||||||
"Y": 114.2773,
|
|
||||||
"Z": 342.2974
|
|
||||||
},
|
|
||||||
"MinimumAngle": 0,
|
|
||||||
"MaximumAngle": 100
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 515.9227,
|
|
||||||
"Y": 114.58,
|
|
||||||
"Z": 317.4333
|
|
||||||
},
|
|
||||||
"MinimumAngle": 0,
|
|
||||||
"MaximumAngle": 135
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34813,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 370.5957,
|
|
||||||
"Y": 64.7135,
|
|
||||||
"Z": 158.4955
|
|
||||||
},
|
|
||||||
"MinimumAngle": -45,
|
|
||||||
"MaximumAngle": 70
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34814,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 363.6682,
|
|
||||||
"Y": 64.62195,
|
|
||||||
"Z": 152.1782
|
|
||||||
},
|
|
||||||
"MinimumAngle": 20,
|
|
||||||
"MaximumAngle": 140
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 394.519,
|
|
||||||
"Y": 63.70097,
|
|
||||||
"Z": 168.7538
|
|
||||||
},
|
|
||||||
"MinimumAngle": -125,
|
|
||||||
"MaximumAngle": 15
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 386.34,
|
|
||||||
"Y": 63.7528,
|
|
||||||
"Z": 166.915
|
|
||||||
},
|
|
||||||
"MinimumAngle": 15,
|
|
||||||
"MaximumAngle": 140
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34812,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 328.846,
|
|
||||||
"Y": 79.13469,
|
|
||||||
"Z": 434.0204
|
|
||||||
},
|
|
||||||
"MinimumAngle": 175,
|
|
||||||
"MaximumAngle": 280
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 352.4181,
|
|
||||||
"Y": 81.39249,
|
|
||||||
"Z": 446.0517
|
|
||||||
},
|
|
||||||
"MinimumAngle": 180,
|
|
||||||
"MaximumAngle": 260
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 336.5682,
|
|
||||||
"Y": 80.73547,
|
|
||||||
"Z": 443.9305
|
|
||||||
},
|
|
||||||
"MinimumAngle": 120,
|
|
||||||
"MaximumAngle": 200
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34811,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 341.6647,
|
|
||||||
"Y": 80.125,
|
|
||||||
"Z": 436.6368
|
|
||||||
},
|
|
||||||
"MinimumAngle": 100,
|
|
||||||
"MaximumAngle": 240
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,169 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 1189,
|
|
||||||
"InteractionType": "None",
|
|
||||||
"AetheryteShortcut": "Yak T'el - Iq Br'aax"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34768,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -600.5579,
|
|
||||||
"Y": 11.24981,
|
|
||||||
"Z": -171.375
|
|
||||||
},
|
|
||||||
"MinimumAngle": 235,
|
|
||||||
"MaximumAngle": 335
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -587.7422,
|
|
||||||
"Y": 14.98462,
|
|
||||||
"Z": -191.4126
|
|
||||||
},
|
|
||||||
"MinimumAngle": 30,
|
|
||||||
"MaximumAngle": 140
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -586.5687,
|
|
||||||
"Y": 11.46508,
|
|
||||||
"Z": -179.5758
|
|
||||||
},
|
|
||||||
"MinimumAngle": 15,
|
|
||||||
"MaximumAngle": 100,
|
|
||||||
"MinimumDistance": 1.5,
|
|
||||||
"MaximumDistance": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34767,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -598.7657,
|
|
||||||
"Y": 12.99629,
|
|
||||||
"Z": -178.7605
|
|
||||||
},
|
|
||||||
"MinimumAngle": 210,
|
|
||||||
"MaximumAngle": 325
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34772,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -484.7457,
|
|
||||||
"Y": -11.7739,
|
|
||||||
"Z": -35.59686
|
|
||||||
},
|
|
||||||
"MinimumAngle": 115,
|
|
||||||
"MaximumAngle": 270
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -490.1306,
|
|
||||||
"Y": -12.35526,
|
|
||||||
"Z": -37.11329
|
|
||||||
},
|
|
||||||
"MinimumAngle": 105,
|
|
||||||
"MaximumAngle": 280
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -465.1013,
|
|
||||||
"Y": -11.11267,
|
|
||||||
"Z": -37.65248
|
|
||||||
},
|
|
||||||
"MinimumAngle": 70,
|
|
||||||
"MaximumAngle": 170,
|
|
||||||
"MinimumDistance": 1,
|
|
||||||
"MaximumDistance": 2
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34771,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -474.0215,
|
|
||||||
"Y": -11.19864,
|
|
||||||
"Z": -33.31685
|
|
||||||
},
|
|
||||||
"MinimumAngle": 105,
|
|
||||||
"MaximumAngle": 230,
|
|
||||||
"MinimumDistance": 1,
|
|
||||||
"MaximumDistance": 2.4
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34769,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -359.9215,
|
|
||||||
"Y": 7.800453,
|
|
||||||
"Z": -75.53547
|
|
||||||
},
|
|
||||||
"MinimumAngle": -5,
|
|
||||||
"MaximumAngle": 90
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34770,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -357.9739,
|
|
||||||
"Y": 6.927034,
|
|
||||||
"Z": -74.45865
|
|
||||||
},
|
|
||||||
"MinimumAngle": -20,
|
|
||||||
"MaximumAngle": 80
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -362.3269,
|
|
||||||
"Y": 8.58064,
|
|
||||||
"Z": -80.35127
|
|
||||||
},
|
|
||||||
"MinimumAngle": 45,
|
|
||||||
"MaximumAngle": 105
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -362.3572,
|
|
||||||
"Y": 9.697624,
|
|
||||||
"Z": -82.81331
|
|
||||||
},
|
|
||||||
"MinimumAngle": 25,
|
|
||||||
"MaximumAngle": 110
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,138 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 1189,
|
|
||||||
"InteractionType": "None",
|
|
||||||
"AetheryteShortcut": "Yak T'el - Mamook"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Groups": [
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34836,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -168.5985,
|
|
||||||
"Y": -165.1216,
|
|
||||||
"Z": 237.7831
|
|
||||||
},
|
|
||||||
"MinimumAngle": 120,
|
|
||||||
"MaximumAngle": 230
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -150.4443,
|
|
||||||
"Y": -164.436,
|
|
||||||
"Z": 254.4874
|
|
||||||
},
|
|
||||||
"MinimumAngle": 185,
|
|
||||||
"MaximumAngle": 300
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34835,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -158.1436,
|
|
||||||
"Y": -164.3197,
|
|
||||||
"Z": 241.5584
|
|
||||||
},
|
|
||||||
"MinimumAngle": 160,
|
|
||||||
"MaximumAngle": 265
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34838,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 18.85102,
|
|
||||||
"Y": -161.2884,
|
|
||||||
"Z": 198.7801
|
|
||||||
},
|
|
||||||
"MinimumAngle": -25,
|
|
||||||
"MaximumAngle": 90
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 13.92384,
|
|
||||||
"Y": -157.3435,
|
|
||||||
"Z": 173.8837
|
|
||||||
},
|
|
||||||
"MinimumAngle": 80,
|
|
||||||
"MaximumAngle": 200
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34837,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 10.11395,
|
|
||||||
"Y": -158.4485,
|
|
||||||
"Z": 184.592
|
|
||||||
},
|
|
||||||
"MinimumAngle": 35,
|
|
||||||
"MaximumAngle": 145
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Nodes": [
|
|
||||||
{
|
|
||||||
"DataId": 34833,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -57.64437,
|
|
||||||
"Y": -162.1818,
|
|
||||||
"Z": 12.93413
|
|
||||||
},
|
|
||||||
"MinimumAngle": -110,
|
|
||||||
"MaximumAngle": -5,
|
|
||||||
"MinimumDistance": 1.3,
|
|
||||||
"MaximumDistance": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 34834,
|
|
||||||
"Locations": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -51.13529,
|
|
||||||
"Y": -163.5176,
|
|
||||||
"Z": 1.685887
|
|
||||||
},
|
|
||||||
"MinimumAngle": -155,
|
|
||||||
"MaximumAngle": 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -68.92974,
|
|
||||||
"Y": -160.1068,
|
|
||||||
"Z": 17.6384
|
|
||||||
},
|
|
||||||
"MinimumAngle": -65,
|
|
||||||
"MaximumAngle": 35
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
2
LLib
2
LLib
@ -1 +1 @@
|
|||||||
Subproject commit 746d14681baa91132784ab17f8f49671e86ea211
|
Subproject commit 6dfc18ee6a187138036ee2d51ba2257741c1e568
|
@ -1,26 +0,0 @@
|
|||||||
using Microsoft.CodeAnalysis;
|
|
||||||
using Microsoft.CodeAnalysis.CSharp;
|
|
||||||
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
||||||
using Questionable.Model.Questing;
|
|
||||||
using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory;
|
|
||||||
using static Questionable.QuestPathGenerator.RoslynShortcuts;
|
|
||||||
|
|
||||||
namespace Questionable.QuestPathGenerator.RoslynElements;
|
|
||||||
|
|
||||||
internal static class AlliedSocietyDailyIdExtensions
|
|
||||||
{
|
|
||||||
public static ExpressionSyntax ToExpressionSyntax(this AlliedSocietyDailyId alliedSocietyDailyId)
|
|
||||||
{
|
|
||||||
return ObjectCreationExpression(
|
|
||||||
IdentifierName(nameof(AlliedSocietyDailyId)))
|
|
||||||
.WithArgumentList(
|
|
||||||
ArgumentList(
|
|
||||||
SeparatedList<ArgumentSyntax>(
|
|
||||||
new SyntaxNodeOrToken[]
|
|
||||||
{
|
|
||||||
Argument(LiteralValue(alliedSocietyDailyId.AlliedSociety)),
|
|
||||||
Token(SyntaxKind.CommaToken),
|
|
||||||
Argument(LiteralValue(alliedSocietyDailyId.Rank)),
|
|
||||||
})));
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,29 +0,0 @@
|
|||||||
using Microsoft.CodeAnalysis.CSharp;
|
|
||||||
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|
||||||
using Questionable.Model.Questing;
|
|
||||||
using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory;
|
|
||||||
using static Questionable.QuestPathGenerator.RoslynShortcuts;
|
|
||||||
|
|
||||||
namespace Questionable.QuestPathGenerator.RoslynElements;
|
|
||||||
|
|
||||||
internal static class CombatItemUseExtensions
|
|
||||||
{
|
|
||||||
public static ExpressionSyntax ToExpressionSyntax(this CombatItemUse combatItemuse)
|
|
||||||
{
|
|
||||||
var emptyItemuse = new CombatItemUse();
|
|
||||||
return ObjectCreationExpression(
|
|
||||||
IdentifierName(nameof(CombatItemUse)))
|
|
||||||
.WithInitializer(
|
|
||||||
InitializerExpression(
|
|
||||||
SyntaxKind.ObjectInitializerExpression,
|
|
||||||
SeparatedList<ExpressionSyntax>(
|
|
||||||
SyntaxNodeList(
|
|
||||||
Assignment(nameof(CombatItemUse.ItemId), combatItemuse.ItemId,
|
|
||||||
emptyItemuse.ItemId)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(CombatItemUse.Condition), combatItemuse.Condition, emptyItemuse.Condition)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(combatItemuse.Value), combatItemuse.Value, emptyItemuse.Value)
|
|
||||||
.AsSyntaxNodeOrToken()))));
|
|
||||||
}
|
|
||||||
}
|
|
@ -21,9 +21,6 @@ internal static class ComplexCombatDataExtensions
|
|||||||
Assignment(nameof(ComplexCombatData.DataId), complexCombatData.DataId,
|
Assignment(nameof(ComplexCombatData.DataId), complexCombatData.DataId,
|
||||||
emptyData.DataId)
|
emptyData.DataId)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(ComplexCombatData.NameId), complexCombatData.NameId,
|
|
||||||
emptyData.NameId)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(ComplexCombatData.MinimumKillCount),
|
Assignment(nameof(ComplexCombatData.MinimumKillCount),
|
||||||
complexCombatData.MinimumKillCount, emptyData.MinimumKillCount)
|
complexCombatData.MinimumKillCount, emptyData.MinimumKillCount)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
|
@ -29,6 +29,10 @@ internal static class GatheredItemExtensions
|
|||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(GatheredItem.Collectability), gatheredItem.Collectability,
|
Assignment(nameof(GatheredItem.Collectability), gatheredItem.Collectability,
|
||||||
emptyItem.Collectability)
|
emptyItem.Collectability)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(GatheredItem.QuestAcceptedAsClass),
|
||||||
|
gatheredItem.QuestAcceptedAsClass,
|
||||||
|
emptyItem.QuestAcceptedAsClass)
|
||||||
.AsSyntaxNodeOrToken()))));
|
.AsSyntaxNodeOrToken()))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -97,9 +97,6 @@ internal static class QuestStepExtensions
|
|||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestStep.Status), step.Status, emptyStep.Status)
|
Assignment(nameof(QuestStep.Status), step.Status, emptyStep.Status)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestStep.TargetClass), step.TargetClass,
|
|
||||||
emptyStep.TargetClass)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(QuestStep.EnemySpawnType), step.EnemySpawnType,
|
Assignment(nameof(QuestStep.EnemySpawnType), step.EnemySpawnType,
|
||||||
emptyStep.EnemySpawnType)
|
emptyStep.EnemySpawnType)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
@ -107,9 +104,6 @@ internal static class QuestStepExtensions
|
|||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
AssignmentList(nameof(QuestStep.ComplexCombatData), step.ComplexCombatData)
|
AssignmentList(nameof(QuestStep.ComplexCombatData), step.ComplexCombatData)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestStep.CombatItemUse), step.CombatItemUse,
|
|
||||||
emptyStep.CombatItemUse)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(QuestStep.CombatDelaySecondsAtStart),
|
Assignment(nameof(QuestStep.CombatDelaySecondsAtStart),
|
||||||
step.CombatDelaySecondsAtStart,
|
step.CombatDelaySecondsAtStart,
|
||||||
emptyStep.CombatDelaySecondsAtStart)
|
emptyStep.CombatDelaySecondsAtStart)
|
||||||
@ -120,21 +114,12 @@ internal static class QuestStepExtensions
|
|||||||
Assignment(nameof(QuestStep.ContentFinderConditionId),
|
Assignment(nameof(QuestStep.ContentFinderConditionId),
|
||||||
step.ContentFinderConditionId, emptyStep.ContentFinderConditionId)
|
step.ContentFinderConditionId, emptyStep.ContentFinderConditionId)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestStep.AutoDutyEnabled),
|
|
||||||
step.AutoDutyEnabled, emptyStep.AutoDutyEnabled)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(QuestStep.SkipConditions), step.SkipConditions,
|
Assignment(nameof(QuestStep.SkipConditions), step.SkipConditions,
|
||||||
emptyStep.SkipConditions)
|
emptyStep.SkipConditions)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
AssignmentList(nameof(QuestStep.RequiredQuestVariables),
|
AssignmentList(nameof(QuestStep.RequiredQuestVariables),
|
||||||
step.RequiredQuestVariables)
|
step.RequiredQuestVariables)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
AssignmentList(nameof(QuestStep.RequiredCurrentJob),
|
|
||||||
step.RequiredCurrentJob)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
AssignmentList(nameof(QuestStep.RequiredQuestAcceptedJob),
|
|
||||||
step.RequiredQuestAcceptedJob)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
AssignmentList(nameof(QuestStep.ItemsToGather),
|
AssignmentList(nameof(QuestStep.ItemsToGather),
|
||||||
step.ItemsToGather),
|
step.ItemsToGather),
|
||||||
AssignmentList(nameof(QuestStep.CompletionQuestVariablesFlags),
|
AssignmentList(nameof(QuestStep.CompletionQuestVariablesFlags),
|
||||||
|
@ -48,9 +48,6 @@ internal static class SkipConditionsExtensions
|
|||||||
Assignment(nameof(SkipStepConditions.Flying), skipStepConditions.Flying,
|
Assignment(nameof(SkipStepConditions.Flying), skipStepConditions.Flying,
|
||||||
emptyStep.Flying)
|
emptyStep.Flying)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(SkipStepConditions.Diving), skipStepConditions.Diving,
|
|
||||||
emptyStep.Diving)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(SkipStepConditions.Chocobo), skipStepConditions.Chocobo,
|
Assignment(nameof(SkipStepConditions.Chocobo), skipStepConditions.Chocobo,
|
||||||
emptyStep.Chocobo)
|
emptyStep.Chocobo)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
|
@ -51,7 +51,6 @@ public static class RoslynShortcuts
|
|||||||
QuestId questId => questId.ToExpressionSyntax(),
|
QuestId questId => questId.ToExpressionSyntax(),
|
||||||
LeveId leveId => leveId.ToExpressionSyntax(),
|
LeveId leveId => leveId.ToExpressionSyntax(),
|
||||||
SatisfactionSupplyNpcId satisfactionSupplyNpcId => satisfactionSupplyNpcId.ToExpressionSyntax(),
|
SatisfactionSupplyNpcId satisfactionSupplyNpcId => satisfactionSupplyNpcId.ToExpressionSyntax(),
|
||||||
AlliedSocietyDailyId alliedSocietyDailyId => alliedSocietyDailyId.ToExpressionSyntax(),
|
|
||||||
Vector3 vector => vector.ToExpressionSyntax(),
|
Vector3 vector => vector.ToExpressionSyntax(),
|
||||||
AethernetShortcut aethernetShortcut => aethernetShortcut.ToExpressionSyntax(),
|
AethernetShortcut aethernetShortcut => aethernetShortcut.ToExpressionSyntax(),
|
||||||
ChatMessage chatMessage => chatMessage.ToExpressionSyntax(),
|
ChatMessage chatMessage => chatMessage.ToExpressionSyntax(),
|
||||||
@ -71,7 +70,6 @@ public static class RoslynShortcuts
|
|||||||
GatheringNodeGroup nodeGroup => nodeGroup.ToExpressionSyntax(),
|
GatheringNodeGroup nodeGroup => nodeGroup.ToExpressionSyntax(),
|
||||||
GatheringNode nodeLocation => nodeLocation.ToExpressionSyntax(),
|
GatheringNode nodeLocation => nodeLocation.ToExpressionSyntax(),
|
||||||
GatheringLocation location => location.ToExpressionSyntax(),
|
GatheringLocation location => location.ToExpressionSyntax(),
|
||||||
CombatItemUse combatItemUse => combatItemUse.ToExpressionSyntax(),
|
|
||||||
not null when value.GetType().IsEnum => MemberAccessExpression(SyntaxKind.SimpleMemberAccessExpression,
|
not null when value.GetType().IsEnum => MemberAccessExpression(SyntaxKind.SimpleMemberAccessExpression,
|
||||||
IdentifierName(value.GetType().Name), IdentifierName(value.GetType().GetEnumName(value)!)),
|
IdentifierName(value.GetType().Name), IdentifierName(value.GetType().GetEnumName(value)!)),
|
||||||
_ => throw new Exception($"Unsupported data type {value.GetType()} = {value}")
|
_ => throw new Exception($"Unsupported data type {value.GetType()} = {value}")
|
||||||
|
@ -329,9 +329,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": 3.8795898,
|
"X": -0.75614685,
|
||||||
"Y": 38.80212,
|
"Y": 38.80212,
|
||||||
"Z": 0.40251642
|
"Z": -11.007636
|
||||||
},
|
},
|
||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo",
|
||||||
@ -359,8 +359,7 @@
|
|||||||
null,
|
null,
|
||||||
128
|
128
|
||||||
],
|
],
|
||||||
"Fly": true,
|
"Fly": true
|
||||||
"DisableNavmesh": true
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2000078,
|
"DataId": 2000078,
|
||||||
|
@ -1,116 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005550,
|
|
||||||
"Position": {
|
|
||||||
"X": 105.27197,
|
|
||||||
"Y": 15.359643,
|
|
||||||
"Z": -357.3816
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002979,
|
|
||||||
"Position": {
|
|
||||||
"X": -180.68213,
|
|
||||||
"Y": 6.301941,
|
|
||||||
"Z": -136.21735
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [1, 2], null, null, null, null],
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002981,
|
|
||||||
"Position": {
|
|
||||||
"X": -30.655396,
|
|
||||||
"Y": 8.651855,
|
|
||||||
"Z": -87.02222
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [4, 17], null, null, null, null],
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002982,
|
|
||||||
"Position": {
|
|
||||||
"X": -116.44165,
|
|
||||||
"Y": -0.3204956,
|
|
||||||
"Z": -34.40918
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [18, 20], null, null, null, null],
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002985,
|
|
||||||
"Position": {
|
|
||||||
"X": -41.031555,
|
|
||||||
"Y": 0.16778564,
|
|
||||||
"Z": 15.915161
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
[33, 34, 36],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002986,
|
|
||||||
"Position": {
|
|
||||||
"X": -78.81293,
|
|
||||||
"Y": -1.083435,
|
|
||||||
"Z": 44.052734
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [
|
|
||||||
null,
|
|
||||||
[49, 50, 52],
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005550,
|
|
||||||
"Position": {
|
|
||||||
"X": 105.27197,
|
|
||||||
"Y": 15.359643,
|
|
||||||
"Z": -357.3816
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,63 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005550,
|
|
||||||
"Position": {
|
|
||||||
"X": 105.27197,
|
|
||||||
"Y": 15.359643,
|
|
||||||
"Z": -357.3816
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -40.402416,
|
|
||||||
"Y": -1.1266766,
|
|
||||||
"Z": 0.71999836
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 358,
|
|
||||||
"MinimumKillCount": 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2451,
|
|
||||||
"MinimumKillCount": 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005550,
|
|
||||||
"Position": {
|
|
||||||
"X": 105.27197,
|
|
||||||
"Y": 15.359643,
|
|
||||||
"Z": -357.3816
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,7 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "plogon_enjoyer",
|
"Author": "plogon_enjoyer",
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
|
@ -1,148 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"Disabled": true,
|
|
||||||
"Comment": "WIP too many cases",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -175.15483,
|
|
||||||
"Y": 40,
|
|
||||||
"Z": 159.05237
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003019,
|
|
||||||
"Position": {
|
|
||||||
"X": -88.059875,
|
|
||||||
"Y": 43.503418,
|
|
||||||
"Z": 149.00427
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [4], null, null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003022,
|
|
||||||
"Position": {
|
|
||||||
"X": -170.85535,
|
|
||||||
"Y": 39.993896,
|
|
||||||
"Z": 135.45422
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [5], null, null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003017,
|
|
||||||
"Position": {
|
|
||||||
"X": -97.48993,
|
|
||||||
"Y": 45.792236,
|
|
||||||
"Z": 197.28381
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [20], null, null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003020,
|
|
||||||
"Position": {
|
|
||||||
"X": -77.836365,
|
|
||||||
"Y": 43.4729,
|
|
||||||
"Z": 155.50464
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [21], null, null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003015,
|
|
||||||
"Position": {
|
|
||||||
"X": 133.62317,
|
|
||||||
"Y": 13.961914,
|
|
||||||
"Z": 152.26978
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [36], null, null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003018,
|
|
||||||
"Position": {
|
|
||||||
"X": -100.572266,
|
|
||||||
"Y": 45.76172,
|
|
||||||
"Z": 211.04749
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [37], null, null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003016,
|
|
||||||
"Position": {
|
|
||||||
"X": 185.19873,
|
|
||||||
"Y": 13.992493,
|
|
||||||
"Z": 231.89136
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, [52, 53], null, null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 30.256956,
|
|
||||||
"Y": 38.639523,
|
|
||||||
"Z": 145.03891
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,118 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005848,
|
|
||||||
"Position": {
|
|
||||||
"X": -101.487854,
|
|
||||||
"Y": 8.097177,
|
|
||||||
"Z": 403.28064
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003353,
|
|
||||||
"Position": {
|
|
||||||
"X": -248.0965,
|
|
||||||
"Y": 2.8533936,
|
|
||||||
"Z": 675.95935
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fiery Breath",
|
|
||||||
"RequiredQuestVariables": [null, null, null, [1], null, null]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003354,
|
|
||||||
"Position": {
|
|
||||||
"X": -132.03638,
|
|
||||||
"Y": -1.449646,
|
|
||||||
"Z": 778.8052
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fiery Breath",
|
|
||||||
"RequiredQuestVariables": [null, null, null, [1, 5], null, null]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003356,
|
|
||||||
"Position": {
|
|
||||||
"X": 78.446655,
|
|
||||||
"Y": 14.328186,
|
|
||||||
"Z": 589.9595
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fiery Breath",
|
|
||||||
"RequiredQuestVariables": [null, null, null, [1, 5], null, null]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003357,
|
|
||||||
"Position": {
|
|
||||||
"X": 179.9801,
|
|
||||||
"Y": 6.6376343,
|
|
||||||
"Z": 601.15967
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fiery Breath",
|
|
||||||
"RequiredQuestVariables": [null, null, null, [5], null, null]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -56.11375,
|
|
||||||
"Y": 25.301596,
|
|
||||||
"Z": -391.2648
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,213 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005745,
|
|
||||||
"Position": {
|
|
||||||
"X": 22.720581,
|
|
||||||
"Y": 4.240738,
|
|
||||||
"Z": -443.07623
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -126.48953,
|
|
||||||
"Y": 27.57419,
|
|
||||||
"Z": 138.61473
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003048,
|
|
||||||
"Position": {
|
|
||||||
"X": -136.85822,
|
|
||||||
"Y": 18.753235,
|
|
||||||
"Z": 116.50256
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, null, [1, 2], null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003049,
|
|
||||||
"Position": {
|
|
||||||
"X": -121.78229,
|
|
||||||
"Y": 28.732666,
|
|
||||||
"Z": 140.33716
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, null, [3], null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003050,
|
|
||||||
"Position": {
|
|
||||||
"X": -91.96619,
|
|
||||||
"Y": 43.07617,
|
|
||||||
"Z": 156.84741
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, null, [4], null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003051,
|
|
||||||
"Position": {
|
|
||||||
"X": -55.40558,
|
|
||||||
"Y": 42.526855,
|
|
||||||
"Z": 192.18738
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, null, [1, 3, 4], null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003052,
|
|
||||||
"Position": {
|
|
||||||
"X": 6.668152,
|
|
||||||
"Y": 36.9115,
|
|
||||||
"Z": 207.01917
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, null, [2], null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003053,
|
|
||||||
"Position": {
|
|
||||||
"X": 73.31958,
|
|
||||||
"Y": 31.784546,
|
|
||||||
"Z": 153.76514
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, null, [1], null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003054,
|
|
||||||
"Position": {
|
|
||||||
"X": 79.42322,
|
|
||||||
"Y": 25.802979,
|
|
||||||
"Z": 208.66711
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, null, [2, 4], null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003055,
|
|
||||||
"Position": {
|
|
||||||
"X": 106.889404,
|
|
||||||
"Y": 14.602844,
|
|
||||||
"Z": 147.53943
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"RequiredQuestVariables": [null, null, [3], null, null, null],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 135.42383,
|
|
||||||
"Y": 8.102478,
|
|
||||||
"Z": 178.36267
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [2456],
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003056,
|
|
||||||
"Position": {
|
|
||||||
"X": 135.42383,
|
|
||||||
"Y": 8.102478,
|
|
||||||
"Z": 178.36267
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -63.849556,
|
|
||||||
"Y": 26.409807,
|
|
||||||
"Z": -383.9894
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005745,
|
|
||||||
"Position": {
|
|
||||||
"X": 22.720581,
|
|
||||||
"Y": 4.240738,
|
|
||||||
"Z": -443.07623
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,59 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -38.375584,
|
|
||||||
"Y": 8.492833,
|
|
||||||
"Z": 156.09068
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 2452,
|
|
||||||
"MinimumKillCount": 2
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,221 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005553,
|
|
||||||
"Position": {
|
|
||||||
"X": 122.6062,
|
|
||||||
"Y": 16.402647,
|
|
||||||
"Z": -362.11188
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005581,
|
|
||||||
"Position": {
|
|
||||||
"X": -55.985413,
|
|
||||||
"Y": -1.6554508,
|
|
||||||
"Z": -47.56244
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002949,
|
|
||||||
"Position": {
|
|
||||||
"X": -70.17627,
|
|
||||||
"Y": 11.36792,
|
|
||||||
"Z": 97.0625
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fiery Breath"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002956,
|
|
||||||
"Position": {
|
|
||||||
"X": -199.96954,
|
|
||||||
"Y": 5.661072,
|
|
||||||
"Z": 101.823364
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fiery Breath"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002950,
|
|
||||||
"Position": {
|
|
||||||
"X": -118.0896,
|
|
||||||
"Y": 27.695068,
|
|
||||||
"Z": 126.97034
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fiery Breath"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005585,
|
|
||||||
"Position": {
|
|
||||||
"X": -114.64105,
|
|
||||||
"Y": 7.539109,
|
|
||||||
"Z": 308.82727
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005583,
|
|
||||||
"Position": {
|
|
||||||
"X": -114.27484,
|
|
||||||
"Y": 7.6587763,
|
|
||||||
"Z": 310.01746
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005584,
|
|
||||||
"Position": {
|
|
||||||
"X": -261.55493,
|
|
||||||
"Y": 7.084492,
|
|
||||||
"Z": 412.28345
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1008284,
|
|
||||||
"Position": {
|
|
||||||
"X": -306.44696,
|
|
||||||
"Y": 6.321288,
|
|
||||||
"Z": 392.5078
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -365.44217,
|
|
||||||
"Y": 6.691126,
|
|
||||||
"Z": 395.09555
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1008287,
|
|
||||||
"Position": {
|
|
||||||
"X": -366.10974,
|
|
||||||
"Y": 6.9095497,
|
|
||||||
"Z": 394.64404
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1008285,
|
|
||||||
"Position": {
|
|
||||||
"X": -319.50867,
|
|
||||||
"Y": 8.2855835,
|
|
||||||
"Z": 428.18335
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1008286,
|
|
||||||
"Position": {
|
|
||||||
"X": -330.5562,
|
|
||||||
"Y": 8.096848,
|
|
||||||
"Z": 480.0641
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -159.56685,
|
|
||||||
"Y": 23.290625,
|
|
||||||
"Z": -334.22568
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005578,
|
|
||||||
"Position": {
|
|
||||||
"X": 89.00586,
|
|
||||||
"Y": 14.439478,
|
|
||||||
"Z": -387.77753
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005553,
|
|
||||||
"Position": {
|
|
||||||
"X": 122.6062,
|
|
||||||
"Y": 16.402647,
|
|
||||||
"Z": -362.11188
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,110 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 11.243606,
|
|
||||||
"Y": 49.8394,
|
|
||||||
"Z": -374.39398
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003774,
|
|
||||||
"Position": {
|
|
||||||
"X": 10.269287,
|
|
||||||
"Y": 49.82068,
|
|
||||||
"Z": -375.5398
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2004022,
|
|
||||||
"Position": {
|
|
||||||
"X": 39.139404,
|
|
||||||
"Y": 48.2948,
|
|
||||||
"Z": -342.33618
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2004020,
|
|
||||||
"Position": {
|
|
||||||
"X": 51.102417,
|
|
||||||
"Y": 48.2948,
|
|
||||||
"Z": -349.50793
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,76 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -1.668298,
|
|
||||||
"Y": 48.422268,
|
|
||||||
"Z": -312.28842
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 327,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"RewardItemId": 2001266,
|
|
||||||
"RewardItemCount": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005932,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.236023,
|
|
||||||
"Y": 33.38838,
|
|
||||||
"Z": -244.19019
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,57 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 65.98078,
|
|
||||||
"Y": 57.753456,
|
|
||||||
"Z": -310.697
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
755,
|
|
||||||
2881
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005928,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.095398,
|
|
||||||
"Y": 16.167778,
|
|
||||||
"Z": -188.67786
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,92 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005932,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.236023,
|
|
||||||
"Y": 33.38838,
|
|
||||||
"Z": -244.19019
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003686,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.602783,
|
|
||||||
"Y": 48.111572,
|
|
||||||
"Z": -388.29633
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2899,
|
|
||||||
2900,
|
|
||||||
2901
|
|
||||||
],
|
|
||||||
"ItemId": 2001226,
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005932,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.236023,
|
|
||||||
"Y": 33.38838,
|
|
||||||
"Z": -244.19019
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,59 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 51.48164,
|
|
||||||
"Y": 55.599014,
|
|
||||||
"Z": -491.209
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 1833,
|
|
||||||
"MinimumKillCount": 2
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,248 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 96.21657,
|
|
||||||
"Y": 55.28576,
|
|
||||||
"Z": -500.41245
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005960,
|
|
||||||
"Position": {
|
|
||||||
"X": 97.3678,
|
|
||||||
"Y": 56.809326,
|
|
||||||
"Z": -502.06763
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005960,
|
|
||||||
"Position": {
|
|
||||||
"X": 97.3678,
|
|
||||||
"Y": 56.809326,
|
|
||||||
"Z": -502.06763
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "YesNo",
|
|
||||||
"Prompt": "TEXT_BANKOB205_01339_SCENE00008_EVENTAREA_WARP_YESNO_TITLE",
|
|
||||||
"Yes": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003743,
|
|
||||||
"Position": {
|
|
||||||
"X": 227.00842,
|
|
||||||
"Y": 22.75116,
|
|
||||||
"Z": -582.81836
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003744,
|
|
||||||
"Position": {
|
|
||||||
"X": 224.78064,
|
|
||||||
"Y": 23.941406,
|
|
||||||
"Z": -580.9568
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001244,
|
|
||||||
"IgnoreDistanceToObject": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003746,
|
|
||||||
"Position": {
|
|
||||||
"X": 239.30713,
|
|
||||||
"Y": 22.323914,
|
|
||||||
"Z": -577.29456
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2880
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 1
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003745,
|
|
||||||
"Position": {
|
|
||||||
"X": 242.8778,
|
|
||||||
"Y": 22.507019,
|
|
||||||
"Z": -584.37476
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2880
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 2
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003746,
|
|
||||||
"Position": {
|
|
||||||
"X": 239.30713,
|
|
||||||
"Y": 22.323914,
|
|
||||||
"Z": -577.29456
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2880
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003745,
|
|
||||||
"Position": {
|
|
||||||
"X": 242.8778,
|
|
||||||
"Y": 22.507019,
|
|
||||||
"Z": -584.37476
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2880
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 4
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003746,
|
|
||||||
"Position": {
|
|
||||||
"X": 239.30713,
|
|
||||||
"Y": 22.323914,
|
|
||||||
"Z": -577.29456
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2883
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005932,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.236023,
|
|
||||||
"Y": 33.38838,
|
|
||||||
"Z": -244.19019
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,76 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005932,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.236023,
|
|
||||||
"Y": 33.38838,
|
|
||||||
"Z": -244.19019
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_BANKOB210_01344_Q1_000_000",
|
|
||||||
"Answer": "TEXT_BANKOB210_01344_A1_000_001"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003963,
|
|
||||||
"Position": {
|
|
||||||
"X": 91.203125,
|
|
||||||
"Y": 55.74109,
|
|
||||||
"Z": -483.299
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Comment": "Spawns enemy that we ignore"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005929,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.560913,
|
|
||||||
"Y": 16.342407,
|
|
||||||
"Z": -183.76447
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,124 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 112.19494,
|
|
||||||
"Y": 23.602901,
|
|
||||||
"Z": -611.7208
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 13.632976,
|
|
||||||
"Y": 21.54334,
|
|
||||||
"Z": -769.12134
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003699,
|
|
||||||
"Position": {
|
|
||||||
"X": 7.94989,
|
|
||||||
"Y": 21.713562,
|
|
||||||
"Z": -769.06995
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2841
|
|
||||||
],
|
|
||||||
"ItemId": 2001230,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003701,
|
|
||||||
"Position": {
|
|
||||||
"X": 5.142273,
|
|
||||||
"Y": 23.75824,
|
|
||||||
"Z": -803.9216
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2841
|
|
||||||
],
|
|
||||||
"ItemId": 2001230,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003702,
|
|
||||||
"Position": {
|
|
||||||
"X": 0.47296143,
|
|
||||||
"Y": 24.551636,
|
|
||||||
"Z": -795.74274
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2841
|
|
||||||
],
|
|
||||||
"ItemId": 2001230
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,173 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005932,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.236023,
|
|
||||||
"Y": 33.38838,
|
|
||||||
"Z": -244.19019
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003911,
|
|
||||||
"Position": {
|
|
||||||
"X": 296.5896,
|
|
||||||
"Y": 21.499878,
|
|
||||||
"Z": -722.13324
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001278,
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 296.5896,
|
|
||||||
"Y": 21.499878,
|
|
||||||
"Z": -722.13324
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "FinishCombatIfAny",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
755
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003910,
|
|
||||||
"Position": {
|
|
||||||
"X": 293.41565,
|
|
||||||
"Y": 21.499878,
|
|
||||||
"Z": -721.91956
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001278,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 293.41565,
|
|
||||||
"Y": 21.499878,
|
|
||||||
"Z": -721.91956
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "FinishCombatIfAny",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
755
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003909,
|
|
||||||
"Position": {
|
|
||||||
"X": 290.0282,
|
|
||||||
"Y": 21.530457,
|
|
||||||
"Z": -721.3397
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001278,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 290.0282,
|
|
||||||
"Y": 21.530457,
|
|
||||||
"Z": -721.3397
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "FinishCombatIfAny",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
755
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003912,
|
|
||||||
"Position": {
|
|
||||||
"X": 295.76562,
|
|
||||||
"Y": 21.469421,
|
|
||||||
"Z": -711.9402
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001279
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
|
||||||
"Fly": true,
|
|
||||||
"DelaySecondsAtStart": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,38 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"Disabled": true,
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005930,
|
|
||||||
"Position": {
|
|
||||||
"X": 12.558105,
|
|
||||||
"Y": 16.159302,
|
|
||||||
"Z": -176.5622
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,132 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005562,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.850464,
|
|
||||||
"Y": -4.8778634,
|
|
||||||
"Z": 249.19507
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 321.08926,
|
|
||||||
"Y": -17.347095,
|
|
||||||
"Z": -201.61072
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003494,
|
|
||||||
"Position": {
|
|
||||||
"X": 319.44763,
|
|
||||||
"Y": -17.227417,
|
|
||||||
"Z": -200.88507
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2001154,
|
|
||||||
"GroundTarget": true,
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
764
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003041,
|
|
||||||
"Position": {
|
|
||||||
"X": 386.099,
|
|
||||||
"Y": -20.187744,
|
|
||||||
"Z": -200.763
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2001154,
|
|
||||||
"GroundTarget": true,
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
764
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
4
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003040,
|
|
||||||
"Position": {
|
|
||||||
"X": 326.77185,
|
|
||||||
"Y": -18.112549,
|
|
||||||
"Z": -235.95032
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2001154,
|
|
||||||
"GroundTarget": true,
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
764
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005562,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.850464,
|
|
||||||
"Y": -4.8778634,
|
|
||||||
"Z": 249.19507
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,79 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005562,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.850464,
|
|
||||||
"Y": -4.8778634,
|
|
||||||
"Z": 249.19507
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003307,
|
|
||||||
"Position": {
|
|
||||||
"X": 261.82947,
|
|
||||||
"Y": -9.323303,
|
|
||||||
"Z": -72.80078
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2003487,
|
|
||||||
"Position": {
|
|
||||||
"X": 429.89233,
|
|
||||||
"Y": -14.2977295,
|
|
||||||
"Z": -257.61804
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2003310,
|
|
||||||
"Position": {
|
|
||||||
"X": 551.812,
|
|
||||||
"Y": -22.537598,
|
|
||||||
"Z": -352.13245
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005562,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.850464,
|
|
||||||
"Y": -4.8778634,
|
|
||||||
"Z": 249.19507
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,57 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005562,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.850464,
|
|
||||||
"Y": -4.8778634,
|
|
||||||
"Z": 249.19507
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 336.78577,
|
|
||||||
"Y": -17.169508,
|
|
||||||
"Z": -252.20335
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2464
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005562,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.850464,
|
|
||||||
"Y": -4.8778634,
|
|
||||||
"Z": 249.19507
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,118 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "pot0to",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002279,
|
|
||||||
"Position": {
|
|
||||||
"X": -196.8872,
|
|
||||||
"Y": 18.459997,
|
|
||||||
"Z": 59.952637
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002533,
|
|
||||||
"Position": {
|
|
||||||
"X": -72.67877,
|
|
||||||
"Y": -32.059265,
|
|
||||||
"Z": -46.830017
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true,
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
305
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002429,
|
|
||||||
"Position": {
|
|
||||||
"X": -72.67877,
|
|
||||||
"Y": -32.059265,
|
|
||||||
"Z": -46.830017
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000954
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002279,
|
|
||||||
"Position": {
|
|
||||||
"X": -196.8872,
|
|
||||||
"Y": 18.459997,
|
|
||||||
"Z": 59.952637
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006752,
|
|
||||||
"Position": {
|
|
||||||
"X": 87.5105,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 113.725464
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Thaumaturges' Guild",
|
|
||||||
"[Ul'dah] Weavers' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,131 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "pot0to",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006752,
|
|
||||||
"Position": {
|
|
||||||
"X": 87.5105,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 113.725464
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "EquipItem",
|
|
||||||
"ItemId": 4548,
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Weavers' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130,
|
|
||||||
131
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006752,
|
|
||||||
"Position": {
|
|
||||||
"X": 87.5105,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 113.725464
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002534,
|
|
||||||
"Position": {
|
|
||||||
"X": -7.9194946,
|
|
||||||
"Y": 13.687317,
|
|
||||||
"Z": 866.54443
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
|
||||||
"Fly": true,
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
21
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002430,
|
|
||||||
"Position": {
|
|
||||||
"X": -7.9194946,
|
|
||||||
"Y": 13.687317,
|
|
||||||
"Z": 866.54443
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000809
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002279,
|
|
||||||
"Position": {
|
|
||||||
"X": -196.8872,
|
|
||||||
"Y": 18.459997,
|
|
||||||
"Z": 59.952637
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006752,
|
|
||||||
"Position": {
|
|
||||||
"X": 87.5105,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 113.725464
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Weavers' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,217 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "pot0to",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006752,
|
|
||||||
"Position": {
|
|
||||||
"X": 87.5105,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 113.725464
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Weavers' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130,
|
|
||||||
131
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007864,
|
|
||||||
"Position": {
|
|
||||||
"X": -167.40674,
|
|
||||||
"Y": 14.513778,
|
|
||||||
"Z": -251.3009
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002535,
|
|
||||||
"Position": {
|
|
||||||
"X": -178.39331,
|
|
||||||
"Y": 15.42688,
|
|
||||||
"Z": -244.64789
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
182
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002431,
|
|
||||||
"Position": {
|
|
||||||
"X": -178.39331,
|
|
||||||
"Y": 15.42688,
|
|
||||||
"Z": -244.64789
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000810
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007864,
|
|
||||||
"Position": {
|
|
||||||
"X": -167.40674,
|
|
||||||
"Y": 14.513778,
|
|
||||||
"Z": -251.3009
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007865,
|
|
||||||
"Position": {
|
|
||||||
"X": -223.10223,
|
|
||||||
"Y": 14.513845,
|
|
||||||
"Z": -365.25525
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002536,
|
|
||||||
"Position": {
|
|
||||||
"X": -211.16962,
|
|
||||||
"Y": 15.396301,
|
|
||||||
"Z": -345.41852
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
182
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 8,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002432,
|
|
||||||
"Position": {
|
|
||||||
"X": -211.16962,
|
|
||||||
"Y": 15.396301,
|
|
||||||
"Z": -345.41852
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000811
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 9,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007865,
|
|
||||||
"Position": {
|
|
||||||
"X": -223.10223,
|
|
||||||
"Y": 14.513845,
|
|
||||||
"Z": -365.25525
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 10,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007863,
|
|
||||||
"Position": {
|
|
||||||
"X": -131.70062,
|
|
||||||
"Y": 17.982016,
|
|
||||||
"Z": -278.8587
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,111 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "pot0to",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "YesNo",
|
|
||||||
"Prompt": "TEXT_JOBBLM450_01076_Q1_000_1",
|
|
||||||
"Yes": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002433,
|
|
||||||
"Position": {
|
|
||||||
"X": 374.28845,
|
|
||||||
"Y": 3.40271,
|
|
||||||
"Z": 161.73035
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007866,
|
|
||||||
"Position": {
|
|
||||||
"X": 376.29065,
|
|
||||||
"Y": 2.505473,
|
|
||||||
"Z": 159.52626
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007867,
|
|
||||||
"Position": {
|
|
||||||
"X": 282.39868,
|
|
||||||
"Y": 11.151184,
|
|
||||||
"Z": -6.729248
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,172 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "pot0to",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002434,
|
|
||||||
"Position": {
|
|
||||||
"X": -101.27417,
|
|
||||||
"Y": 28.213867,
|
|
||||||
"Z": 117.234985
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000812,
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002435,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.8158569,
|
|
||||||
"Y": -11.703674,
|
|
||||||
"Z": -37.79669
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000955,
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002436,
|
|
||||||
"Position": {
|
|
||||||
"X": 68.680786,
|
|
||||||
"Y": 55.832764,
|
|
||||||
"Z": -503.95975
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000956,
|
|
||||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002537,
|
|
||||||
"Position": {
|
|
||||||
"X": 220.87427,
|
|
||||||
"Y": 5.5999756,
|
|
||||||
"Z": -269.9779
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Fly": true,
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1935,
|
|
||||||
1936
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002437,
|
|
||||||
"Position": {
|
|
||||||
"X": 220.87427,
|
|
||||||
"Y": 5.5999756,
|
|
||||||
"Z": -269.9779
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000957
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,210 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "pot0to",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006752,
|
|
||||||
"Position": {
|
|
||||||
"X": 87.5105,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 113.725464
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Weavers' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130,
|
|
||||||
131
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -173.17781,
|
|
||||||
"Y": 18.28456,
|
|
||||||
"Z": -280.36884
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Unlocked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -180.27478,
|
|
||||||
"Y": 3.2999475,
|
|
||||||
"Z": -243.23695
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Unlocked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -261.198,
|
|
||||||
"Y": 18.43726,
|
|
||||||
"Z": -104.834755
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Locked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -428.2874,
|
|
||||||
"Y": 5.952176,
|
|
||||||
"Z": -21.0684
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -431.92166,
|
|
||||||
"Y": 6.5580425,
|
|
||||||
"Z": -17.561014
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"Mount": false
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007872,
|
|
||||||
"Position": {
|
|
||||||
"X": -468.925,
|
|
||||||
"Y": -3.1649342,
|
|
||||||
"Z": 59.464355
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007871,
|
|
||||||
"Position": {
|
|
||||||
"X": -464.46936,
|
|
||||||
"Y": -3.1649272,
|
|
||||||
"Z": 65.415405
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007873,
|
|
||||||
"Position": {
|
|
||||||
"X": -458.70148,
|
|
||||||
"Y": -3.164927,
|
|
||||||
"Z": 63.370728
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006753,
|
|
||||||
"Position": {
|
|
||||||
"X": 325.063,
|
|
||||||
"Y": 11.236564,
|
|
||||||
"Z": -6.2105103
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"NextQuestId": 1678
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": "liza",
|
"Author": "liza",
|
||||||
|
"Disabled": true,
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
@ -13,17 +14,7 @@
|
|||||||
"Z": 59.952637
|
"Z": 59.952637
|
||||||
},
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest"
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -49,126 +40,6 @@
|
|||||||
"NextQuestId": 351
|
"NextQuestId": 351
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -71.92632,
|
|
||||||
"Y": 9.839797,
|
|
||||||
"Z": 283.98495
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 351,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"$": "Slay star marmots as a thaumaturge",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 385,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"$": "Slay huge hornets as a thaumaturge",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Thaumaturges' Guild",
|
|
||||||
"[Ul'dah] Gate of Nald (Central Thanalan)"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
141
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 39.449,
|
|
||||||
"Y": 3.082914,
|
|
||||||
"Z": 272.46896
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 205,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"$": "Slay snapping shrews as a thaumaturge"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001708,
|
|
||||||
"Position": {
|
|
||||||
"X": -250.3548,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 80.88806
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 351
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -103,7 +103,7 @@
|
|||||||
"Y": 3.082914,
|
"Y": 3.082914,
|
||||||
"Z": 272.46896
|
"Z": 272.46896
|
||||||
},
|
},
|
||||||
"TerritoryId": 141,
|
"TerritoryId": 148,
|
||||||
"InteractionType": "Combat",
|
"InteractionType": "Combat",
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
"EnemySpawnType": "OverworldEnemies",
|
||||||
"ComplexCombatData": [
|
"ComplexCombatData": [
|
||||||
|
@ -93,16 +93,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 4,
|
"Sequence": 4,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -253.97243,
|
|
||||||
"Y": 33.2412,
|
|
||||||
"Z": 408.68488
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1002027,
|
"DataId": 1002027,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -111,7 +101,8 @@
|
|||||||
"Z": 407.27856
|
"Z": 407.27856
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,231 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": ["liza", "pot0to"],
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001708,
|
|
||||||
"Position": {
|
|
||||||
"X": -250.3548,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 80.88806
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001710,
|
|
||||||
"Position": {
|
|
||||||
"X": -240.2533,
|
|
||||||
"Y": 18.8,
|
|
||||||
"Z": 86.900024
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "None",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Thaumaturges' Guild",
|
|
||||||
"[Ul'dah] Gate of Nald (Central Thanalan)"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
141
|
|
||||||
],
|
|
||||||
"AetheryteUnlocked": "Central Thanalan - Black Brush Station"
|
|
||||||
},
|
|
||||||
"AethernetShortcutIf": {
|
|
||||||
"AetheryteUnlocked": "Central Thanalan - Black Brush Station"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -62.183617,
|
|
||||||
"Y": -3.6582246,
|
|
||||||
"Z": 145.88391
|
|
||||||
},
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Unlocked",
|
|
||||||
"AetheryteUnlocked": "Central Thanalan - Black Brush Station"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 149.07747,
|
|
||||||
"Y": -2,
|
|
||||||
"Z": -225.21188
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Fly": true,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 160,
|
|
||||||
"MinimumKillCount": 8,
|
|
||||||
"$": "Slay efts",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 8
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001710,
|
|
||||||
"Position": {
|
|
||||||
"X": -240.2533,
|
|
||||||
"Y": 18.8,
|
|
||||||
"Z": 86.900024
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_CLSTHM100_00348_Q_000_1",
|
|
||||||
"Answer": "TEXT_CLSTHM100_00348_A_000_3"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001511,
|
|
||||||
"Position": {
|
|
||||||
"X": -366.29285,
|
|
||||||
"Y": -34.989014,
|
|
||||||
"Z": 293.56824
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
166,
|
|
||||||
1238
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001498,
|
|
||||||
"Position": {
|
|
||||||
"X": -366.29285,
|
|
||||||
"Y": -34.989014,
|
|
||||||
"Z": 293.56824
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001710,
|
|
||||||
"Position": {
|
|
||||||
"X": -240.2533,
|
|
||||||
"Y": 18.8,
|
|
||||||
"Z": 86.900024
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001708,
|
|
||||||
"Position": {
|
|
||||||
"X": -250.3548,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 80.88806
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 350
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -33,9 +33,9 @@
|
|||||||
{
|
{
|
||||||
"DataId": 1001710,
|
"DataId": 1001710,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -240.2533,
|
"X": -240.2533,
|
||||||
"Y": 18.8,
|
"Y": 18.8,
|
||||||
"Z": 86.900024
|
"Z": 86.900024
|
||||||
},
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact"
|
||||||
@ -43,79 +43,49 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
"TerritoryId": 130,
|
"Position": {
|
||||||
"InteractionType": "None",
|
"X": 149.07747,
|
||||||
"AetheryteShortcut": "Ul'dah",
|
"Y": -2,
|
||||||
"AethernetShortcut": [
|
"Z": -225.21188
|
||||||
"[Ul'dah] Thaumaturges' Guild",
|
|
||||||
"[Ul'dah] Gate of Nald (Central Thanalan)"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
141
|
|
||||||
],
|
|
||||||
"AetheryteUnlocked": "Central Thanalan - Black Brush Station"
|
|
||||||
},
|
},
|
||||||
"AethernetShortcutIf": {
|
"TerritoryId": 141,
|
||||||
"AetheryteUnlocked": "Central Thanalan - Black Brush Station"
|
"AetheryteShortcut": "Ul'dah",
|
||||||
}
|
"AethernetShortcut": [
|
||||||
|
"[Ul'dah] Thaumaturges' Guild",
|
||||||
|
"[Ul'dah] Gate of Nald (Central Thanalan)"
|
||||||
|
],
|
||||||
|
"SkipConditions": {
|
||||||
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true,
|
||||||
|
"InTerritory": [
|
||||||
|
141
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"InteractionType": "Combat",
|
||||||
|
"EnemySpawnType": "OverworldEnemies",
|
||||||
|
"ComplexCombatData": [
|
||||||
|
{
|
||||||
|
"DataId": 160,
|
||||||
|
"MinimumKillCount": 8,
|
||||||
|
"$": "Slay efts",
|
||||||
|
"CompletionQuestVariablesFlags": [
|
||||||
|
{
|
||||||
|
"Low": 8
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
]
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -62.183617,
|
|
||||||
"Y": -3.6582246,
|
|
||||||
"Z": 145.88391
|
|
||||||
},
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Unlocked",
|
|
||||||
"AetheryteUnlocked": "Central Thanalan - Black Brush Station"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 149.07747,
|
|
||||||
"Y": -2,
|
|
||||||
"Z": -225.21188
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Fly": true,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 160,
|
|
||||||
"MinimumKillCount": 8,
|
|
||||||
"$": "Slay efts",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 8
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Sequence": 3,
|
"Sequence": 3,
|
||||||
@ -123,9 +93,9 @@
|
|||||||
{
|
{
|
||||||
"DataId": 1001710,
|
"DataId": 1001710,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -240.2533,
|
"X": -240.2533,
|
||||||
"Y": 18.8,
|
"Y": 18.8,
|
||||||
"Z": 86.900024
|
"Z": 86.900024
|
||||||
},
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact",
|
||||||
@ -155,16 +125,15 @@
|
|||||||
{
|
{
|
||||||
"DataId": 2001512,
|
"DataId": 2001512,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -366.29285,
|
"X": -366.29285,
|
||||||
"Y": -34.989014,
|
"Y": -34.989014,
|
||||||
"Z": 293.56824
|
"Z": 293.56824
|
||||||
},
|
},
|
||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "Combat",
|
"InteractionType": "Combat",
|
||||||
"EnemySpawnType": "AfterInteraction",
|
"EnemySpawnType": "AfterInteraction",
|
||||||
"KillEnemyDataIds": [
|
"KillEnemyDataIds": [
|
||||||
166,
|
166
|
||||||
1238
|
|
||||||
],
|
],
|
||||||
"Fly": true,
|
"Fly": true,
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
@ -182,9 +151,9 @@
|
|||||||
{
|
{
|
||||||
"DataId": 2001499,
|
"DataId": 2001499,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -366.29285,
|
"X": -366.29285,
|
||||||
"Y": -34.989014,
|
"Y": -34.989014,
|
||||||
"Z": 293.56824
|
"Z": 293.56824
|
||||||
},
|
},
|
||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact"
|
||||||
@ -197,9 +166,9 @@
|
|||||||
{
|
{
|
||||||
"DataId": 1001710,
|
"DataId": 1001710,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -240.2533,
|
"X": -240.2533,
|
||||||
"Y": 18.8,
|
"Y": 18.8,
|
||||||
"Z": 86.900024
|
"Z": 86.900024
|
||||||
},
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "CompleteQuest",
|
||||||
|
@ -121,11 +121,11 @@
|
|||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
"DataId": 1001711,
|
"DataId": 1001710,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -241.62665,
|
"X": -240.2533,
|
||||||
"Y": 18.8,
|
"Y": 18.8,
|
||||||
"Z": 83.32947
|
"Z": 86.900024
|
||||||
},
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "CompleteQuest",
|
||||||
|
@ -34,12 +34,19 @@
|
|||||||
"Sequence": 1,
|
"Sequence": 1,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
"TerritoryId": 145,
|
"DataId": 1004094,
|
||||||
"InteractionType": "UseItem",
|
"Position": {
|
||||||
"ItemId": 30362,
|
"X": -413.47375,
|
||||||
"TargetTerritoryId": 140,
|
"Y": 23.113977,
|
||||||
|
"Z": -383.71863
|
||||||
|
},
|
||||||
|
"TerritoryId": 140,
|
||||||
|
"InteractionType": "Interact",
|
||||||
|
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||||
|
"Fly": true,
|
||||||
"SkipConditions": {
|
"SkipConditions": {
|
||||||
"StepIf": {
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true,
|
||||||
"InTerritory": [
|
"InTerritory": [
|
||||||
140
|
140
|
||||||
]
|
]
|
||||||
@ -65,16 +72,6 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact"
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1004094,
|
|
||||||
"Position": {
|
|
||||||
"X": -413.47375,
|
|
||||||
"Y": 23.113977,
|
|
||||||
"Z": -383.71863
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -36,27 +36,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 1,
|
"Sequence": 1,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 570.48596,
|
|
||||||
"Y": 96.46625,
|
|
||||||
"Z": -526.59546
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"TargetTerritoryId": 137,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"Fly": true,
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"AetheryteUnlocked": "Eastern La Noscea - Wineport"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 2002366,
|
"DataId": 2002366,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -30,15 +30,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -168.20791,
|
|
||||||
"Y": 4.550005,
|
|
||||||
"Z": 167.85986
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -167.60791,
|
"X": -167.60791,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": ["Cacahuetes", "Friendly"],
|
"Author": "Cacahuetes",
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
@ -13,9 +13,9 @@
|
|||||||
"StepIf": {
|
"StepIf": {
|
||||||
"Item": {
|
"Item": {
|
||||||
"NotInInventory": true
|
"NotInInventory": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
@ -36,33 +36,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"DataId": 1001016,
|
|
||||||
"Position": {
|
|
||||||
"X": -42.679565,
|
|
||||||
"Y": 39.999947,
|
|
||||||
"Z": 119.920654
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "PurchaseItem",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Fishermens' Guild",
|
|
||||||
"[Limsa Lominsa] The Aftcastle"
|
|
||||||
],
|
|
||||||
"PurchaseMenu": {
|
|
||||||
"ExcelSheet": "GilShop",
|
|
||||||
"Key": 262186
|
|
||||||
},
|
|
||||||
"ItemId": 4870,
|
|
||||||
"ItemCount": 5,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Item": {
|
|
||||||
"NotInInventory": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1000857,
|
"DataId": 1000857,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -77,7 +50,8 @@
|
|||||||
"[Limsa Lominsa] Fishermens' Guild"
|
"[Limsa Lominsa] Fishermens' Guild"
|
||||||
],
|
],
|
||||||
"NextQuestId": 3843,
|
"NextQuestId": 3843,
|
||||||
"Comment": "Complete quest"
|
"Disabled": true,
|
||||||
|
"Comment": "Catch/turn in fish manually"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,25 +1,11 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||||
"Author": ["liza", "plogon_enjoyer"],
|
"Author": "liza",
|
||||||
|
"Disabled": true,
|
||||||
"QuestSequence": [
|
"QuestSequence": [
|
||||||
{
|
{
|
||||||
"Sequence": 0,
|
"Sequence": 0,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -86.589775,
|
|
||||||
"Y": 2.099846,
|
|
||||||
"Z": -51.574
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1001286,
|
"DataId": 1001286,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -28,165 +14,13 @@
|
|||||||
"Z": -51.163513
|
"Z": -51.163513
|
||||||
},
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest",
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003817,
|
|
||||||
"Position": {
|
|
||||||
"X": -74.57086,
|
|
||||||
"Y": 1.9999951,
|
|
||||||
"Z": -42.404846
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "YesNo",
|
|
||||||
"Prompt": "TEXT_CLSPGL020_00533_Q1_000_1",
|
|
||||||
"Yes": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -126.59337,
|
|
||||||
"Y": 11.159969,
|
|
||||||
"Z": 276.25775
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 351,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"MinimumKillCount": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"$": "0 0 0 0 0 0 -> 19 0 0 0 0 0",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Gate of Nald (Central Thanalan)"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -126.59337,
|
|
||||||
"Y": 11.159969,
|
|
||||||
"Z": 276.25775
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 385,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"MinimumKillCount": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"$": "19 0 0 0 0 0 -> 35 48 0 0 0 0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 32.007893,
|
|
||||||
"Y": 5.8527403,
|
|
||||||
"Z": 299.76016
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 205,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"MinimumKillCount": 3
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003817,
|
|
||||||
"Position": {
|
|
||||||
"X": -74.57086,
|
|
||||||
"Y": 1.9999951,
|
|
||||||
"Z": -42.404846
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
"AetheryteShortcut": "Ul'dah",
|
||||||
"InteractionType": "CompleteQuest",
|
"SkipConditions": {
|
||||||
"NextQuestId": 554
|
"AetheryteShortcutIf": {
|
||||||
|
"InSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,190 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": ["liza", "plogon_enjoyer"],
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003817,
|
|
||||||
"Position": {
|
|
||||||
"X": -74.57086,
|
|
||||||
"Y": 1.9999951,
|
|
||||||
"Z": -42.404846
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001718,
|
|
||||||
"Position": {
|
|
||||||
"X": -108.2017,
|
|
||||||
"Y": 4.989685,
|
|
||||||
"Z": -105.7603
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Bootshine",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001719,
|
|
||||||
"Position": {
|
|
||||||
"X": -105.9365,
|
|
||||||
"Y": 4.9655,
|
|
||||||
"Z": -107.8618
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Bootshine",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001720,
|
|
||||||
"Position": {
|
|
||||||
"X": -77.89734,
|
|
||||||
"Y": 5.0201416,
|
|
||||||
"Z": -129.19812
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Bootshine",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001721,
|
|
||||||
"Position": {
|
|
||||||
"X": -74.906555,
|
|
||||||
"Y": 4.8981323,
|
|
||||||
"Z": -130.99878
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Bootshine",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001722,
|
|
||||||
"Position": {
|
|
||||||
"X": -71.732666,
|
|
||||||
"Y": 5.0201416,
|
|
||||||
"Z": -132.64673
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Bootshine",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003817,
|
|
||||||
"Position": {
|
|
||||||
"X": -74.57086,
|
|
||||||
"Y": 1.9999951,
|
|
||||||
"Z": -42.404846
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -210.32118,
|
|
||||||
"Y": 21.582167,
|
|
||||||
"Z": -94.337494
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
771
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
|
||||||
"CombatDelaySecondsAtStart": 0,
|
|
||||||
"$": "Will stop once 3 Qiqirn Shellsweppers get hit by Snap Punch since it will move on to the next sequence"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -118.55462,
|
|
||||||
"Y": 8.216448,
|
|
||||||
"Z": -82.81951
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003817,
|
|
||||||
"Position": {
|
|
||||||
"X": -74.57086,
|
|
||||||
"Y": 1.9999951,
|
|
||||||
"Z": -42.404846
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 558
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,114 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "EquipItem",
|
|
||||||
"ItemId": 4542,
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
131
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -259.72705,
|
|
||||||
"Y": 67.23717,
|
|
||||||
"Z": -293.5509
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Locked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -355.4327,
|
|
||||||
"Y": 63.813503,
|
|
||||||
"Z": -382.56308
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Locked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002346,
|
|
||||||
"Position": {
|
|
||||||
"X": -312.27594,
|
|
||||||
"Y": 32.547485,
|
|
||||||
"Z": -444.9989
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 6,
|
|
||||||
"NameId": 2020
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1057
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,75 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
131
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002347,
|
|
||||||
"Position": {
|
|
||||||
"X": 175.82971,
|
|
||||||
"Y": -10.452454,
|
|
||||||
"Z": 84.91638
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
383
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1058
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,259 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
131
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -97.65164,
|
|
||||||
"Y": 14.866778,
|
|
||||||
"Z": -189.99821
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1923,
|
|
||||||
1924
|
|
||||||
],
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
},
|
|
||||||
"StepIf": {
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002349,
|
|
||||||
"Position": {
|
|
||||||
"X": -97.39838,
|
|
||||||
"Y": 14.846985,
|
|
||||||
"Z": -188.2201
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -97.35628,
|
|
||||||
"Y": -14.397484,
|
|
||||||
"Z": -176.70825
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1923,
|
|
||||||
1924
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002348,
|
|
||||||
"Position": {
|
|
||||||
"X": -99.4126,
|
|
||||||
"Y": -14.4198,
|
|
||||||
"Z": -179.46143
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 137.78966,
|
|
||||||
"Y": 10.371678,
|
|
||||||
"Z": -427.8172
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1923,
|
|
||||||
1924
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 137.78966,
|
|
||||||
"Y": 10.371678,
|
|
||||||
"Z": -427.8172
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002351,
|
|
||||||
"Position": {
|
|
||||||
"X": 137.74304,
|
|
||||||
"Y": 10.60498,
|
|
||||||
"Z": -420.5539
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 137.70113,
|
|
||||||
"Y": 10.371678,
|
|
||||||
"Z": -427.45047
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 116.208305,
|
|
||||||
"Y": 11.091853,
|
|
||||||
"Z": -475.35126
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1923,
|
|
||||||
1924
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002350,
|
|
||||||
"Position": {
|
|
||||||
"X": 115.983765,
|
|
||||||
"Y": 11.184814,
|
|
||||||
"Z": -482.7802
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1059
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,72 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
131
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002356,
|
|
||||||
"Position": {
|
|
||||||
"X": -407.4312,
|
|
||||||
"Y": 7.156433,
|
|
||||||
"Z": 525.6886
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1060
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
131
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007829,
|
|
||||||
"Position": {
|
|
||||||
"X": 26.932129,
|
|
||||||
"Y": 13,
|
|
||||||
"Z": 44.418945
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -775.4471,
|
|
||||||
"Y": 224.95006,
|
|
||||||
"Z": 29.04266
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -775.4471,
|
|
||||||
"Y": 224.95006,
|
|
||||||
"Z": 29.04266
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"Mount": false
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006747,
|
|
||||||
"Position": {
|
|
||||||
"X": -20.828613,
|
|
||||||
"Y": 29.999964,
|
|
||||||
"Z": -2.4262085
|
|
||||||
},
|
|
||||||
"TerritoryId": 131,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] The Chamber of Rule"
|
|
||||||
],
|
|
||||||
"NextQuestId": 2032
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -119,8 +119,7 @@
|
|||||||
"Z": 61.142822
|
"Z": 61.142822
|
||||||
},
|
},
|
||||||
"TerritoryId": 139,
|
"TerritoryId": 139,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "CompleteQuest"
|
||||||
"NextQuestId": 1671
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,453 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "pot0to",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002499,
|
|
||||||
"Position": {
|
|
||||||
"X": -319.17297,
|
|
||||||
"Y": -36.636963,
|
|
||||||
"Z": -278.73657
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"Fly": true,
|
|
||||||
"InteractionType": "WaitForManualProgress",
|
|
||||||
"Comment": "Craft/purchase off marketboard an erudite's picatrix of healing and meld 2 grade 3 quicktongue materia to it."
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"Fly": true,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 74,
|
|
||||||
"Comment": "Queue for A Relic Reborn: The Chimera"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 437.6279,
|
|
||||||
"Y": -3.1627378,
|
|
||||||
"Z": -67.35514
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001304,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.589355,
|
|
||||||
"Y": 29,
|
|
||||||
"Z": -825.37573
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"Fly": true,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 14,
|
|
||||||
"Comment": "Queue for Amdapor Keep"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 8,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001304,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.589355,
|
|
||||||
"Y": 29,
|
|
||||||
"Z": -825.37573
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 9,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 437.6279,
|
|
||||||
"Y": -3.1627378,
|
|
||||||
"Z": -67.35514
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 10,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"InteractionType": "EquipItem",
|
|
||||||
"ItemId": 2192,
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 768,
|
|
||||||
"Position": {
|
|
||||||
"X": -317.9305,
|
|
||||||
"Y": -39.35494,
|
|
||||||
"Z": -298.3956
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
766,
|
|
||||||
767,
|
|
||||||
768
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 8
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"High": 8,
|
|
||||||
"Low": 8
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 11,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 437.6279,
|
|
||||||
"Y": -3.1627378,
|
|
||||||
"Z": -67.35514
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 12,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 75,
|
|
||||||
"Comment": "Queue for A Relic Reborn: The Hydra"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 13,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 437.6279,
|
|
||||||
"Y": -3.1627378,
|
|
||||||
"Z": -67.35514
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 14,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "EquipRecommended"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 15,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 59
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 16,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 61
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 17,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 60
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 18,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1008119,
|
|
||||||
"Position": {
|
|
||||||
"X": 62.333008,
|
|
||||||
"Y": 31.28805,
|
|
||||||
"Z": -739.98627
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "PurchaseItem",
|
|
||||||
"ItemId": 6267,
|
|
||||||
"ItemCount": 1,
|
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Item": {
|
|
||||||
"NotInInventory": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 437.6279,
|
|
||||||
"Y": -3.1627378,
|
|
||||||
"Z": -67.35514
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003075,
|
|
||||||
"Position": {
|
|
||||||
"X": 440.7262,
|
|
||||||
"Y": -0.9374562,
|
|
||||||
"Z": -62.21112
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user