Compare commits
No commits in common. "master" and "amaljaa" have entirely different histories.
@ -1,5 +1,5 @@
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<Version>4.3</Version>
|
||||
<Version>3.13</Version>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
@ -3,12 +3,16 @@ using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Nodes;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization.Metadata;
|
||||
using Dalamud.Game.ClientState.Objects;
|
||||
using Dalamud.Game.ClientState.Objects.Enums;
|
||||
using Dalamud.Game.ClientState.Objects.Types;
|
||||
using Dalamud.Game.Command;
|
||||
using Dalamud.Plugin.Services;
|
||||
using Lumina.Excel.Sheets;
|
||||
using Lumina.Excel.GeneratedSheets;
|
||||
using Questionable.Model;
|
||||
using Questionable.Model.Gathering;
|
||||
using Questionable.Model.Questing;
|
||||
@ -66,14 +70,14 @@ internal sealed class EditorCommands : IDisposable
|
||||
if (target == null || target.ObjectKind != ObjectKind.GatheringPoint)
|
||||
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)
|
||||
throw new Exception("Invalid gathering point");
|
||||
|
||||
FileInfo targetFile;
|
||||
GatheringRoot root;
|
||||
var locationsInTerritory = _plugin.GetLocationsInTerritory(_clientState.TerritoryType).ToList();
|
||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.Value.GatheringPointBase.RowId);
|
||||
var location = locationsInTerritory.SingleOrDefault(x => x.Id == gatheringPoint.GatheringPointBase.Row);
|
||||
if (location != null)
|
||||
{
|
||||
targetFile = location.File;
|
||||
@ -92,7 +96,7 @@ internal sealed class EditorCommands : IDisposable
|
||||
}
|
||||
else
|
||||
{
|
||||
(targetFile, root) = CreateNewFile(gatheringPoint.Value, target);
|
||||
(targetFile, root) = CreateNewFile(gatheringPoint, target);
|
||||
_chatGui.Print($"Creating new file under {targetFile.FullName}", "qG");
|
||||
}
|
||||
|
||||
@ -170,16 +174,16 @@ internal sealed class EditorCommands : IDisposable
|
||||
?.File.Directory;
|
||||
if (targetFolder == null)
|
||||
{
|
||||
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>().GetRow(_clientState.TerritoryType);
|
||||
var territoryInfo = _dataManager.GetExcelSheet<TerritoryType>()!.GetRow(_clientState.TerritoryType)!;
|
||||
targetFolder = _plugin.PathsDirectory
|
||||
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.RowId])
|
||||
.CreateSubdirectory(territoryInfo.PlaceName.Value.Name.ToString());
|
||||
.CreateSubdirectory(ExpansionData.ExpansionFolders[(EExpansionVersion)territoryInfo.ExVersion.Row])
|
||||
.CreateSubdirectory(territoryInfo.PlaceName.Value!.Name.ToString());
|
||||
}
|
||||
|
||||
FileInfo targetFile =
|
||||
new FileInfo(
|
||||
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
|
||||
{
|
||||
Author = [_configuration.AuthorName],
|
||||
|
@ -1,4 +1,4 @@
|
||||
<Project Sdk="Dalamud.NET.Sdk/11.0.0">
|
||||
<Project Sdk="Dalamud.NET.Sdk/10.0.0">
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\LLib\LLib.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)
|
||||
{ IsOpen = true };
|
||||
_windowSystem.AddWindow(_editorWindow);
|
||||
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.RowId ?? EClassJob.Adventurer;
|
||||
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.Id ?? EClassJob.Adventurer;
|
||||
|
||||
_pluginInterface.GetIpcSubscriber<object>("Questionable.ReloadData")
|
||||
.Subscribe(Reload);
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
using Dalamud.Game.ClientState.Objects;
|
||||
@ -10,7 +11,7 @@ using Dalamud.Interface.Colors;
|
||||
using Dalamud.Interface.Windowing;
|
||||
using Dalamud.Plugin.Services;
|
||||
using ImGuiNET;
|
||||
using Lumina.Excel.Sheets;
|
||||
using Lumina.Excel.GeneratedSheets;
|
||||
using Questionable.Model.Gathering;
|
||||
|
||||
namespace GatheringPathRenderer.Windows;
|
||||
@ -204,12 +205,12 @@ internal sealed class EditorWindow : Window
|
||||
}
|
||||
else if (_target != null)
|
||||
{
|
||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>().GetRowOrDefault(_target.DataId);
|
||||
var gatheringPoint = _dataManager.GetExcelSheet<GatheringPoint>()!.GetRow(_target.DataId);
|
||||
if (gatheringPoint == null)
|
||||
return;
|
||||
|
||||
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)
|
||||
{
|
||||
var targetFile = location.File;
|
||||
@ -233,9 +234,9 @@ internal sealed class EditorWindow : Window
|
||||
}
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
@ -4,9 +4,9 @@
|
||||
"net8.0-windows7.0": {
|
||||
"DalamudPackager": {
|
||||
"type": "Direct",
|
||||
"requested": "[11.0.0, )",
|
||||
"resolved": "11.0.0",
|
||||
"contentHash": "bjT7XUlhIJSmsE/O76b7weUX+evvGQctbQB8aKXt94o+oPWxHpCepxAGMs7Thow3AzCyqWs7cOpp9/2wcgRRQA=="
|
||||
"requested": "[2.1.13, )",
|
||||
"resolved": "2.1.13",
|
||||
"contentHash": "rMN1omGe8536f4xLMvx9NwfvpAc9YFFfeXJ1t4P4PE6Gu8WCIoFliR1sh07hM+bfODmesk/dvMbji7vNI+B/pQ=="
|
||||
},
|
||||
"DotNet.ReproducibleBuilds": {
|
||||
"type": "Direct",
|
||||
@ -87,7 +87,7 @@
|
||||
"llib": {
|
||||
"type": "Project",
|
||||
"dependencies": {
|
||||
"DalamudPackager": "[11.0.0, )"
|
||||
"DalamudPackager": "[2.1.13, )"
|
||||
}
|
||||
},
|
||||
"questionable.model": {
|
||||
|
2
LLib
2
LLib
@ -1 +1 @@
|
||||
Subproject commit e4bbc05ede6f6f01e7028b24614ed8cb333e909c
|
||||
Subproject commit fde09c705b648f03c287814191a554f0a4b92cc4
|
@ -97,9 +97,6 @@ internal static class QuestStepExtensions
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.Status), step.Status, emptyStep.Status)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.TargetClass), step.TargetClass,
|
||||
emptyStep.TargetClass)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.EnemySpawnType), step.EnemySpawnType,
|
||||
emptyStep.EnemySpawnType)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"$schema": "https://git.carvel.li/plogon_enjoyer/Questionable/raw/branch/temp/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
|
@ -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,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
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -62,16 +62,6 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -80,7 +70,8 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -58,16 +58,6 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -76,7 +66,8 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -111,16 +102,6 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -129,7 +110,8 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -98,17 +98,6 @@
|
||||
{
|
||||
"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": {
|
||||
@ -117,7 +106,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -62,17 +62,6 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -81,7 +70,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -91,17 +91,6 @@
|
||||
{
|
||||
"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": {
|
||||
@ -110,7 +99,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -91,17 +91,6 @@
|
||||
{
|
||||
"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": {
|
||||
@ -110,7 +99,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -73,17 +73,6 @@
|
||||
{
|
||||
"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": {
|
||||
@ -92,7 +81,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -58,17 +58,6 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -77,7 +66,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -88,13 +88,14 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
"X": 59.511234,
|
||||
"Y": -48,
|
||||
"Z": -171.35385
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
|
@ -148,14 +148,14 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
"X": 59.511234,
|
||||
"Y": -48,
|
||||
"Z": -171.35385
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
"Land": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
|
@ -78,17 +78,6 @@
|
||||
{
|
||||
"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": {
|
||||
@ -97,7 +86,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -55,16 +55,6 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -73,7 +63,8 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -91,17 +91,6 @@
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -110,7 +99,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"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,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -119,7 +109,8 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -100,16 +100,6 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -118,7 +108,8 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -73,17 +73,6 @@
|
||||
{
|
||||
"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": {
|
||||
@ -92,7 +81,9 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -101,16 +101,6 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 58.39701,
|
||||
"Y": -48.000008,
|
||||
"Z": -172.36507
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
@ -119,7 +109,8 @@
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -1,74 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 314.92435,
|
||||
"Y": -78.61959,
|
||||
"Z": -226.5322
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"RestartNavigationIfCancelled": false,
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1024307,
|
||||
"Position": {
|
||||
"X": 29.617676,
|
||||
"Y": -86.167725,
|
||||
"Z": -26.962769
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 392.59683,
|
||||
"Y": -119.589325,
|
||||
"Z": -234.30063
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
},
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,135 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Ruby Sea - Onokoro"
|
||||
},
|
||||
{
|
||||
"DataId": 2009114,
|
||||
"Position": {
|
||||
"X": 558.5259,
|
||||
"Y": -0.015319824,
|
||||
"Z": -516.92993
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [1, 2], null]
|
||||
},
|
||||
{
|
||||
"DataId": 2009116,
|
||||
"Position": {
|
||||
"X": 558.5259,
|
||||
"Y": -0.015319824,
|
||||
"Z": -516.92993
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [8241],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [3, 4, 5], null]
|
||||
},
|
||||
{
|
||||
"DataId": 2009113,
|
||||
"Position": {
|
||||
"X": 633.1731,
|
||||
"Y": -0.015319824,
|
||||
"Z": -497.79507
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [18, 20], null]
|
||||
},
|
||||
{
|
||||
"DataId": 2009111,
|
||||
"Position": {
|
||||
"X": 633.1731,
|
||||
"Y": -0.015319824,
|
||||
"Z": -497.79507
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [8241],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [17, 19, 21], null]
|
||||
},
|
||||
{
|
||||
"DataId": 2009110,
|
||||
"Position": {
|
||||
"X": 694.08704,
|
||||
"Y": -0.015319824,
|
||||
"Z": -611.017
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [33, 36, 37], null]
|
||||
},
|
||||
{
|
||||
"DataId": 2009117,
|
||||
"Position": {
|
||||
"X": 694.08704,
|
||||
"Y": -0.015319824,
|
||||
"Z": -611.017
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [8241],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [34, 35], null]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 392.59683,
|
||||
"Y": -119.589325,
|
||||
"Z": -234.30063
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
},
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,129 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Ruby Sea - Onokoro"
|
||||
},
|
||||
{
|
||||
"DataId": 1024310,
|
||||
"Position": {
|
||||
"X": -795.0103,
|
||||
"Y": 21.373795,
|
||||
"Z": -466.20892
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [17], null]
|
||||
},
|
||||
{
|
||||
"DataId": 1024311,
|
||||
"Position": {
|
||||
"X": -750.39294,
|
||||
"Y": 1.6679686,
|
||||
"Z": -479.33167
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [18, 33, 34], null]
|
||||
},
|
||||
{
|
||||
"DataId": 1024312,
|
||||
"Position": {
|
||||
"X": -792.08057,
|
||||
"Y": 8.039127,
|
||||
"Z": -444.419
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [17, 18], null]
|
||||
},
|
||||
{
|
||||
"DataId": 1024313,
|
||||
"Position": {
|
||||
"X": -764.12604,
|
||||
"Y": 4.763445,
|
||||
"Z": -441.51984
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [33, 34], null]
|
||||
},
|
||||
{
|
||||
"DataId": 1024314,
|
||||
"Position": {
|
||||
"X": -784.48157,
|
||||
"Y": 7.7091823,
|
||||
"Z": -456.9925
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [17, 33], null]
|
||||
},
|
||||
{
|
||||
"DataId": 1024315,
|
||||
"Position": {
|
||||
"X": -797.4823,
|
||||
"Y": 8.045045,
|
||||
"Z": -417.56317
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, null, null, [18, 34], null]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 392.59683,
|
||||
"Y": -119.589325,
|
||||
"Z": -234.30063
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
},
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -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": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Ruby Sea - Onokoro"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -848.8846,
|
||||
"Y": 36.0507,
|
||||
"Z": 300.73306
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2002422,
|
||||
"GroundTarget": true,
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -842.2923,
|
||||
"Y": 36.053864,
|
||||
"Z": 319.94763
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2002422,
|
||||
"GroundTarget": true,
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -873.57074,
|
||||
"Y": 36.01944,
|
||||
"Z": 318.8049
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2002422,
|
||||
"GroundTarget": true,
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 391.50903,
|
||||
"Y": -119.58932,
|
||||
"Z": -236.18898
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
},
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,171 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 317.37,
|
||||
"Y": -83.39401,
|
||||
"Z": -227.2903
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"RestartNavigationIfCancelled": false
|
||||
},
|
||||
{
|
||||
"DataId": 2009216,
|
||||
"Position": {
|
||||
"X": -154.40613,
|
||||
"Y": -179.3393,
|
||||
"Z": 187.97583
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [2], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009217,
|
||||
"Position": {
|
||||
"X": -245.80762,
|
||||
"Y": -194.50684,
|
||||
"Z": 219.98926
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [2], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009218,
|
||||
"Position": {
|
||||
"X": -162.8291,
|
||||
"Y": -192.52313,
|
||||
"Z": 255.6344
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [3], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009146,
|
||||
"Position": {
|
||||
"X": -154.40613,
|
||||
"Y": -179.3393,
|
||||
"Z": 187.97583
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [1], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009147,
|
||||
"Position": {
|
||||
"X": -154.40613,
|
||||
"Y": -179.3393,
|
||||
"Z": 187.97583
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [3], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009148,
|
||||
"Position": {
|
||||
"X": -245.80762,
|
||||
"Y": -194.50684,
|
||||
"Z": 219.98926
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [3], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009149,
|
||||
"Position": {
|
||||
"X": -245.80762,
|
||||
"Y": -194.50684,
|
||||
"Z": 219.98926
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [1], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009150,
|
||||
"Position": {
|
||||
"X": -162.8291,
|
||||
"Y": -192.52313,
|
||||
"Z": 255.6344
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [2], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2009151,
|
||||
"Position": {
|
||||
"X": -162.8291,
|
||||
"Y": -192.52313,
|
||||
"Z": 255.6344
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [1], null, null, null],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 392.55026,
|
||||
"Y": -119.58932,
|
||||
"Z": -234.19606
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
},
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,129 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Ruby Sea - Onokoro"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -727.74854,
|
||||
"Y": 4.2885633,
|
||||
"Z": 188.58618
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [8245, 8246],
|
||||
"RequiredQuestVariables": [null, null, [16], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1024320,
|
||||
"Position": {
|
||||
"X": -727.74854,
|
||||
"Y": 4.2885633,
|
||||
"Z": 188.58618
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [16], null, null, null]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -869.9321,
|
||||
"Y": 36.052956,
|
||||
"Z": 280.29297
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [8247, 8248, 8249],
|
||||
"RequiredQuestVariables": [null, null, [32], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1024322,
|
||||
"Position": {
|
||||
"X": -869.9321,
|
||||
"Y": 36.052956,
|
||||
"Z": 280.29297
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [32], null, null, null]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -607.43207,
|
||||
"Y": 7.033699,
|
||||
"Z": 184.71848
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [8244, 8246],
|
||||
"RequiredQuestVariables": [null, null, [48], null, null, null],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1024318,
|
||||
"Position": {
|
||||
"X": -607.7821,
|
||||
"Y": 7.029549,
|
||||
"Z": 184.83252
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [null, null, [48], null, null, null]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 392.55026,
|
||||
"Y": -119.58932,
|
||||
"Z": -234.19606
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
},
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,105 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024215,
|
||||
"Position": {
|
||||
"X": 400.07617,
|
||||
"Y": -119.589325,
|
||||
"Z": -247.54712
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024260,
|
||||
"Position": {
|
||||
"X": -131.9143,
|
||||
"Y": -4.999999,
|
||||
"Z": 181.75012
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kugane",
|
||||
"AethernetShortcut": ["[Kugane] Aetheryte Plaza", "[Kugane] Pier #1"]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 246.58658,
|
||||
"Y": 6.193447,
|
||||
"Z": 651.3461
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [8244, 8246],
|
||||
"Fly": true,
|
||||
"AethernetShortcut": ["[Kugane] Pier #1", "[Kugane] The Ruby Price"]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024264,
|
||||
"Position": {
|
||||
"X": 246.90613,
|
||||
"Y": 6.054259,
|
||||
"Z": 649.2561
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024267,
|
||||
"Position": {
|
||||
"X": -130.57153,
|
||||
"Y": -4.999999,
|
||||
"Z": 183.36768
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kugane",
|
||||
"AethernetShortcut": ["[Kugane] Aetheryte Plaza", "[Kugane] Pier #1"]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024215,
|
||||
"Position": {
|
||||
"X": 400.07617,
|
||||
"Y": -119.589325,
|
||||
"Z": -247.54712
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 886,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 886,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 886,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 886,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 820,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 820,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -55,11 +55,7 @@
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
14044
|
||||
],
|
||||
"CombatItemUse": {
|
||||
"ItemId": 2003273,
|
||||
"Condition": "Incapacitated"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,70 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1036044,
|
||||
"Position": {
|
||||
"X": 652.7046,
|
||||
"Y": 297.47797,
|
||||
"Z": -171.03839
|
||||
},
|
||||
"TerritoryId": 814,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Kholusia - Tomra",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_LUCKTA523_04052_Q1_000_000",
|
||||
"Answer": "TEXT_LUCKTA523_04052_A1_000_001"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 552.4747,
|
||||
"Y": 294.7846,
|
||||
"Z": -137.54712
|
||||
},
|
||||
"TerritoryId": 814,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [
|
||||
10391
|
||||
],
|
||||
"CombatItemUse": {
|
||||
"ItemId": 2003071,
|
||||
"Condition": "Health%",
|
||||
"Value": 30
|
||||
},
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1036044,
|
||||
"Position": {
|
||||
"X": 652.7046,
|
||||
"Y": 297.47797,
|
||||
"Z": -171.03839
|
||||
},
|
||||
"TerritoryId": 814,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 962,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 962,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -1,84 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1044547,
|
||||
"Position": {
|
||||
"X": -241.68768,
|
||||
"Y": 51.058994,
|
||||
"Z": 620.8744
|
||||
},
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Il Mheg - Lydha Lran",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBCTS681_04716_Q1_000_003",
|
||||
"Answer": "TEXT_SUBCTS681_04716_A1_000_001"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1044560,
|
||||
"Position": {
|
||||
"X": -241.68768,
|
||||
"Y": 51.058994,
|
||||
"Z": 620.8744
|
||||
},
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2013247,
|
||||
"Position": {
|
||||
"X": 428.15283,
|
||||
"Y": 3.2196045,
|
||||
"Z": 23.483582
|
||||
},
|
||||
"TerritoryId": 817,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Rak'tika - Fanow",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1044560,
|
||||
"Position": {
|
||||
"X": -241.68768,
|
||||
"Y": 51.058994,
|
||||
"Z": 620.8744
|
||||
},
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Il Mheg - Lydha Lran",
|
||||
"Fly": true,
|
||||
"NextQuestId": 4717
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,44 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1044550,
|
||||
"Position": {
|
||||
"X": -239.70398,
|
||||
"Y": 51.05899,
|
||||
"Z": 622.2477
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Il Mheg - Lydha Lran",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1044562,
|
||||
"Position": {
|
||||
"X": -294.97223,
|
||||
"Y": 67.46317,
|
||||
"Z": 603.6621
|
||||
},
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -5,11 +5,6 @@
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 956,
|
||||
"InteractionType": "SwitchClass",
|
||||
"TargetClass": "Blue Mage"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 956,
|
||||
"InteractionType": "Gather",
|
||||
|
@ -21,17 +21,6 @@
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 807.9048,
|
||||
"Y": 152.2857,
|
||||
"Z": -243.60707
|
||||
},
|
||||
"TerritoryId": 961,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Elpis - Anagnorisis",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2012293,
|
||||
"Position": {
|
||||
@ -41,6 +30,8 @@
|
||||
},
|
||||
"TerritoryId": 961,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Elpis - Anagnorisis",
|
||||
"Fly": true,
|
||||
"TargetTerritoryId": 1025
|
||||
},
|
||||
{
|
||||
@ -129,8 +120,7 @@
|
||||
"Z": 301.9912
|
||||
},
|
||||
"TerritoryId": 956,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 5252
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,126 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1048609,
|
||||
"Position": {
|
||||
"X": -10.696594,
|
||||
"Y": 2.4000525,
|
||||
"Z": -31.174255
|
||||
},
|
||||
"TerritoryId": 962,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Old Sharlayan",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1045332,
|
||||
"Position": {
|
||||
"X": -639.704,
|
||||
"Y": -27.177149,
|
||||
"Z": 301.9912
|
||||
},
|
||||
"TerritoryId": 956,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Labyrinthos - Aporia"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 807.9048,
|
||||
"Y": 152.2857,
|
||||
"Z": -243.60707
|
||||
},
|
||||
"TerritoryId": 961,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Elpis - Anagnorisis",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2012293,
|
||||
"Position": {
|
||||
"X": 809.9336,
|
||||
"Y": 151.81189,
|
||||
"Z": -243.42719
|
||||
},
|
||||
"TerritoryId": 961,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 1025
|
||||
},
|
||||
{
|
||||
"DataId": 1048610,
|
||||
"Position": {
|
||||
"X": 93.94971,
|
||||
"Y": -1E-11,
|
||||
"Z": 61.020752
|
||||
},
|
||||
"TerritoryId": 1025,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014542,
|
||||
"Position": {
|
||||
"X": 104.57007,
|
||||
"Y": -0.015319824,
|
||||
"Z": 46.25
|
||||
},
|
||||
"TerritoryId": 1025,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1048610,
|
||||
"Position": {
|
||||
"X": 93.94971,
|
||||
"Y": -1E-11,
|
||||
"Z": 61.020752
|
||||
},
|
||||
"TerritoryId": 1025,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1045332,
|
||||
"Position": {
|
||||
"X": -639.704,
|
||||
"Y": -27.177149,
|
||||
"Z": 301.9912
|
||||
},
|
||||
"TerritoryId": 956,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Labyrinthos - Aporia"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1037575,
|
||||
"Position": {
|
||||
"X": 6.454529,
|
||||
"Y": -31.530432,
|
||||
"Z": -78.14148
|
||||
},
|
||||
"TerritoryId": 956,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 379.89767,
|
||||
"Y": 68.15723,
|
||||
"Z": -169.26231
|
||||
},
|
||||
"TerritoryId": 956,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [
|
||||
13415
|
||||
],
|
||||
"CombatItemUse": {
|
||||
"ItemId": 2003316,
|
||||
"Condition": "Health%",
|
||||
"Value": 50
|
||||
},
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1037575,
|
||||
"Position": {
|
||||
"X": 6.454529,
|
||||
"Y": -31.530432,
|
||||
"Z": -78.14148
|
||||
},
|
||||
"TerritoryId": 956,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Labyrinthos - Sharlayan Hamlet",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -42,8 +42,7 @@
|
||||
"Z": 628.7034
|
||||
},
|
||||
"TerritoryId": 1192,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2013905,
|
||||
|
@ -150,15 +150,6 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 415.27682,
|
||||
"Y": 122.535,
|
||||
"Z": 564.56915
|
||||
},
|
||||
"TerritoryId": 1187,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1048730,
|
||||
"Position": {
|
||||
|
@ -1,102 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051950,
|
||||
"Position": {
|
||||
"X": -15.335327,
|
||||
"Y": -5.9003114E-09,
|
||||
"Z": 31.3573
|
||||
},
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Tuliyollal",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052166,
|
||||
"Position": {
|
||||
"X": 567.6814,
|
||||
"Y": -131.41925,
|
||||
"Z": 610.1013
|
||||
},
|
||||
"TerritoryId": 1189,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Yak T'el - Mamook",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014454,
|
||||
"Position": {
|
||||
"X": -525.8412,
|
||||
"Y": -158.37347,
|
||||
"Z": 541.46643
|
||||
},
|
||||
"TerritoryId": 1189,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051954,
|
||||
"Position": {
|
||||
"X": -531.57855,
|
||||
"Y": -152.53433,
|
||||
"Z": 645.777
|
||||
},
|
||||
"TerritoryId": 1189,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 1189,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 1015
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051956,
|
||||
"Position": {
|
||||
"X": 1.8463135,
|
||||
"Y": 41.99997,
|
||||
"Z": -2.456726
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 5234
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,153 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051957,
|
||||
"Position": {
|
||||
"X": -1.6327515,
|
||||
"Y": 41.999977,
|
||||
"Z": -0.7172241
|
||||
},
|
||||
"StopDistance": 6,
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051957,
|
||||
"Position": {
|
||||
"X": -1.6327515,
|
||||
"Y": 41.999977,
|
||||
"Z": -0.7172241
|
||||
},
|
||||
"StopDistance": 6,
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051959,
|
||||
"Position": {
|
||||
"X": -15.854187,
|
||||
"Y": 41.99999,
|
||||
"Z": -4.6845703
|
||||
},
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1051961,
|
||||
"Position": {
|
||||
"X": -13.931519,
|
||||
"Y": 41.999992,
|
||||
"Z": -49.027283
|
||||
},
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1051960,
|
||||
"Position": {
|
||||
"X": 15.457336,
|
||||
"Y": 43.499985,
|
||||
"Z": -137.25494
|
||||
},
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014455,
|
||||
"Position": {
|
||||
"X": 71.213745,
|
||||
"Y": 43.411865,
|
||||
"Z": -84.00098
|
||||
},
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_KINGEA102_05234_Q2_000_000",
|
||||
"Answer": "TEXT_KINGEA102_05234_A2_000_001"
|
||||
}
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051958,
|
||||
"Position": {
|
||||
"X": 1.8463135,
|
||||
"Y": 41.99997,
|
||||
"Z": -2.456726
|
||||
},
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051965,
|
||||
"Position": {
|
||||
"X": 1.8463135,
|
||||
"Y": 41.99997,
|
||||
"Z": -2.456726
|
||||
},
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 5235
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,111 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051964,
|
||||
"Position": {
|
||||
"X": 0.56451416,
|
||||
"Y": 41.999973,
|
||||
"Z": -5.2339478
|
||||
},
|
||||
"TerritoryId": 1264,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051967,
|
||||
"Position": {
|
||||
"X": 564.72107,
|
||||
"Y": -131.41925,
|
||||
"Z": 609.21643
|
||||
},
|
||||
"TerritoryId": 1189,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Yak T'el - Mamook",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014464,
|
||||
"Position": {
|
||||
"X": -412.2835,
|
||||
"Y": 2.9754639,
|
||||
"Z": -57.846985
|
||||
},
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Tuliyollal",
|
||||
"AethernetShortcut": [
|
||||
"[Tuliyollal] Aetheryte Plaza",
|
||||
"[Tuliyollal] Dirigible Landing"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051971,
|
||||
"Position": {
|
||||
"X": -414.69446,
|
||||
"Y": 3,
|
||||
"Z": -55.10034
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051971,
|
||||
"Position": {
|
||||
"X": 93.53023,
|
||||
"Y": -14,
|
||||
"Z": 50.456287
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Tuliyollal] Dirigible Landing",
|
||||
"[Tuliyollal] Aetheryte Plaza"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051972,
|
||||
"Position": {
|
||||
"X": 123.79639,
|
||||
"Y": -14,
|
||||
"Z": 27.115234
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 5236
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,194 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051974,
|
||||
"Position": {
|
||||
"X": 121.782104,
|
||||
"Y": -14,
|
||||
"Z": 29.587158
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052148,
|
||||
"Position": {
|
||||
"X": -527.245,
|
||||
"Y": -152.47649,
|
||||
"Z": 663.6301
|
||||
},
|
||||
"TerritoryId": 1189,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Yak T'el - Mamook",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014450,
|
||||
"Position": {
|
||||
"X": -528.37415,
|
||||
"Y": -152.20874,
|
||||
"Z": 671.13745
|
||||
},
|
||||
"TerritoryId": 1189,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 1265,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"InTerritory": [
|
||||
1265
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1052131,
|
||||
"Position": {
|
||||
"X": -23.849854,
|
||||
"Y": 43,
|
||||
"Z": -25.192688
|
||||
},
|
||||
"TerritoryId": 1265,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052132,
|
||||
"Position": {
|
||||
"X": -1.1139526,
|
||||
"Y": 41.999992,
|
||||
"Z": -110.15497
|
||||
},
|
||||
"TerritoryId": 1265,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052139,
|
||||
"Position": {
|
||||
"X": 11.459534,
|
||||
"Y": 41.99999,
|
||||
"Z": -50.644714
|
||||
},
|
||||
"TerritoryId": 1265,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051948,
|
||||
"Position": {
|
||||
"X": 11.36792,
|
||||
"Y": 41.99999,
|
||||
"Z": -50.55316
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1265,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_KINGEA104_05236_Q1_000_000",
|
||||
"Yes": true
|
||||
},
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_KINGEA104_05236_Q2_000_000",
|
||||
"Yes": true
|
||||
},
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_KINGEA104_05236_Q3_000_000",
|
||||
"Answer": "TEXT_KINGEA104_05236_A3_000_002"
|
||||
},
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_KINGEA104_05236_Q5_000_000",
|
||||
"Answer": "TEXT_KINGEA104_05236_A5_000_002"
|
||||
},
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_KINGEA104_05236_Q7_000_000",
|
||||
"Answer": "TEXT_KINGEA104_05236_A7_000_001"
|
||||
}
|
||||
],
|
||||
"PointMenuChoices": [
|
||||
0
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052163,
|
||||
"Position": {
|
||||
"X": 5.9662476,
|
||||
"Y": 41.999992,
|
||||
"Z": -47.226746
|
||||
},
|
||||
"TerritoryId": 1265,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052145,
|
||||
"Position": {
|
||||
"X": 139.45215,
|
||||
"Y": 42,
|
||||
"Z": -354.84857
|
||||
},
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Tuliyollal",
|
||||
"AethernetShortcut": [
|
||||
"[Tuliyollal] Aetheryte Plaza",
|
||||
"[Tuliyollal] Brightploom Post"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,96 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052301,
|
||||
"Position": {
|
||||
"X": 219.98926,
|
||||
"Y": 10.289447,
|
||||
"Z": -522.9115
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1052300,
|
||||
"Position": {
|
||||
"X": 208.48401,
|
||||
"Y": 10.257622,
|
||||
"Z": -588.98303
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1052302,
|
||||
"Position": {
|
||||
"X": 171.03833,
|
||||
"Y": 7.17552,
|
||||
"Z": -602.6246
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,73 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052303,
|
||||
"Position": {
|
||||
"X": -191.66864,
|
||||
"Y": 6.5458784,
|
||||
"Z": -498.0392
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,151 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014482,
|
||||
"Position": {
|
||||
"X": 718.6847,
|
||||
"Y": 6.1188354,
|
||||
"Z": -105.60773
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18172
|
||||
],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
16
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
],
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2014481,
|
||||
"Position": {
|
||||
"X": 581.78064,
|
||||
"Y": 9.018005,
|
||||
"Z": -180.49902
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18172
|
||||
],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
32
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014480,
|
||||
"Position": {
|
||||
"X": 531.15125,
|
||||
"Y": 12.527649,
|
||||
"Z": -99.321045
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18172
|
||||
],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
48
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052304,
|
||||
"Position": {
|
||||
"X": 670.344,
|
||||
"Y": 26.329378,
|
||||
"Z": -531.2734
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,148 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014484,
|
||||
"Position": {
|
||||
"X": 847.34875,
|
||||
"Y": 15.8845825,
|
||||
"Z": -192.67572
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2003717,
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
],
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2014485,
|
||||
"Position": {
|
||||
"X": 855.2223,
|
||||
"Y": 15.945618,
|
||||
"Z": -208.72821
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2003717,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014483,
|
||||
"Position": {
|
||||
"X": 868.1315,
|
||||
"Y": 15.335266,
|
||||
"Z": -203.96735
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2003717,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
0 xx 0 0 0 0 | 2014483 2014484 2014485
|
||||
48 | x x x
|
||||
|
@ -1,132 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052305,
|
||||
"Position": {
|
||||
"X": 474.20447,
|
||||
"Y": 9.739183,
|
||||
"Z": -207.90424
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014486,
|
||||
"Position": {
|
||||
"X": 471.88513,
|
||||
"Y": 9.933594,
|
||||
"Z": -206.46985
|
||||
},
|
||||
"StopDistance": 4.5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052306,
|
||||
"Position": {
|
||||
"X": 791.37854,
|
||||
"Y": 14.39521,
|
||||
"Z": -206.53088
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,134 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -165.49648,
|
||||
"Y": 8.736965,
|
||||
"Z": -401.72836
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Locked"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1052307,
|
||||
"Position": {
|
||||
"X": -111.0094,
|
||||
"Y": 1.6987718,
|
||||
"Z": -111.0094
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
[
|
||||
1
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_BANPEL107_05205_Q1_000_000",
|
||||
"Answer": "TEXT_BANPEL107_05205_A1_000_002"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052308,
|
||||
"Position": {
|
||||
"X": -152.7276,
|
||||
"Y": 3.6225784,
|
||||
"Z": -349.87415
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
[
|
||||
2
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_BANPEL107_05205_Q2_000_000",
|
||||
"Answer": "TEXT_BANPEL107_05205_A2_000_003"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,129 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014540,
|
||||
"Position": {
|
||||
"X": -24.887512,
|
||||
"Y": 21.774597,
|
||||
"Z": -88.76172
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
[
|
||||
1
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014487,
|
||||
"Position": {
|
||||
"X": -45.426086,
|
||||
"Y": 21.469421,
|
||||
"Z": -80.27777
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
[
|
||||
2
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014539,
|
||||
"Position": {
|
||||
"X": -9.2317505,
|
||||
"Y": 21.469421,
|
||||
"Z": -74.418274
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
[
|
||||
3
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052309,
|
||||
"Position": {
|
||||
"X": -100.35864,
|
||||
"Y": 4.7510896,
|
||||
"Z": -304.3412
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052310,
|
||||
"Position": {
|
||||
"X": -103.01367,
|
||||
"Y": 4.70791,
|
||||
"Z": -305.40936
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,118 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052319,
|
||||
"Position": {
|
||||
"X": -185.07672,
|
||||
"Y": 6.5185943,
|
||||
"Z": -460.04425
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052318,
|
||||
"Position": {
|
||||
"X": -217.12067,
|
||||
"Y": 6.4016876,
|
||||
"Z": -474.60138
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052320,
|
||||
"Position": {
|
||||
"X": -108.659546,
|
||||
"Y": 9.773233,
|
||||
"Z": -530.2052
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,133 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052321,
|
||||
"Position": {
|
||||
"X": 103.227295,
|
||||
"Y": 0.7218611,
|
||||
"Z": -334.37097
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014488,
|
||||
"Position": {
|
||||
"X": 103.74609,
|
||||
"Y": -0.015319824,
|
||||
"Z": -339.13184
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014536,
|
||||
"Position": {
|
||||
"X": 106.21802,
|
||||
"Y": -0.015319824,
|
||||
"Z": -347.097
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014537,
|
||||
"Position": {
|
||||
"X": 112.93201,
|
||||
"Y": -0.015319824,
|
||||
"Z": -341.5122
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,185 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052323,
|
||||
"Position": {
|
||||
"X": 495.75024,
|
||||
"Y": 10.160157,
|
||||
"Z": -242.99994
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014491,
|
||||
"Position": {
|
||||
"X": 504.78357,
|
||||
"Y": 15.396301,
|
||||
"Z": -283.83307
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18173
|
||||
],
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 1
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014489,
|
||||
"Position": {
|
||||
"X": 522.301,
|
||||
"Y": 12.191956,
|
||||
"Z": -273.97577
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18173
|
||||
],
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 2
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014490,
|
||||
"Position": {
|
||||
"X": 485.6183,
|
||||
"Y": 10.8185425,
|
||||
"Z": -281.7884
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18173
|
||||
],
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 3
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052323,
|
||||
"Position": {
|
||||
"X": 495.75024,
|
||||
"Y": 10.160157,
|
||||
"Z": -242.99994
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,102 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014492,
|
||||
"Position": {
|
||||
"X": -448.50842,
|
||||
"Y": 0.9613037,
|
||||
"Z": -113.69501
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2003721,
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014493,
|
||||
"Position": {
|
||||
"X": -464.0421,
|
||||
"Y": 0.62561035,
|
||||
"Z": -119.95117
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2003721,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,131 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014494,
|
||||
"Position": {
|
||||
"X": 538.38403,
|
||||
"Y": 15.701477,
|
||||
"Z": -10.147278
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
],
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2014495,
|
||||
"Position": {
|
||||
"X": 528.77075,
|
||||
"Y": 15.6710205,
|
||||
"Z": -2.456726
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014496,
|
||||
"Position": {
|
||||
"X": 511.7417,
|
||||
"Y": 12.954895,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,144 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014497,
|
||||
"Position": {
|
||||
"X": -130.7851,
|
||||
"Y": 114.39685,
|
||||
"Z": 240.31421
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18174
|
||||
],
|
||||
"AetheryteShortcut": "Kozama'uka - Earthenshire",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 1
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014498,
|
||||
"Position": {
|
||||
"X": -56.565247,
|
||||
"Y": 111.77234,
|
||||
"Z": 172.62524
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18174
|
||||
],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 2
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014499,
|
||||
"Position": {
|
||||
"X": -84.18408,
|
||||
"Y": 111.436646,
|
||||
"Z": 268.05518
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18174
|
||||
],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 3
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,125 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052324,
|
||||
"Position": {
|
||||
"X": -248.18805,
|
||||
"Y": 110.17465,
|
||||
"Z": 189.01343
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Earthenshire",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052326,
|
||||
"Position": {
|
||||
"X": -304.61584,
|
||||
"Y": 110.20639,
|
||||
"Z": 725.39856
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 2
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052435,
|
||||
"Position": {
|
||||
"X": 505.76025,
|
||||
"Y": 115.10293,
|
||||
"Z": 205.7373
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Many Fires",
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 1
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,150 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051798,
|
||||
"Position": {
|
||||
"X": 897.734,
|
||||
"Y": 6.8223433,
|
||||
"Z": -285.1759
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052328,
|
||||
"Position": {
|
||||
"X": 171.6792,
|
||||
"Y": 16.762953,
|
||||
"Z": -112.44379
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Bosom Brook",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 1
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052329,
|
||||
"Position": {
|
||||
"X": 216.7544,
|
||||
"Y": 16.31888,
|
||||
"Z": -99.687195
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Bosom Brook",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 2
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052327,
|
||||
"Position": {
|
||||
"X": 186.38892,
|
||||
"Y": 21.742897,
|
||||
"Z": -74.47931
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Bosom Brook",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 3
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,145 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014500,
|
||||
"Position": {
|
||||
"X": -217.15118,
|
||||
"Y": 109.57495,
|
||||
"Z": 562.005
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18175
|
||||
],
|
||||
"AetheryteShortcut": "Kozama'uka - Earthenshire",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 1
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
"DataId": 2014501,
|
||||
"Position": {
|
||||
"X": -171.95392,
|
||||
"Y": 109.57495,
|
||||
"Z": 652.09424
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18175
|
||||
],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 2
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014502,
|
||||
"Position": {
|
||||
"X": -126.756714,
|
||||
"Y": 109.57495,
|
||||
"Z": 765.68225
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18175
|
||||
],
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[
|
||||
{
|
||||
"High": 3
|
||||
}
|
||||
],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,74 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1048848,
|
||||
"Position": {
|
||||
"X": 621.51514,
|
||||
"Y": 119.49004,
|
||||
"Z": 175.00574
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Many Fires",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,112 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 971.48047,
|
||||
"Y": 7.1923084,
|
||||
"Z": -254.86214
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"MaximumDistance": 300
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1052331,
|
||||
"Position": {
|
||||
"X": 973.84595,
|
||||
"Y": 7.192305,
|
||||
"Z": -254.87152
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052332,
|
||||
"Position": {
|
||||
"X": 978.027,
|
||||
"Y": 7.1869507,
|
||||
"Z": -257.3739
|
||||
},
|
||||
"StopDistance": 8,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,135 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052333,
|
||||
"Position": {
|
||||
"X": 775.1736,
|
||||
"Y": 12.871736,
|
||||
"Z": -196.0022
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052335,
|
||||
"Position": {
|
||||
"X": 867.76526,
|
||||
"Y": 14.402381,
|
||||
"Z": -171.31305
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1052334,
|
||||
"Position": {
|
||||
"X": 864.5609,
|
||||
"Y": 15.056413,
|
||||
"Z": -256.27533
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052336,
|
||||
"Position": {
|
||||
"X": 838.4375,
|
||||
"Y": 14.301746,
|
||||
"Z": -222.06458
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 770.70636,
|
||||
"Y": 12.846572,
|
||||
"Z": -260.59436
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
},
|
||||
{
|
||||
"DataId": 1051711,
|
||||
"Position": {
|
||||
"X": 770.7179,
|
||||
"Y": 12.84657,
|
||||
"Z": -263.99634
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,207 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051712,
|
||||
"Position": {
|
||||
"X": 12.344482,
|
||||
"Y": -14,
|
||||
"Z": 96.17761
|
||||
},
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Tuliyollal",
|
||||
"AethernetShortcut": [
|
||||
"[Tuliyollal] Aetheryte Plaza",
|
||||
"[Tuliyollal] Bayside Bevy Marketplace"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014421,
|
||||
"Position": {
|
||||
"X": -65.72064,
|
||||
"Y": 2.39563,
|
||||
"Z": -400.22894
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051713,
|
||||
"Position": {
|
||||
"X": -67.88745,
|
||||
"Y": 2.4000018,
|
||||
"Z": -399.64905
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051713,
|
||||
"Position": {
|
||||
"X": -67.88745,
|
||||
"Y": 2.4000018,
|
||||
"Z": -399.64905
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051718,
|
||||
"Position": {
|
||||
"X": 62.210938,
|
||||
"Y": 0.7218611,
|
||||
"Z": -333.94366
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_BANPEL001_05193_Q5_000_001",
|
||||
"Answer": "TEXT_BANPEL001_05193_A5_000_002"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051719,
|
||||
"Position": {
|
||||
"X": -42.923706,
|
||||
"Y": 21.48239,
|
||||
"Z": -88.76172
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_BANPEL001_05193_Q6_000_001",
|
||||
"Answer": "TEXT_BANPEL001_05193_A6_000_003"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051720,
|
||||
"Position": {
|
||||
"X": -183.45923,
|
||||
"Y": 0.39999998,
|
||||
"Z": -73.74689
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_BANPEL001_05193_Q7_000_001",
|
||||
"Answer": "TEXT_BANPEL001_05193_A7_000_001"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051859,
|
||||
"Position": {
|
||||
"X": -73.411194,
|
||||
"Y": 2.4000018,
|
||||
"Z": -398.61145
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 780.3438,
|
||||
"Y": 13.823656,
|
||||
"Z": -238.32625
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"AetheryteUnlocked": "Kozama'uka - Dock Poga"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Kozama'uka - Dock Poga",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"AetheryteUnlocked": "Kozama'uka - Dock Poga"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1051721,
|
||||
"Position": {
|
||||
"X": 737.5753,
|
||||
"Y": 8.14118,
|
||||
"Z": -278.0957
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,212 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 809.655,
|
||||
"Y": 17.004526,
|
||||
"Z": -257.89868
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1051710,
|
||||
"Position": {
|
||||
"X": 822.629,
|
||||
"Y": 17.102613,
|
||||
"Z": -263.20288
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 809.655,
|
||||
"Y": 17.004526,
|
||||
"Z": -257.89868
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2014423,
|
||||
"Position": {
|
||||
"X": 727.0161,
|
||||
"Y": 8.010925,
|
||||
"Z": -284.3214
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051722,
|
||||
"Position": {
|
||||
"X": 798.3672,
|
||||
"Y": 13.076807,
|
||||
"Z": -246.69269
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014424,
|
||||
"Position": {
|
||||
"X": -90.62335,
|
||||
"Y": 9.750427,
|
||||
"Z": -515.31244
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014425,
|
||||
"Position": {
|
||||
"X": 55.74109,
|
||||
"Y": 21.896606,
|
||||
"Z": -75.63898
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014599,
|
||||
"Position": {
|
||||
"X": -300.1908,
|
||||
"Y": 0.38146973,
|
||||
"Z": -66.78876
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014600,
|
||||
"Position": {
|
||||
"X": -338.4604,
|
||||
"Y": 0.38146973,
|
||||
"Z": -88.944885
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014436,
|
||||
"Position": {
|
||||
"X": -370.4433,
|
||||
"Y": 0.38146973,
|
||||
"Z": -111.436646
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
18170,
|
||||
18171
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014457,
|
||||
"Position": {
|
||||
"X": -332.8451,
|
||||
"Y": 0.38146973,
|
||||
"Z": -68.89453
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051722,
|
||||
"Position": {
|
||||
"X": 798.3672,
|
||||
"Y": 13.076807,
|
||||
"Z": -246.69269
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,226 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 809.655,
|
||||
"Y": 17.004526,
|
||||
"Z": -257.89868
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1051710,
|
||||
"Position": {
|
||||
"X": 822.629,
|
||||
"Y": 17.102613,
|
||||
"Z": -263.20288
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051731,
|
||||
"Position": {
|
||||
"X": -125.07825,
|
||||
"Y": 9.842161,
|
||||
"Z": -450.73627
|
||||
},
|
||||
"StopDistance": 2,
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kozama'uka - Ok'hanu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051731,
|
||||
"Position": {
|
||||
"X": -125.07825,
|
||||
"Y": 9.842161,
|
||||
"Z": -450.73627
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 124.89976,
|
||||
"Y": 3.8414032,
|
||||
"Z": -279.8074
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1048815,
|
||||
"Position": {
|
||||
"X": 127.03125,
|
||||
"Y": 3.8414035,
|
||||
"Z": -279.92682
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014427,
|
||||
"Position": {
|
||||
"X": 183.79492,
|
||||
"Y": -0.015319824,
|
||||
"Z": -331.53284
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014428,
|
||||
"Position": {
|
||||
"X": 210.43713,
|
||||
"Y": -0.015319824,
|
||||
"Z": -343.77057
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014429,
|
||||
"Position": {
|
||||
"X": 213.21423,
|
||||
"Y": -0.015319824,
|
||||
"Z": -354.84857
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014430,
|
||||
"Position": {
|
||||
"X": 229.93823,
|
||||
"Y": -0.015319824,
|
||||
"Z": -342.15308
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true,
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2014431,
|
||||
"Position": {
|
||||
"X": 252.18579,
|
||||
"Y": -0.015319824,
|
||||
"Z": -371.20624
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1048826,
|
||||
"Position": {
|
||||
"X": 672.4802,
|
||||
"Y": 41.63828,
|
||||
"Z": -527.36707
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1051710,
|
||||
"Position": {
|
||||
"X": 822.629,
|
||||
"Y": 17.102613,
|
||||
"Z": -263.20288
|
||||
},
|
||||
"TerritoryId": 1188,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Kozama'uka - Dock Poga"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -147,7 +147,8 @@
|
||||
"Z": -473.94547
|
||||
},
|
||||
"TerritoryId": 1191,
|
||||
"InteractionType": "WalkTo"
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "TODO Verify this avoids combat"
|
||||
},
|
||||
{
|
||||
"DataId": 1047428,
|
||||
|
@ -21,15 +21,6 @@
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 392.8642,
|
||||
"Y": 10.611866,
|
||||
"Z": 322.41876
|
||||
},
|
||||
"TerritoryId": 1192,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1047899,
|
||||
"Position": {
|
||||
|
@ -1,126 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1047679,
|
||||
"Position": {
|
||||
"X": -165.36206,
|
||||
"Y": -14.999356,
|
||||
"Z": 203.93677
|
||||
},
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Tuliyollal",
|
||||
"AethernetShortcut": [
|
||||
"[Tuliyollal] Aetheryte Plaza",
|
||||
"[Tuliyollal] The For'ard Cabins"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1046521,
|
||||
"Position": {
|
||||
"X": -46.616333,
|
||||
"Y": -17.97287,
|
||||
"Z": 180.3158
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014470,
|
||||
"Position": {
|
||||
"X": -32.700073,
|
||||
"Y": -17.47168,
|
||||
"Z": 184.9851
|
||||
},
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1047501,
|
||||
"Position": {
|
||||
"X": -189.80707,
|
||||
"Y": 120.74999,
|
||||
"Z": -367.14734
|
||||
},
|
||||
"TerritoryId": 1185,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Tuliyollal] Bayside Bevy Marketplace",
|
||||
"[Tuliyollal] Vollok Shoonsa"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_KINGMG101_05244_SYSTEM_000_301",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1048083,
|
||||
"Position": {
|
||||
"X": 302.05237,
|
||||
"Y": 51.199978,
|
||||
"Z": 205.0354
|
||||
},
|
||||
"TerritoryId": 1186,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Solution Nine",
|
||||
"AethernetShortcut": [
|
||||
"[Solution Nine] Aetheryte Plaza",
|
||||
"[Solution Nine] Neon Stein"
|
||||
],
|
||||
"TargetTerritoryId": 1207,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [
|
||||
1207
|
||||
]
|
||||
},
|
||||
"StepIf": {
|
||||
"InTerritory": [
|
||||
1207
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1052185,
|
||||
"Position": {
|
||||
"X": -4.837158,
|
||||
"Y": -3.632158E-08,
|
||||
"Z": 5.996765
|
||||
},
|
||||
"TerritoryId": 1207,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,74 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052185,
|
||||
"Position": {
|
||||
"X": -4.837158,
|
||||
"Y": -3.632158E-08,
|
||||
"Z": 5.996765
|
||||
},
|
||||
"TerritoryId": 1207,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2014102,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 0.99176025,
|
||||
"Z": 16.03717
|
||||
},
|
||||
"TerritoryId": 1207,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 1186,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"InTerritory": [
|
||||
1186
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1052191,
|
||||
"Position": {
|
||||
"X": 20.248657,
|
||||
"Y": 38.0566,
|
||||
"Z": -388.90674
|
||||
},
|
||||
"TerritoryId": 1186,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Solution Nine] Neon Stein",
|
||||
"[Solution Nine] Resolution"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052198,
|
||||
"Position": {
|
||||
"X": -303.2426,
|
||||
"Y": 9.519508,
|
||||
"Z": 51.80432
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1186,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,146 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052202,
|
||||
"Position": {
|
||||
"X": -305.83655,
|
||||
"Y": 9.519508,
|
||||
"Z": 53.147095
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 1186,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052205,
|
||||
"Position": {
|
||||
"X": -257.0382,
|
||||
"Y": 30,
|
||||
"Z": -569.05475
|
||||
},
|
||||
"TerritoryId": 1191,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Heritage Found - The Outskirts"
|
||||
},
|
||||
{
|
||||
"DataId": 1052204,
|
||||
"Position": {
|
||||
"X": -158.25134,
|
||||
"Y": 25.984516,
|
||||
"Z": -521.90436
|
||||
},
|
||||
"TerritoryId": 1191,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1052206,
|
||||
"Position": {
|
||||
"X": -137.86536,
|
||||
"Y": 35,
|
||||
"Z": -568.29175
|
||||
},
|
||||
"TerritoryId": 1191,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1048083,
|
||||
"Position": {
|
||||
"X": 302.05237,
|
||||
"Y": 51.199978,
|
||||
"Z": 205.0354
|
||||
},
|
||||
"TerritoryId": 1186,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Solution Nine",
|
||||
"AethernetShortcut": [
|
||||
"[Solution Nine] Aetheryte Plaza",
|
||||
"[Solution Nine] Neon Stein"
|
||||
],
|
||||
"TargetTerritoryId": 1207,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [
|
||||
1207
|
||||
]
|
||||
},
|
||||
"StepIf": {
|
||||
"InTerritory": [
|
||||
1207
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1048161,
|
||||
"Position": {
|
||||
"X": -5.874817,
|
||||
"Y": -3.6188258E-08,
|
||||
"Z": 6.8512573
|
||||
},
|
||||
"TerritoryId": 1207,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052207,
|
||||
"Position": {
|
||||
"X": -609.3385,
|
||||
"Y": -3.3580189,
|
||||
"Z": -504.5701
|
||||
},
|
||||
"TerritoryId": 1191,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Heritage Found - The Outskirts",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 1191,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 1008
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1052213,
|
||||
"Position": {
|
||||
"X": 117.02136,
|
||||
"Y": 12.5,
|
||||
"Z": -67.826416
|
||||
},
|
||||
"StopDistance": 6,
|
||||
"TerritoryId": 1254,
|
||||
"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