Compare commits
No commits in common. "master" and "master" have entirely different histories.
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>
|
<PropertyGroup>
|
||||||
<Version>4.3</Version>
|
<Version>3.11</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</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,4 +1,4 @@
|
|||||||
<Project Sdk="Dalamud.NET.Sdk/11.0.0">
|
<Project Sdk="Dalamud.NET.Sdk/10.0.0">
|
||||||
<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" />
|
||||||
|
@ -59,7 +59,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
|||||||
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
|
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
|
||||||
{ IsOpen = true };
|
{ IsOpen = true };
|
||||||
_windowSystem.AddWindow(_editorWindow);
|
_windowSystem.AddWindow(_editorWindow);
|
||||||
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.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);
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
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;
|
||||||
@ -10,7 +11,7 @@ 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;
|
||||||
@ -204,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;
|
||||||
@ -233,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": {
|
||||||
|
2
LLib
2
LLib
@ -1 +1 @@
|
|||||||
Subproject commit e4bbc05ede6f6f01e7028b24614ed8cb333e909c
|
Subproject commit 6dfc18ee6a187138036ee2d51ba2257741c1e568
|
@ -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(),
|
||||||
@ -123,12 +120,6 @@ internal static class QuestStepExtensions
|
|||||||
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),
|
||||||
|
@ -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,37 +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": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005551,
|
|
||||||
"Position": {
|
|
||||||
"X": 98.924194,
|
|
||||||
"Y": 15.29447,
|
|
||||||
"Z": -349.4469
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,37 +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": 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,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
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -36,7 +36,7 @@
|
|||||||
"Yes": true
|
"Yes": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"NextQuestId": 351
|
"NextQuestId": 553
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -36,8 +36,7 @@
|
|||||||
"Prompt": "TEXT_CLSTHM020_00345_Q1_001_1",
|
"Prompt": "TEXT_CLSTHM020_00345_Q1_001_1",
|
||||||
"Yes": true
|
"Yes": true
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"NextQuestId": 351
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,151 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "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": [
|
|
||||||
{
|
|
||||||
"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
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,140 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "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": 1001709,
|
|
||||||
"Position": {
|
|
||||||
"X": -240.4975,
|
|
||||||
"Y": 18.7,
|
|
||||||
"Z": 85.58777
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001468,
|
|
||||||
"Position": {
|
|
||||||
"X": -87.38843,
|
|
||||||
"Y": 50.614136,
|
|
||||||
"Z": 315.6023
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000414,
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Thaumaturges' Guild",
|
|
||||||
"[Ul'dah] Gate of the Sultana (Western Thanalan)"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
140
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001469,
|
|
||||||
"Position": {
|
|
||||||
"X": -74.96759,
|
|
||||||
"Y": 53.238647,
|
|
||||||
"Z": 336.78186
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
12
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -253.97243,
|
|
||||||
"Y": 33.2412,
|
|
||||||
"Z": 408.68488
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002027,
|
|
||||||
"Position": {
|
|
||||||
"X": -255.23767,
|
|
||||||
"Y": 33.238777,
|
|
||||||
"Z": 407.27856
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001709,
|
|
||||||
"Position": {
|
|
||||||
"X": -240.4975,
|
|
||||||
"Y": 18.7,
|
|
||||||
"Z": 85.58777
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 349
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,215 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "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_CLSTHM101_00349_Q_000_1",
|
|
||||||
"Answer": "TEXT_CLSTHM101_00349_A_000_3"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001512,
|
|
||||||
"Position": {
|
|
||||||
"X": -366.29285,
|
|
||||||
"Y": -34.989014,
|
|
||||||
"Z": 293.56824
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
166
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001499,
|
|
||||||
"Position": {
|
|
||||||
"X": -366.29285,
|
|
||||||
"Y": -34.989014,
|
|
||||||
"Z": 293.56824
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001710,
|
|
||||||
"Position": {
|
|
||||||
"X": -240.2533,
|
|
||||||
"Y": 18.8,
|
|
||||||
"Z": 86.900024
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 350
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,149 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "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": 1001711,
|
|
||||||
"Position": {
|
|
||||||
"X": -241.62665,
|
|
||||||
"Y": 18.8,
|
|
||||||
"Z": 83.32947
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002301,
|
|
||||||
"Position": {
|
|
||||||
"X": -178.2102,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 61.41748
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "cry"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002300,
|
|
||||||
"Position": {
|
|
||||||
"X": -176.9284,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 62.363525
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "cry"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002302,
|
|
||||||
"Position": {
|
|
||||||
"X": -176.71478,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 64.34729
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "cry"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001711,
|
|
||||||
"Position": {
|
|
||||||
"X": -241.62665,
|
|
||||||
"Y": 18.8,
|
|
||||||
"Z": 83.32947
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001470,
|
|
||||||
"Position": {
|
|
||||||
"X": -24.887512,
|
|
||||||
"Y": -25.345276,
|
|
||||||
"Z": 321.94995
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001711,
|
|
||||||
"Position": {
|
|
||||||
"X": -241.62665,
|
|
||||||
"Y": 18.8,
|
|
||||||
"Z": 83.32947
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_CLSTHM150_00350_Q1_000_1",
|
|
||||||
"Answer": "TEXT_CLSTHM150_00350_A1_000_1"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"NextQuestId": 352
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -209,8 +209,7 @@
|
|||||||
"Z": 80.88806
|
"Z": 80.88806
|
||||||
},
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "CompleteQuest"
|
||||||
"NextQuestId": 352
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,199 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "pot0to",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001709,
|
|
||||||
"Position": {
|
|
||||||
"X": -240.4975,
|
|
||||||
"Y": 18.7,
|
|
||||||
"Z": 85.58777
|
|
||||||
},
|
|
||||||
"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": 1001708,
|
|
||||||
"Position": {
|
|
||||||
"X": -250.3548,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 80.88806
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002309,
|
|
||||||
"Position": {
|
|
||||||
"X": -374.28857,
|
|
||||||
"Y": -57.079987,
|
|
||||||
"Z": 144.12134
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
145
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002308,
|
|
||||||
"Position": {
|
|
||||||
"X": -386.7094,
|
|
||||||
"Y": -59.300003,
|
|
||||||
"Z": 166.39954
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002307,
|
|
||||||
"Position": {
|
|
||||||
"X": -396.65833,
|
|
||||||
"Y": -48.15,
|
|
||||||
"Z": 99.68713
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001708,
|
|
||||||
"Position": {
|
|
||||||
"X": -250.3548,
|
|
||||||
"Y": 18,
|
|
||||||
"Z": 80.88806
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
|
||||||
"[Ul'dah] Thaumaturges' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001709,
|
|
||||||
"Position": {
|
|
||||||
"X": -240.4975,
|
|
||||||
"Y": 18.7,
|
|
||||||
"Z": 85.58777
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 222.64497,
|
|
||||||
"Y": 5.099169,
|
|
||||||
"Z": -265.77835
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"Fly": true,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
145
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002310,
|
|
||||||
"Position": {
|
|
||||||
"X": 184.89343,
|
|
||||||
"Y": 3.1809213,
|
|
||||||
"Z": -338.64355
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "SinglePlayerDuty"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"NextQuestId": 353
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,183 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "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,
|
|
||||||
"InTerritory": [
|
|
||||||
130
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 30362,
|
|
||||||
"TargetTerritoryId": 140,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
140
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1004070,
|
|
||||||
"Position": {
|
|
||||||
"X": -455.86328,
|
|
||||||
"Y": 23.11398,
|
|
||||||
"Z": -326.92456
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1004096,
|
|
||||||
"Position": {
|
|
||||||
"X": -444.75476,
|
|
||||||
"Y": 25,
|
|
||||||
"Z": -324.26947
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1004094,
|
|
||||||
"Position": {
|
|
||||||
"X": -413.47375,
|
|
||||||
"Y": 23.113977,
|
|
||||||
"Z": -383.71863
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002316,
|
|
||||||
"Position": {
|
|
||||||
"X": -436.72852,
|
|
||||||
"Y": 23.774809,
|
|
||||||
"Z": -350.8202
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002315,
|
|
||||||
"Position": {
|
|
||||||
"X": -392.32477,
|
|
||||||
"Y": 23.557693,
|
|
||||||
"Z": -546.9902
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Fly": true,
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1239
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002315,
|
|
||||||
"Position": {
|
|
||||||
"X": -392.32477,
|
|
||||||
"Y": 23.557693,
|
|
||||||
"Z": -546.9902
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002317,
|
|
||||||
"Position": {
|
|
||||||
"X": -269.85577,
|
|
||||||
"Y": 15.346575,
|
|
||||||
"Z": -718.1354
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"Fly": true,
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_CLSTHM300_00353_Q_000_1",
|
|
||||||
"Answer": "TEXT_CLSTHM300_00353_A_000_2"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
130
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -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,105 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006786,
|
|
||||||
"Position": {
|
|
||||||
"X": -347.15802,
|
|
||||||
"Y": 0.9522269,
|
|
||||||
"Z": 741.3595
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006786,
|
|
||||||
"Position": {
|
|
||||||
"X": -347.15802,
|
|
||||||
"Y": 0.9522269,
|
|
||||||
"Z": 741.3595
|
|
||||||
},
|
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1092
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,93 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "EquipItem",
|
|
||||||
"ItemId": 4549,
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
133
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006787,
|
|
||||||
"Position": {
|
|
||||||
"X": -268.78766,
|
|
||||||
"Y": -78.85388,
|
|
||||||
"Z": 444.8767
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006787,
|
|
||||||
"Position": {
|
|
||||||
"X": -268.78766,
|
|
||||||
"Y": -78.85388,
|
|
||||||
"Z": 444.8767
|
|
||||||
},
|
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1093
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,80 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
133
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006788,
|
|
||||||
"Position": {
|
|
||||||
"X": -105.79089,
|
|
||||||
"Y": 27.83778,
|
|
||||||
"Z": -374.3191
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -152.77162,
|
|
||||||
"Y": 27.317062,
|
|
||||||
"Z": -400.4738
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1094
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,206 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
133
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006725,
|
|
||||||
"Position": {
|
|
||||||
"X": 446.82983,
|
|
||||||
"Y": -5.306207,
|
|
||||||
"Z": -465.72064
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006789,
|
|
||||||
"Position": {
|
|
||||||
"X": 503.2882,
|
|
||||||
"Y": -12.351167,
|
|
||||||
"Z": -343.19073
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1948
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006789,
|
|
||||||
"Position": {
|
|
||||||
"X": 503.2882,
|
|
||||||
"Y": -12.351167,
|
|
||||||
"Z": -343.19073
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006790,
|
|
||||||
"Position": {
|
|
||||||
"X": 496.45215,
|
|
||||||
"Y": -2.546432,
|
|
||||||
"Z": -472.03784
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1948
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006790,
|
|
||||||
"Position": {
|
|
||||||
"X": 496.45215,
|
|
||||||
"Y": -2.546432,
|
|
||||||
"Z": -472.03784
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 372.27008,
|
|
||||||
"Y": -4.9949923,
|
|
||||||
"Z": -482.91302
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006791,
|
|
||||||
"Position": {
|
|
||||||
"X": 373.52563,
|
|
||||||
"Y": -5.242633,
|
|
||||||
"Z": -484.70288
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1948
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006791,
|
|
||||||
"Position": {
|
|
||||||
"X": 373.52563,
|
|
||||||
"Y": -5.242633,
|
|
||||||
"Z": -484.70288
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 8,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006725,
|
|
||||||
"Position": {
|
|
||||||
"X": 446.82983,
|
|
||||||
"Y": -5.306207,
|
|
||||||
"Z": -465.72064
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "EquipRecommended"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1095
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,87 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
133
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006792,
|
|
||||||
"Position": {
|
|
||||||
"X": -378.10333,
|
|
||||||
"Y": 51.61585,
|
|
||||||
"Z": -290.11975
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006792,
|
|
||||||
"Position": {
|
|
||||||
"X": -378.10333,
|
|
||||||
"Y": 51.61585,
|
|
||||||
"Z": -290.11975
|
|
||||||
},
|
|
||||||
"TerritoryId": 180,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1096
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,135 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
133
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 494.60034,
|
|
||||||
"Y": -2.1295002,
|
|
||||||
"Z": -484.951
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006793,
|
|
||||||
"Position": {
|
|
||||||
"X": 493.09534,
|
|
||||||
"Y": -2.349111,
|
|
||||||
"Z": -484.61133
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006794,
|
|
||||||
"Position": {
|
|
||||||
"X": 493.09534,
|
|
||||||
"Y": -2.4306269,
|
|
||||||
"Z": -483.6042
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 500.36328,
|
|
||||||
"Y": -3.814063,
|
|
||||||
"Z": -770.9911
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 504.98605,
|
|
||||||
"Y": -2.5969198,
|
|
||||||
"Z": -780.6112
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"Mount": false
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006795,
|
|
||||||
"Position": {
|
|
||||||
"X": 475.0896,
|
|
||||||
"Y": 5.8291526,
|
|
||||||
"Z": -842.40485
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006756,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.891846,
|
|
||||||
"Y": 10.17425,
|
|
||||||
"Z": -246.87573
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,69 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005199,
|
|
||||||
"Position": {
|
|
||||||
"X": -348.3177,
|
|
||||||
"Y": -2.3744698,
|
|
||||||
"Z": 11.917236
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_CLSACN149_01103_Q1_000_000",
|
|
||||||
"Answer": "TEXT_CLSACN149_01103_A1_000_000"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 458
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -21,7 +21,10 @@
|
|||||||
],
|
],
|
||||||
"SkipConditions": {
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIf": {
|
"AetheryteShortcutIf": {
|
||||||
"InSameTerritory": true
|
"InSameTerritory": true,
|
||||||
|
"InTerritory": [
|
||||||
|
129
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DialogueChoices": [
|
"DialogueChoices": [
|
||||||
|
@ -13,17 +13,7 @@
|
|||||||
"Z": 1.3884888
|
"Z": 1.3884888
|
||||||
},
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest"
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,150 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -1.5568014,
|
|
||||||
"Y": 66.12121,
|
|
||||||
"Z": 102.35001
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 347,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 49,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 157.63565,
|
|
||||||
"Y": 38.01287,
|
|
||||||
"Z": 48.92973
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 324,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 455
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,199 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 368.87418,
|
|
||||||
"Y": 61.448803,
|
|
||||||
"Z": -69.13581
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 339,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 381.1583,
|
|
||||||
"Y": 68.00773,
|
|
||||||
"Z": -114.15414
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 118,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002266,
|
|
||||||
"Position": {
|
|
||||||
"X": -0.13739014,
|
|
||||||
"Y": 26.077637,
|
|
||||||
"Z": 196.52087
|
|
||||||
},
|
|
||||||
"TerritoryId": 134,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
39
|
|
||||||
],
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild",
|
|
||||||
"[Limsa Lominsa] Zephyr Gate (Middle La Noscea)"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002476,
|
|
||||||
"Position": {
|
|
||||||
"X": -0.10687256,
|
|
||||||
"Y": 25.955566,
|
|
||||||
"Z": 196.55139
|
|
||||||
},
|
|
||||||
"TerritoryId": 134,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_CLSACN050_00455_Q1_000_000",
|
|
||||||
"Answer": "TEXT_CLSACN050_00455_A1_000_002"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 457
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,179 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 667.4784,
|
|
||||||
"Y": 15.36824,
|
|
||||||
"Z": 443.4379
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
22
|
|
||||||
],
|
|
||||||
"AetheryteShortcut": "Western La Noscea - Swiftperch",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 686.6034,
|
|
||||||
"Y": 23.682272,
|
|
||||||
"Z": 422.78772
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
138
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
{
|
|
||||||
"High": 3
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005199,
|
|
||||||
"Position": {
|
|
||||||
"X": -348.3177,
|
|
||||||
"Y": -2.3744698,
|
|
||||||
"Z": 11.917236
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005200,
|
|
||||||
"Position": {
|
|
||||||
"X": -106.79791,
|
|
||||||
"Y": 45.688404,
|
|
||||||
"Z": -252.33844
|
|
||||||
},
|
|
||||||
"TerritoryId": 134,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "Middle La Noscea - Summerford Farms",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005201,
|
|
||||||
"Position": {
|
|
||||||
"X": -98.49707,
|
|
||||||
"Y": 47.27536,
|
|
||||||
"Z": -262.31793
|
|
||||||
},
|
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 134,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_CLSACN101_00457_Q1_000_000",
|
|
||||||
"Answer": "TEXT_CLSACN101_00457_A1_000_001"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1103
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,119 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005208,
|
|
||||||
"Position": {
|
|
||||||
"X": 316.02954,
|
|
||||||
"Y": -24.136772,
|
|
||||||
"Z": 211.20007
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005211,
|
|
||||||
"Position": {
|
|
||||||
"X": 204.27246,
|
|
||||||
"Y": -36.402367,
|
|
||||||
"Z": 306.17224
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
317,
|
|
||||||
318
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005211,
|
|
||||||
"Position": {
|
|
||||||
"X": 204.27246,
|
|
||||||
"Y": -36.402367,
|
|
||||||
"Z": 306.17224
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002009,
|
|
||||||
"Position": {
|
|
||||||
"X": 173.81543,
|
|
||||||
"Y": -41.36731,
|
|
||||||
"Z": 280.7201
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "SinglePlayerDuty"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 459
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,171 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003505,
|
|
||||||
"Position": {
|
|
||||||
"X": -186.20587,
|
|
||||||
"Y": 16,
|
|
||||||
"Z": 56.931396
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild",
|
|
||||||
"[Limsa Lominsa] Hawkers' Alley"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000938,
|
|
||||||
"Position": {
|
|
||||||
"X": -4.654114,
|
|
||||||
"Y": 44.999847,
|
|
||||||
"Z": -241.84027
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Hawkers' Alley",
|
|
||||||
"[Limsa Lominsa] Marauders' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Marauders' Guild",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 177.58797,
|
|
||||||
"Y": -41.12709,
|
|
||||||
"Z": 260.26315
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005215,
|
|
||||||
"Position": {
|
|
||||||
"X": 178.66785,
|
|
||||||
"Y": -41.140213,
|
|
||||||
"Z": 261.61597
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005217,
|
|
||||||
"Position": {
|
|
||||||
"X": 103.74609,
|
|
||||||
"Y": 68.15523,
|
|
||||||
"Z": 329.45752
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002010,
|
|
||||||
"Position": {
|
|
||||||
"X": 108.384766,
|
|
||||||
"Y": 68.13147,
|
|
||||||
"Z": 351.61353
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "SinglePlayerDuty"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 460
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,438 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 410.82263,
|
|
||||||
"Y": 31.185892,
|
|
||||||
"Z": -11.729958
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005227,
|
|
||||||
"Position": {
|
|
||||||
"X": -311.32983,
|
|
||||||
"Y": -1.5234554,
|
|
||||||
"Z": 127.336426
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -394.91058,
|
|
||||||
"Y": -3.4000032,
|
|
||||||
"Z": 148.78712
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Unlocked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -449.98322,
|
|
||||||
"Y": 3.358525,
|
|
||||||
"Z": 88.437485
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006195,
|
|
||||||
"Position": {
|
|
||||||
"X": -453.36084,
|
|
||||||
"Y": 4.574484,
|
|
||||||
"Z": 71.54956
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -449.98322,
|
|
||||||
"Y": 3.358525,
|
|
||||||
"Z": 88.437485
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001892,
|
|
||||||
"Position": {
|
|
||||||
"X": -457.7249,
|
|
||||||
"Y": 29.19043,
|
|
||||||
"Z": 58.335205
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001894,
|
|
||||||
"Position": {
|
|
||||||
"X": -393.4234,
|
|
||||||
"Y": 42.557373,
|
|
||||||
"Z": -2.975586
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -373.06784,
|
|
||||||
"Y": 38.31673,
|
|
||||||
"Z": 36.456448
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -367.3377,
|
|
||||||
"Y": 27.109692,
|
|
||||||
"Z": 40.748257
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Mount": false,
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001893,
|
|
||||||
"Position": {
|
|
||||||
"X": -388.72363,
|
|
||||||
"Y": 27.023682,
|
|
||||||
"Z": 45.578613
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -419.99802,
|
|
||||||
"Y": 19.50849,
|
|
||||||
"Z": 60.498474
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -428.06293,
|
|
||||||
"Y": -1.8700926,
|
|
||||||
"Z": 65.585
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -449.98322,
|
|
||||||
"Y": 3.358525,
|
|
||||||
"Z": 88.437485
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006195,
|
|
||||||
"Position": {
|
|
||||||
"X": -453.36084,
|
|
||||||
"Y": 4.574484,
|
|
||||||
"Z": 71.54956
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -449.98322,
|
|
||||||
"Y": 3.358525,
|
|
||||||
"Z": 88.437485
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Mount": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -599.5244,
|
|
||||||
"Y": -3.3999999,
|
|
||||||
"Z": -51.651997
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002478,
|
|
||||||
"Position": {
|
|
||||||
"X": -600.61035,
|
|
||||||
"Y": -3.189148,
|
|
||||||
"Z": -53.788086
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "dance"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002478,
|
|
||||||
"Position": {
|
|
||||||
"X": -600.61035,
|
|
||||||
"Y": -3.189148,
|
|
||||||
"Z": -53.788086
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -600.61035,
|
|
||||||
"Y": -3.189148,
|
|
||||||
"Z": -53.788086
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
39
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002478,
|
|
||||||
"Position": {
|
|
||||||
"X": -600.61035,
|
|
||||||
"Y": -3.189148,
|
|
||||||
"Z": -53.788086
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"DelaySecondsAtStart": 5
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 8,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -394.91058,
|
|
||||||
"Y": -3.4000032,
|
|
||||||
"Z": 148.78712
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Unlocked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005249,
|
|
||||||
"Position": {
|
|
||||||
"X": -337.30072,
|
|
||||||
"Y": -2.1811728,
|
|
||||||
"Z": 141.31372
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "dance",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 9,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -139.68823,
|
|
||||||
"Y": 39.999985,
|
|
||||||
"Z": 154.54538
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] The Aftcastle"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005228,
|
|
||||||
"Position": {
|
|
||||||
"X": -190.3258,
|
|
||||||
"Y": 41.24994,
|
|
||||||
"Z": 176.22644
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "dance",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "YesNo",
|
|
||||||
"Prompt": "TEXT_CLSACN250_00460_Q1_000_000",
|
|
||||||
"Yes": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 10,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005228,
|
|
||||||
"Position": {
|
|
||||||
"X": -190.3258,
|
|
||||||
"Y": 41.24994,
|
|
||||||
"Z": 176.22644
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 461
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,272 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 540.5525,
|
|
||||||
"Y": 10.00537,
|
|
||||||
"Z": 215.53333
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Unlocked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 545.74445,
|
|
||||||
"Y": 11.959542,
|
|
||||||
"Z": 214.24825
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Unlocked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 548.48584,
|
|
||||||
"Y": 12.640512,
|
|
||||||
"Z": 220.15768
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Locked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005251,
|
|
||||||
"Position": {
|
|
||||||
"X": 550.46924,
|
|
||||||
"Y": 12.147732,
|
|
||||||
"Z": 220.9353
|
|
||||||
},
|
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 542.48083,
|
|
||||||
"Y": 8.70027,
|
|
||||||
"Z": 398.26666
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 585.3419,
|
|
||||||
"Y": 14.562424,
|
|
||||||
"Z": 379.80997
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005252,
|
|
||||||
"Position": {
|
|
||||||
"X": 586.0226,
|
|
||||||
"Y": 14.562427,
|
|
||||||
"Z": 376.21106
|
|
||||||
},
|
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006273,
|
|
||||||
"Position": {
|
|
||||||
"X": 619.0126,
|
|
||||||
"Y": 23.936245,
|
|
||||||
"Z": 455.10022
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005253,
|
|
||||||
"Position": {
|
|
||||||
"X": 564.35486,
|
|
||||||
"Y": 20.617891,
|
|
||||||
"Z": 504.32593
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 515.26044,
|
|
||||||
"Y": 27.708418,
|
|
||||||
"Z": 469.322
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Flying": "Locked"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 449.59036,
|
|
||||||
"Y": 15.174555,
|
|
||||||
"Z": 377.2856
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005254,
|
|
||||||
"Position": {
|
|
||||||
"X": 442.00806,
|
|
||||||
"Y": 15.793267,
|
|
||||||
"Z": 370.32104
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005229,
|
|
||||||
"Position": {
|
|
||||||
"X": 522.9114,
|
|
||||||
"Y": 17.448051,
|
|
||||||
"Z": 456.35156
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "YesNo",
|
|
||||||
"Prompt": "TEXT_CLSACN300_00461_Q1_000_001",
|
|
||||||
"Yes": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005235,
|
|
||||||
"Position": {
|
|
||||||
"X": 684.3823,
|
|
||||||
"Y": 11.594438,
|
|
||||||
"Z": 411.94775
|
|
||||||
},
|
|
||||||
"StopDistance": 1,
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 8,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Arcanists' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000909,
|
|
||||||
"Position": {
|
|
||||||
"X": -326.37524,
|
|
||||||
"Y": 12.899658,
|
|
||||||
"Z": 9.994568
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 1091
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -40,88 +40,10 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -12.223117,
|
|
||||||
"Y": -2.0482793,
|
|
||||||
"Z": -145.75566
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"TerritoryId": 141,
|
"TerritoryId": 141,
|
||||||
"InteractionType": "EquipRecommended"
|
"InteractionType": "EquipRecommended"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"DataId": 1001564,
|
|
||||||
"Position": {
|
|
||||||
"X": -9.689575,
|
|
||||||
"Y": -2.0480804,
|
|
||||||
"Z": -145.09808
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "PurchaseItem",
|
|
||||||
"PurchaseMenu": {
|
|
||||||
"ExcelSheet": "GilShop",
|
|
||||||
"Key": 262186
|
|
||||||
},
|
|
||||||
"ItemId": 2654,
|
|
||||||
"ItemCount": 1,
|
|
||||||
"RequiredCurrentJob": [
|
|
||||||
"DoW"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Item": {
|
|
||||||
"NotInInventory": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1001564,
|
|
||||||
"Position": {
|
|
||||||
"X": -9.689575,
|
|
||||||
"Y": -2.0480804,
|
|
||||||
"Z": -145.09808
|
|
||||||
},
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "PurchaseItem",
|
|
||||||
"PurchaseMenu": {
|
|
||||||
"ExcelSheet": "GilShop",
|
|
||||||
"Key": 262186
|
|
||||||
},
|
|
||||||
"ItemId": 2655,
|
|
||||||
"ItemCount": 1,
|
|
||||||
"RequiredCurrentJob": [
|
|
||||||
"DoM"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "EquipItem",
|
|
||||||
"ItemId": 2654,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Item": {
|
|
||||||
"NotInInventory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"TerritoryId": 141,
|
|
||||||
"InteractionType": "EquipItem",
|
|
||||||
"ItemId": 2655,
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"Item": {
|
|
||||||
"NotInInventory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1001447,
|
"DataId": 1001447,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -130,7 +52,8 @@
|
|||||||
"Z": -148.51611
|
"Z": -148.51611
|
||||||
},
|
},
|
||||||
"TerritoryId": 141,
|
"TerritoryId": 141,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Comment": "All starting gear (except the hat) is ilvl 5 already"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,76 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "UcanPatates",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000194,
|
|
||||||
"Position": {
|
|
||||||
"X": -16.281433,
|
|
||||||
"Y": -3.2499998,
|
|
||||||
"Z": 41.000854
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000686,
|
|
||||||
"Position": {
|
|
||||||
"X": -66.36151,
|
|
||||||
"Y": -3.896366,
|
|
||||||
"Z": 67.00232
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000789,
|
|
||||||
"Position": {
|
|
||||||
"X": -33.76825,
|
|
||||||
"Y": 7.3172073,
|
|
||||||
"Z": -117.052
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true,
|
|
||||||
"InTerritory": [
|
|
||||||
132
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "UcanPatates",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006711,
|
|
||||||
"Position": {
|
|
||||||
"X": -140.39832,
|
|
||||||
"Y": 7.8986163,
|
|
||||||
"Z": -142.99237
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AethernetShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
},
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
132,
|
|
||||||
133
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000617,
|
|
||||||
"Position": {
|
|
||||||
"X": 5.722107,
|
|
||||||
"Y": -7.2786255,
|
|
||||||
"Z": 270.95447
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"NextQuestId": 970
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,164 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "UcanPatates",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000617,
|
|
||||||
"Position": {
|
|
||||||
"X": 5.722107,
|
|
||||||
"Y": -7.2786255,
|
|
||||||
"Z": 270.95447
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000587,
|
|
||||||
"Position": {
|
|
||||||
"X": -7.248047,
|
|
||||||
"Y": -8.407776,
|
|
||||||
"Z": 268.23828
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002191,
|
|
||||||
"Position": {
|
|
||||||
"X": 189.6543,
|
|
||||||
"Y": 7.94989,
|
|
||||||
"Z": 133.65369
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"StopDistance": 0.1,
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002192,
|
|
||||||
"Position": {
|
|
||||||
"X": 181.04822,
|
|
||||||
"Y": 0.07623291,
|
|
||||||
"Z": 43.289795
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"StopDistance": 0.1,
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2002190,
|
|
||||||
"Position": {
|
|
||||||
"X": 233.66138,
|
|
||||||
"Y": 6.42395,
|
|
||||||
"Z": 199.11487
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"StopDistance": 0.1,
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 124.74073,
|
|
||||||
"Y": 6.729165,
|
|
||||||
"Z": 190.69174
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006715,
|
|
||||||
"Position": {
|
|
||||||
"X": -170.67218,
|
|
||||||
"Y": 56.713512,
|
|
||||||
"Z": -255.9701
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"NextQuestId": 972
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,80 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "UcanPatates",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006715,
|
|
||||||
"Position": {
|
|
||||||
"X": -170.67218,
|
|
||||||
"Y": 56.713512,
|
|
||||||
"Z": -255.9701
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -193.69008,
|
|
||||||
"Y": 55.59636,
|
|
||||||
"Z": -177.57457
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007568,
|
|
||||||
"Position": {
|
|
||||||
"X": -183.88647,
|
|
||||||
"Y": 57.451885,
|
|
||||||
"Z": -143.93835
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006715,
|
|
||||||
"Position": {
|
|
||||||
"X": -170.67218,
|
|
||||||
"Y": 56.713512,
|
|
||||||
"Z": -255.9701
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,176 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "UcanPatates",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000959,
|
|
||||||
"Position": {
|
|
||||||
"X": -65.62909,
|
|
||||||
"Y": 41.999985,
|
|
||||||
"Z": -139.45221
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003603,
|
|
||||||
"Position": {
|
|
||||||
"X": 20.34021,
|
|
||||||
"Y": 20,
|
|
||||||
"Z": 4.3182373
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild",
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AethernetShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
},
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 64.20255,
|
|
||||||
"Y": 19.94936,
|
|
||||||
"Z": 1.0639327
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
134,
|
|
||||||
129
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"StepIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
134
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 338,
|
|
||||||
"Position": {
|
|
||||||
"X": 130.05261,
|
|
||||||
"Y": 51.719154,
|
|
||||||
"Z": 185.6565
|
|
||||||
},
|
|
||||||
"TerritoryId": 134,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 338,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 4
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"MinimumKillCount": 4
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 4
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -57.281883,
|
|
||||||
"Y": 33.088005,
|
|
||||||
"Z": 160.24603
|
|
||||||
},
|
|
||||||
"TerritoryId": 134,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"NotInTerritory": [
|
|
||||||
134
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000959,
|
|
||||||
"Position": {
|
|
||||||
"X": -65.62909,
|
|
||||||
"Y": 41.999985,
|
|
||||||
"Z": -139.45221
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,118 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "UcanPatates",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001537,
|
|
||||||
"Position": {
|
|
||||||
"X": -58.854065,
|
|
||||||
"Y": 42.299744,
|
|
||||||
"Z": -164.08032
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000957,
|
|
||||||
"Position": {
|
|
||||||
"X": -49.271423,
|
|
||||||
"Y": 43.999977,
|
|
||||||
"Z": -146.37988
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000937,
|
|
||||||
"Position": {
|
|
||||||
"X": -12.222534,
|
|
||||||
"Y": 44.99988,
|
|
||||||
"Z": -251.88074
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Marauders' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000957,
|
|
||||||
"Position": {
|
|
||||||
"X": -49.271423,
|
|
||||||
"Y": 43.999977,
|
|
||||||
"Z": -146.37988
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Marauders' Guild",
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,158 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "UcanPatates",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001000,
|
|
||||||
"Position": {
|
|
||||||
"X": -32.028687,
|
|
||||||
"Y": 41.499985,
|
|
||||||
"Z": 208.39233
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] The Aftcastle"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 25.29642,
|
|
||||||
"Y": 44.499924,
|
|
||||||
"Z": 184.26752
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] The Aftcastle"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"StepIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
135
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 21.738638,
|
|
||||||
"Y": 61.836372,
|
|
||||||
"Z": 139.60422
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
],
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 347,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 5
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"MinimumKillCount": 5
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
{
|
|
||||||
"Low": 5
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
135
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -67.00804,
|
|
||||||
"Y": 75.84114,
|
|
||||||
"Z": 116.815384
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"SkipConditions": {
|
|
||||||
"StepIf": {
|
|
||||||
"NotInTerritory": [
|
|
||||||
135
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000972,
|
|
||||||
"Position": {
|
|
||||||
"X": 20.279175,
|
|
||||||
"Y": 40.19993,
|
|
||||||
"Z": -6.1189575
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] The Aftcastle"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InTerritory": [
|
|
||||||
129,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -29,8 +29,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||||
"Fly": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -29,8 +29,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||||
"Fly": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -29,8 +29,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||||
"Fly": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,99 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003281,
|
|
||||||
"Position": {
|
|
||||||
"X": 97.520386,
|
|
||||||
"Y": 40.248554,
|
|
||||||
"Z": 81.1322
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 126.33908,
|
|
||||||
"Y": 31.31262,
|
|
||||||
"Z": -772.82794
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"TargetTerritoryId": 155,
|
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"AetheryteLocked": "Mor Dhona",
|
|
||||||
"InTerritory": [
|
|
||||||
155
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"StepIf": {
|
|
||||||
"AetheryteLocked": "Mor Dhona",
|
|
||||||
"InTerritory": [
|
|
||||||
155
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007625,
|
|
||||||
"Position": {
|
|
||||||
"X": -354.1772,
|
|
||||||
"Y": 214.60808,
|
|
||||||
"Z": 692.65283
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 5
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003281,
|
|
||||||
"Position": {
|
|
||||||
"X": 97.520386,
|
|
||||||
"Y": 40.248554,
|
|
||||||
"Z": 81.1322
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] The Aftcastle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,95 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000168,
|
|
||||||
"Position": {
|
|
||||||
"X": -75.48645,
|
|
||||||
"Y": -0.5013741,
|
|
||||||
"Z": -5.081299
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 126.33908,
|
|
||||||
"Y": 31.31262,
|
|
||||||
"Z": -772.82794
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"TargetTerritoryId": 155,
|
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"AetheryteLocked": "Mor Dhona",
|
|
||||||
"InTerritory": [
|
|
||||||
155
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"StepIf": {
|
|
||||||
"AetheryteLocked": "Mor Dhona",
|
|
||||||
"InTerritory": [
|
|
||||||
155
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007625,
|
|
||||||
"Position": {
|
|
||||||
"X": -354.1772,
|
|
||||||
"Y": 214.60808,
|
|
||||||
"Z": 692.65283
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 5
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000168,
|
|
||||||
"Position": {
|
|
||||||
"X": -75.48645,
|
|
||||||
"Y": -0.5013741,
|
|
||||||
"Z": -5.081299
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,95 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1004576,
|
|
||||||
"Position": {
|
|
||||||
"X": -141.64954,
|
|
||||||
"Y": 4.1,
|
|
||||||
"Z": -114.67157
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 126.33908,
|
|
||||||
"Y": 31.31262,
|
|
||||||
"Z": -772.82794
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"TargetTerritoryId": 155,
|
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"AetheryteLocked": "Mor Dhona",
|
|
||||||
"InTerritory": [
|
|
||||||
155
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"StepIf": {
|
|
||||||
"AetheryteLocked": "Mor Dhona",
|
|
||||||
"InTerritory": [
|
|
||||||
155
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007625,
|
|
||||||
"Position": {
|
|
||||||
"X": -354.1772,
|
|
||||||
"Y": 214.60808,
|
|
||||||
"Z": 692.65283
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 5
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1004576,
|
|
||||||
"Position": {
|
|
||||||
"X": -141.64954,
|
|
||||||
"Y": 4.1,
|
|
||||||
"Z": -114.67157
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,48 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1005021,
|
|
||||||
"Position": {
|
|
||||||
"X": -472.49567,
|
|
||||||
"Y": 23.008797,
|
|
||||||
"Z": -355.00116
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -157.07425,
|
|
||||||
"Y": 24.884384,
|
|
||||||
"Z": -354.37775
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006220,
|
|
||||||
"Position": {
|
|
||||||
"X": 185.74805,
|
|
||||||
"Y": 13.721187,
|
|
||||||
"Z": -443.1983
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,153 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016093,
|
|
||||||
"Position": {
|
|
||||||
"X": -776.0281,
|
|
||||||
"Y": -133.35559,
|
|
||||||
"Z": -414.32825
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -544.89056,
|
|
||||||
"Y": 61.602722,
|
|
||||||
"Z": -373.9669
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006649,
|
|
||||||
"Position": {
|
|
||||||
"X": -539.0555,
|
|
||||||
"Y": 64.22522,
|
|
||||||
"Z": -377.0047
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"StopDistance": 3,
|
|
||||||
"$": "0 0 0 0 0 0 --> 1 0 0 0 0 16",
|
|
||||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,16]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -505.35422,
|
|
||||||
"Y": -28.166508,
|
|
||||||
"Z": -528.1072
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006647,
|
|
||||||
"Position": {
|
|
||||||
"X": -504.78372,
|
|
||||||
"Y": -26.68805,
|
|
||||||
"Z": -530.93774
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"StopDistance": 3,
|
|
||||||
"$": "1 0 0 0 0 16 --> 2 0 0 0 0 80",
|
|
||||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,64]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -478.25208,
|
|
||||||
"Y": -31.101946,
|
|
||||||
"Z": -663.0455
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006648,
|
|
||||||
"Position": {
|
|
||||||
"X": -477.40906,
|
|
||||||
"Y": -28.885437,
|
|
||||||
"Z": -668.32996
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"StopDistance": 3,
|
|
||||||
"$": "2 0 0 0 0 80 --> 3 0 0 0 0 112",
|
|
||||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,32]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -102.45963,
|
|
||||||
"Y": -1.2632592,
|
|
||||||
"Z": -619.294
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006646,
|
|
||||||
"Position": {
|
|
||||||
"X": -96.20813,
|
|
||||||
"Y": 0.32037354,
|
|
||||||
"Z": -620.26404
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"StopDistance": 3,
|
|
||||||
"$": "3 0 0 0 0 112 --> 0 0 0 0 0 0"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,129 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -797.36957,
|
|
||||||
"Y": -130.0076,
|
|
||||||
"Z": -404.2746
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006651,
|
|
||||||
"Position": {
|
|
||||||
"X": 664.3624,
|
|
||||||
"Y": -30.86908,
|
|
||||||
"Z": -137.0108
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006652,
|
|
||||||
"Position": {
|
|
||||||
"X": 847.2876,
|
|
||||||
"Y": -50.58368,
|
|
||||||
"Z": 7.2174683
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006653,
|
|
||||||
"Position": {
|
|
||||||
"X": 860.2273,
|
|
||||||
"Y": -84.45868,
|
|
||||||
"Z": 19.272095
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
],
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
5235
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006654,
|
|
||||||
"Position": {
|
|
||||||
"X": 642.63354,
|
|
||||||
"Y": -92.57648,
|
|
||||||
"Z": 63.035034
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Fly": true,
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
5235
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,104 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016093,
|
|
||||||
"Position": {
|
|
||||||
"X": -776.0281,
|
|
||||||
"Y": -133.35559,
|
|
||||||
"Z": -414.32825
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006655,
|
|
||||||
"Position": {
|
|
||||||
"X": -48.325317,
|
|
||||||
"Y": 17.990356,
|
|
||||||
"Z": -852.47577
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Fly": true,
|
|
||||||
"Action": "Buffet (Sanuwa)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006656,
|
|
||||||
"Position": {
|
|
||||||
"X": 95.23157,
|
|
||||||
"Y": -11.886841,
|
|
||||||
"Z": -817.6242
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Fly": true,
|
|
||||||
"Action": "Buffet (Sanuwa)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006657,
|
|
||||||
"Position": {
|
|
||||||
"X": 205.8899,
|
|
||||||
"Y": -6.9123535,
|
|
||||||
"Z": -785.70233
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Fly": true,
|
|
||||||
"Action": "Buffet (Sanuwa)"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,108 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1011952,
|
|
||||||
"Position": {
|
|
||||||
"X": -277.63788,
|
|
||||||
"Y": -184.59735,
|
|
||||||
"Z": 741.60376
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006662,
|
|
||||||
"Position": {
|
|
||||||
"X": 150.77429,
|
|
||||||
"Y": -133.98956,
|
|
||||||
"Z": 610.00977
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006661,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.2633,
|
|
||||||
"Y": -124.101685,
|
|
||||||
"Z": 631.8303
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006658,
|
|
||||||
"Position": {
|
|
||||||
"X": 407.187,
|
|
||||||
"Y": -122.51471,
|
|
||||||
"Z": 724.0558
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,118 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016093,
|
|
||||||
"Position": {
|
|
||||||
"X": -776.0281,
|
|
||||||
"Y": -133.35559,
|
|
||||||
"Z": -414.32825
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016219,
|
|
||||||
"Position": {
|
|
||||||
"X": 14.389221,
|
|
||||||
"Y": -111.05486,
|
|
||||||
"Z": 413.71777
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016217,
|
|
||||||
"Position": {
|
|
||||||
"X": 97.48987,
|
|
||||||
"Y": -86.45681,
|
|
||||||
"Z": 466.57495
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016218,
|
|
||||||
"Position": {
|
|
||||||
"X": 137.95679,
|
|
||||||
"Y": -87.380325,
|
|
||||||
"Z": 434.62268
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Buffet (Sanuwa)",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,104 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1012057,
|
|
||||||
"Position": {
|
|
||||||
"X": -599.0845,
|
|
||||||
"Y": -122.5,
|
|
||||||
"Z": 559.50244
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1012055,
|
|
||||||
"Position": {
|
|
||||||
"X": -656.76355,
|
|
||||||
"Y": -117.32357,
|
|
||||||
"Z": 492.78992
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016215,
|
|
||||||
"Position": {
|
|
||||||
"X": -279.71313,
|
|
||||||
"Y": -156.87129,
|
|
||||||
"Z": 766.9946
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006702,
|
|
||||||
"Position": {
|
|
||||||
"X": 270.8933,
|
|
||||||
"Y": -114.21387,
|
|
||||||
"Z": 395.2544
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006703,
|
|
||||||
"Position": {
|
|
||||||
"X": 504.1123,
|
|
||||||
"Y": -101.335205,
|
|
||||||
"Z": 360.58594
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,102 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006667,
|
|
||||||
"Position": {
|
|
||||||
"X": -792.59937,
|
|
||||||
"Y": -58.365784,
|
|
||||||
"Z": 188.06738
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [null, null, [16], null, null, null]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006761,
|
|
||||||
"Position": {
|
|
||||||
"X": -759.4568,
|
|
||||||
"Y": -61.905884,
|
|
||||||
"Z": 140.21509
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [null, null, [32], null, null, null]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006666,
|
|
||||||
"Position": {
|
|
||||||
"X": -627.863,
|
|
||||||
"Y": -59.372925,
|
|
||||||
"Z": -162.12714
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2001941,
|
|
||||||
"KillEnemyDataIds": [5238],
|
|
||||||
"Fly": true,
|
|
||||||
"RequiredQuestVariables": [null, [1], null, null, null, null]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1012068,
|
|
||||||
"Position": {
|
|
||||||
"X": -597.0398,
|
|
||||||
"Y": -51.05185,
|
|
||||||
"Z": -387.0451
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,169 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016091,
|
|
||||||
"Position": {
|
|
||||||
"X": -804.25726,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -390.89038
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006705,
|
|
||||||
"Position": {
|
|
||||||
"X": -356.1914,
|
|
||||||
"Y": -153.21588,
|
|
||||||
"Z": 246.23486
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop",
|
|
||||||
"Fly": true,
|
|
||||||
"$": "QW: 1 0 16 0 0 2",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
2
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006706,
|
|
||||||
"Position": {
|
|
||||||
"X": -292.34766,
|
|
||||||
"Y": -142.2904,
|
|
||||||
"Z": 325.91736
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"$": "QW: 2 0 32 0 0 3",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
1
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006704,
|
|
||||||
"Position": {
|
|
||||||
"X": -281.11694,
|
|
||||||
"Y": -133.13501,
|
|
||||||
"Z": 345.2964
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"$": "QW: 19 0 48 0 0 7",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
4
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006670,
|
|
||||||
"Position": {
|
|
||||||
"X": 165.85034,
|
|
||||||
"Y": -86.13721,
|
|
||||||
"Z": 415.94556
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"$": "QW: 19 17 48 0 0 39",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006669,
|
|
||||||
"Position": {
|
|
||||||
"X": 282.88696,
|
|
||||||
"Y": -82.26141,
|
|
||||||
"Z": 366.07922
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"$": "QW: 19 34 48 0 0 103",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006671,
|
|
||||||
"Position": {
|
|
||||||
"X": 129.8695,
|
|
||||||
"Y": -92.17981,
|
|
||||||
"Z": 293.11047
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016091,
|
|
||||||
"Position": {
|
|
||||||
"X": -804.25726,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -390.89038
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -71,8 +71,7 @@
|
|||||||
"TerritoryId": 401,
|
"TerritoryId": 401,
|
||||||
"InteractionType": "Action",
|
"InteractionType": "Action",
|
||||||
"Action": "Buffet (Sanuwa)",
|
"Action": "Buffet (Sanuwa)",
|
||||||
"Fly": true,
|
"Fly": true
|
||||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,32]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1016221,
|
"DataId": 1016221,
|
||||||
@ -84,8 +83,7 @@
|
|||||||
"TerritoryId": 401,
|
"TerritoryId": 401,
|
||||||
"InteractionType": "Action",
|
"InteractionType": "Action",
|
||||||
"Action": "Buffet (Sanuwa)",
|
"Action": "Buffet (Sanuwa)",
|
||||||
"Fly": true,
|
"Fly": true
|
||||||
"CompletionQuestVariablesFlags": [null,null,null,null,null,64]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1016220,
|
"DataId": 1016220,
|
||||||
|
@ -36,16 +36,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -834.9571,
|
|
||||||
"Y": -130.33038,
|
|
||||||
"Z": -386.03116
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": 833.7674,
|
"X": 833.7674,
|
||||||
|
@ -1,93 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016093,
|
|
||||||
"Position": {
|
|
||||||
"X": -776.0281,
|
|
||||||
"Y": -133.35559,
|
|
||||||
"Z": -414.32825
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006693,
|
|
||||||
"Position": {
|
|
||||||
"X": -420.8286,
|
|
||||||
"Y": -185.8396,
|
|
||||||
"Z": 705.745
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006692,
|
|
||||||
"Position": {
|
|
||||||
"X": -300.49597,
|
|
||||||
"Y": -192.37054,
|
|
||||||
"Z": 638.5442
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006691,
|
|
||||||
"Position": {
|
|
||||||
"X": -244.73944,
|
|
||||||
"Y": -184.92413,
|
|
||||||
"Z": 687.4342
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016093,
|
|
||||||
"Position": {
|
|
||||||
"X": -776.0281,
|
|
||||||
"Y": -133.35559,
|
|
||||||
"Z": -414.32825
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,109 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016088,
|
|
||||||
"Position": {
|
|
||||||
"X": -818.143,
|
|
||||||
"Y": -129.93259,
|
|
||||||
"Z": -414.02307
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1011952,
|
|
||||||
"Position": {
|
|
||||||
"X": -277.63788,
|
|
||||||
"Y": -184.59735,
|
|
||||||
"Z": 741.60376
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016385,
|
|
||||||
"Position": {
|
|
||||||
"X": -519.646,
|
|
||||||
"Y": -152.47815,
|
|
||||||
"Z": 280.38452
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016377,
|
|
||||||
"Position": {
|
|
||||||
"X": 272.7854,
|
|
||||||
"Y": -114.24131,
|
|
||||||
"Z": 387.6859
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016376,
|
|
||||||
"Position": {
|
|
||||||
"X": 702.90686,
|
|
||||||
"Y": -126.03205,
|
|
||||||
"Z": 392.04993
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016088,
|
|
||||||
"Position": {
|
|
||||||
"X": -818.143,
|
|
||||||
"Y": -129.93259,
|
|
||||||
"Z": -414.02307
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,86 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "plogon_enjoyer",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006694,
|
|
||||||
"Position": {
|
|
||||||
"X": -28.030884,
|
|
||||||
"Y": -136.98022,
|
|
||||||
"Z": 454.94763
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006699,
|
|
||||||
"Position": {
|
|
||||||
"X": -15.182739,
|
|
||||||
"Y": -136.98022,
|
|
||||||
"Z": 458.33508
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016237,
|
|
||||||
"Position": {
|
|
||||||
"X": -28.000305,
|
|
||||||
"Y": -137.77374,
|
|
||||||
"Z": 454.94763
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001935
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016089,
|
|
||||||
"Position": {
|
|
||||||
"X": -799.46594,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -404.1352
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,216 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016087,
|
|
||||||
"Position": {
|
|
||||||
"X": -796.7498,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -410.6966
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -790.3409,
|
|
||||||
"Y": -129.17549,
|
|
||||||
"Z": -409.1912
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016166,
|
|
||||||
"Position": {
|
|
||||||
"X": 557.885,
|
|
||||||
"Y": -126.23241,
|
|
||||||
"Z": 283.07007
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006627,
|
|
||||||
"Position": {
|
|
||||||
"X": 583.52014,
|
|
||||||
"Y": -126.81775,
|
|
||||||
"Z": 268.0857
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001901,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006628,
|
|
||||||
"Position": {
|
|
||||||
"X": 632.95935,
|
|
||||||
"Y": -111.680786,
|
|
||||||
"Z": 157.85449
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001901,
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006629,
|
|
||||||
"Position": {
|
|
||||||
"X": 688.5939,
|
|
||||||
"Y": -95.99457,
|
|
||||||
"Z": 101.27405
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001901,
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006630,
|
|
||||||
"Position": {
|
|
||||||
"X": 709.86475,
|
|
||||||
"Y": -85.19116,
|
|
||||||
"Z": 29.892456
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001901,
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006631,
|
|
||||||
"Position": {
|
|
||||||
"X": 722.8656,
|
|
||||||
"Y": -65.84277,
|
|
||||||
"Z": -57.938538
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001901,
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016166,
|
|
||||||
"Position": {
|
|
||||||
"X": 557.885,
|
|
||||||
"Y": -126.23241,
|
|
||||||
"Z": 283.07007
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016166,
|
|
||||||
"Position": {
|
|
||||||
"X": 557.885,
|
|
||||||
"Y": -126.23241,
|
|
||||||
"Z": 283.07007
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "dance"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1012064,
|
|
||||||
"Position": {
|
|
||||||
"X": -542.7787,
|
|
||||||
"Y": -37.11544,
|
|
||||||
"Z": -386.7094
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016087,
|
|
||||||
"Position": {
|
|
||||||
"X": -796.7498,
|
|
||||||
"Y": -133.2695,
|
|
||||||
"Z": -410.6966
|
|
||||||
},
|
|
||||||
"TerritoryId": 401,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -62,16 +62,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -80,7 +70,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -58,16 +58,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -76,7 +66,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -111,16 +102,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -129,7 +110,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -98,17 +98,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -117,7 +106,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -62,17 +62,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -81,7 +70,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -91,17 +91,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -110,7 +99,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -91,17 +91,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -110,7 +99,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -73,17 +73,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -92,7 +81,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -58,17 +58,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -77,7 +66,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,113 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1017031,
|
|
||||||
"Position": {
|
|
||||||
"X": 74.20459,
|
|
||||||
"Y": -48.533592,
|
|
||||||
"Z": -171.12994
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006915,
|
|
||||||
"Position": {
|
|
||||||
"X": 96.45227,
|
|
||||||
"Y": -66.2395,
|
|
||||||
"Z": 616.6017
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fumigate",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006916,
|
|
||||||
"Position": {
|
|
||||||
"X": -149.95044,
|
|
||||||
"Y": -55.25299,
|
|
||||||
"Z": 541.37476
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fumigate",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006917,
|
|
||||||
"Position": {
|
|
||||||
"X": -625.0859,
|
|
||||||
"Y": -49.94281,
|
|
||||||
"Z": 491.02002
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Action",
|
|
||||||
"Action": "Fumigate",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,173 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 449.65012,
|
|
||||||
"Y": -51.141403,
|
|
||||||
"Z": 106.932205
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1011922,
|
|
||||||
"Position": {
|
|
||||||
"X": 448.56934,
|
|
||||||
"Y": -51.141407,
|
|
||||||
"Z": 108.93408
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006918,
|
|
||||||
"Position": {
|
|
||||||
"X": 475.69995,
|
|
||||||
"Y": -44.174927,
|
|
||||||
"Z": -231.46417
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2001961,
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
71224
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006920,
|
|
||||||
"Position": {
|
|
||||||
"X": 329.4879,
|
|
||||||
"Y": -45.487183,
|
|
||||||
"Z": -262.13477
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2001961,
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
5548
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2006919,
|
|
||||||
"Position": {
|
|
||||||
"X": 535.45435,
|
|
||||||
"Y": -32.39496,
|
|
||||||
"Z": -410.60504
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2001961,
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
71224
|
|
||||||
],
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 449.65012,
|
|
||||||
"Y": -51.141403,
|
|
||||||
"Z": 106.932205
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1011922,
|
|
||||||
"Position": {
|
|
||||||
"X": 448.56934,
|
|
||||||
"Y": -51.141407,
|
|
||||||
"Z": 108.93408
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -78,17 +78,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -97,7 +86,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -55,16 +55,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -73,7 +63,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -91,17 +91,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -110,7 +99,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -1,125 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016865,
|
|
||||||
"Position": {
|
|
||||||
"X": -272.23627,
|
|
||||||
"Y": -35.408485,
|
|
||||||
"Z": 219.07373
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016864,
|
|
||||||
"Position": {
|
|
||||||
"X": -452.32324,
|
|
||||||
"Y": -35.352047,
|
|
||||||
"Z": 174.30371
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016866,
|
|
||||||
"Position": {
|
|
||||||
"X": -397.05505,
|
|
||||||
"Y": -34.192406,
|
|
||||||
"Z": 243.12195
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
5551
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016866,
|
|
||||||
"Position": {
|
|
||||||
"X": -397.05505,
|
|
||||||
"Y": -34.192406,
|
|
||||||
"Z": 243.12195
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016803,
|
|
||||||
"Position": {
|
|
||||||
"X": 57.297607,
|
|
||||||
"Y": -47.842846,
|
|
||||||
"Z": -174.63953
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -101,16 +101,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -119,7 +109,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -100,16 +100,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -118,7 +108,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -73,17 +73,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -92,7 +81,9 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true,
|
||||||
|
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -101,16 +101,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 58.39701,
|
|
||||||
"Y": -48.000008,
|
|
||||||
"Z": -172.36507
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1016803,
|
"DataId": 1016803,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -119,7 +109,8 @@
|
|||||||
"Z": -174.63953
|
"Z": -174.63953
|
||||||
},
|
},
|
||||||
"TerritoryId": 398,
|
"TerritoryId": 398,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest",
|
||||||
|
"Fly": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -1,194 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016802,
|
|
||||||
"Position": {
|
|
||||||
"X": 53.360718,
|
|
||||||
"Y": -48.000004,
|
|
||||||
"Z": -169.97028
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016841,
|
|
||||||
"Position": {
|
|
||||||
"X": 842.9846,
|
|
||||||
"Y": -8.926968,
|
|
||||||
"Z": 338.2467
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
5541
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016841,
|
|
||||||
"Position": {
|
|
||||||
"X": 842.9846,
|
|
||||||
"Y": -8.926968,
|
|
||||||
"Z": 338.2467
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 875.1023,
|
|
||||||
"Y": -3.6736863,
|
|
||||||
"Z": 355.24545
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1016842,
|
|
||||||
"Position": {
|
|
||||||
"X": -791.9585,
|
|
||||||
"Y": 113.93191,
|
|
||||||
"Z": -624.59753
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1011907,
|
|
||||||
"Position": {
|
|
||||||
"X": -288.8686,
|
|
||||||
"Y": 127.06639,
|
|
||||||
"Z": 13.199036
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006877,
|
|
||||||
"Position": {
|
|
||||||
"X": -276.63086,
|
|
||||||
"Y": 122.27051,
|
|
||||||
"Z": -45.02942
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2001950
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016890,
|
|
||||||
"Position": {
|
|
||||||
"X": -273.91473,
|
|
||||||
"Y": 122.361694,
|
|
||||||
"Z": -43.320435
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1011928,
|
|
||||||
"Position": {
|
|
||||||
"X": 73.19751,
|
|
||||||
"Y": -49.19563,
|
|
||||||
"Z": -139.05548
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 8,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016843,
|
|
||||||
"Position": {
|
|
||||||
"X": 103.16626,
|
|
||||||
"Y": -50.70595,
|
|
||||||
"Z": -184.31378
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1016802,
|
|
||||||
"Position": {
|
|
||||||
"X": 53.360718,
|
|
||||||
"Y": -48.000004,
|
|
||||||
"Z": -169.97028
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,108 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013437,
|
|
||||||
"Position": {
|
|
||||||
"X": -580.5906,
|
|
||||||
"Y": 206.85785,
|
|
||||||
"Z": -407.64478
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
4478
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
1,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1013437,
|
|
||||||
"Position": {
|
|
||||||
"X": -580.5906,
|
|
||||||
"Y": 206.85785,
|
|
||||||
"Z": -407.64478
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 1690
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,112 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013441,
|
|
||||||
"Position": {
|
|
||||||
"X": 468.58923,
|
|
||||||
"Y": 166.28001,
|
|
||||||
"Z": 256.73303
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
4504
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013441,
|
|
||||||
"Position": {
|
|
||||||
"X": 468.58923,
|
|
||||||
"Y": 166.28001,
|
|
||||||
"Z": 256.73303
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2006182,
|
|
||||||
"Position": {
|
|
||||||
"X": 197.40588,
|
|
||||||
"Y": 184.00854,
|
|
||||||
"Z": -102.80011
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
4486
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013445,
|
|
||||||
"Position": {
|
|
||||||
"X": 202.19727,
|
|
||||||
"Y": 183.6595,
|
|
||||||
"Z": -96.11658
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,81 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013445,
|
|
||||||
"Position": {
|
|
||||||
"X": 202.19727,
|
|
||||||
"Y": 183.6595,
|
|
||||||
"Z": -96.11658
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013448,
|
|
||||||
"Position": {
|
|
||||||
"X": 83.26843,
|
|
||||||
"Y": 23.979126,
|
|
||||||
"Z": 2.3345947
|
|
||||||
},
|
|
||||||
"TerritoryId": 418,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ishgard",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ishgard] Aetheryte Plaza",
|
|
||||||
"[Ishgard] The Forgotten Knight"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 1690
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,146 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013450,
|
|
||||||
"Position": {
|
|
||||||
"X": 84.30603,
|
|
||||||
"Y": 23.979128,
|
|
||||||
"Z": -12.802368
|
|
||||||
},
|
|
||||||
"TerritoryId": 418,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ishgard",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ishgard] Aetheryte Plaza",
|
|
||||||
"[Ishgard] The Forgotten Knight"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013456,
|
|
||||||
"Position": {
|
|
||||||
"X": 489.82983,
|
|
||||||
"Y": 164.7244,
|
|
||||||
"Z": 266.25464
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013457,
|
|
||||||
"Position": {
|
|
||||||
"X": 492.88147,
|
|
||||||
"Y": 164.6694,
|
|
||||||
"Z": 265.06445
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013464,
|
|
||||||
"Position": {
|
|
||||||
"X": 133.47058,
|
|
||||||
"Y": 24.400866,
|
|
||||||
"Z": -6.149414
|
|
||||||
},
|
|
||||||
"TerritoryId": 418,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ishgard",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ishgard] Aetheryte Plaza",
|
|
||||||
"[Ishgard] The Forgotten Knight"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 1690
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,165 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -48.009445,
|
|
||||||
"Y": 98.00955,
|
|
||||||
"Z": 106.47891
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1013467,
|
|
||||||
"Position": {
|
|
||||||
"X": -51.10254,
|
|
||||||
"Y": 98.63026,
|
|
||||||
"Z": 105.1499
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013466,
|
|
||||||
"Position": {
|
|
||||||
"X": -155.5047,
|
|
||||||
"Y": 175.79733,
|
|
||||||
"Z": 693.26306
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
4482,
|
|
||||||
5049
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
2,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1013466,
|
|
||||||
"Position": {
|
|
||||||
"X": -155.5047,
|
|
||||||
"Y": 175.79733,
|
|
||||||
"Z": 693.26306
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1012163,
|
|
||||||
"Position": {
|
|
||||||
"X": 128.25195,
|
|
||||||
"Y": 24.458832,
|
|
||||||
"Z": -0.6867676
|
|
||||||
},
|
|
||||||
"TerritoryId": 418,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ishgard",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Ishgard] Aetheryte Plaza",
|
|
||||||
"[Ishgard] The Forgotten Knight"
|
|
||||||
],
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1013470,
|
|
||||||
"Position": {
|
|
||||||
"X": 218.00562,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 346.45605
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_JOBDRG560_01693_Q1_000_000",
|
|
||||||
"Answer": "TEXT_JOBDRG560_01693_A1_000_002"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,141 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013471,
|
|
||||||
"Position": {
|
|
||||||
"X": 503.53247,
|
|
||||||
"Y": -51.363117,
|
|
||||||
"Z": 79.941895
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013472,
|
|
||||||
"Position": {
|
|
||||||
"X": 396.35315,
|
|
||||||
"Y": -50.87535,
|
|
||||||
"Z": 73.04492
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
4497
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013471,
|
|
||||||
"Position": {
|
|
||||||
"X": 503.53247,
|
|
||||||
"Y": -51.363117,
|
|
||||||
"Z": 79.941895
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013476,
|
|
||||||
"Position": {
|
|
||||||
"X": 571.5571,
|
|
||||||
"Y": -36.290947,
|
|
||||||
"Z": 359.3651
|
|
||||||
},
|
|
||||||
"TerritoryId": 398,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 1690
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,123 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
|
||||||
"Author": "AnimaMachinae",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 215.65454,
|
|
||||||
"Y": 222.1,
|
|
||||||
"Z": 345.1806
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
|
||||||
"Land": true,
|
|
||||||
"Fly": true,
|
|
||||||
"SkipConditions": {
|
|
||||||
"AetheryteShortcutIf": {
|
|
||||||
"InSameTerritory": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"$": "Alberic"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006748,
|
|
||||||
"Position": {
|
|
||||||
"X": 217.88354,
|
|
||||||
"Y": 222,
|
|
||||||
"Z": 345.3269
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013483,
|
|
||||||
"Position": {
|
|
||||||
"X": -272.26672,
|
|
||||||
"Y": 124.213005,
|
|
||||||
"Z": -23.361572
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true,
|
|
||||||
"AetheryteShortcut": "Coerthas Western Highlands - Falcon's Nest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013485,
|
|
||||||
"Position": {
|
|
||||||
"X": -360.1892,
|
|
||||||
"Y": 101.91492,
|
|
||||||
"Z": -178.79004
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013489,
|
|
||||||
"Position": {
|
|
||||||
"X": -429.099,
|
|
||||||
"Y": 121.59912,
|
|
||||||
"Z": -309.49878
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013494,
|
|
||||||
"Position": {
|
|
||||||
"X": -505.30255,
|
|
||||||
"Y": 120.61159,
|
|
||||||
"Z": -311.39087
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"Fly": true,
|
|
||||||
"Land": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1013494,
|
|
||||||
"Position": {
|
|
||||||
"X": -505.30255,
|
|
||||||
"Y": 120.61159,
|
|
||||||
"Z": -311.39087
|
|
||||||
},
|
|
||||||
"TerritoryId": 397,
|
|
||||||
"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