Compare commits
No commits in common. "master" and "filters" have entirely different histories.
@ -1,5 +1,5 @@
|
||||
<Project>
|
||||
<PropertyGroup Condition="$(MSBuildProjectName) != 'GatheringPathRenderer'">
|
||||
<Version>4.13</Version>
|
||||
<PropertyGroup>
|
||||
<Version>4.9</Version>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
1
GatheringPathRenderer/.gitignore
vendored
1
GatheringPathRenderer/.gitignore
vendored
@ -1 +0,0 @@
|
||||
/dist
|
@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<Target Name="PackagePluginDebug" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
|
||||
<DalamudPackager
|
||||
ProjectDir="$(ProjectDir)"
|
||||
OutputPath="$(OutputPath)"
|
||||
AssemblyName="$(AssemblyName)"
|
||||
MakeZip="false"
|
||||
VersionComponents="2"/>
|
||||
</Target>
|
||||
|
||||
<Target Name="PackagePlugin" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
|
||||
<DalamudPackager
|
||||
ProjectDir="$(ProjectDir)"
|
||||
OutputPath="$(OutputPath)"
|
||||
AssemblyName="$(AssemblyName)"
|
||||
MakeZip="true"
|
||||
VersionComponents="2"
|
||||
Exclude="GatheringPathRenderer.deps.json;ECommons.xml;ECommons.pdb;LLib.pdb"/>
|
||||
</Target>
|
||||
</Project>
|
@ -1,11 +1,4 @@
|
||||
<Project Sdk="Dalamud.NET.Sdk/11.0.0">
|
||||
<PropertyGroup>
|
||||
<Version>0.1</Version>
|
||||
<OutputPath>dist</OutputPath>
|
||||
<PathMap Condition="$(SolutionDir) != ''">$(SolutionDir)=X:\</PathMap>
|
||||
<Platforms>x64</Platforms>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\LLib\LLib.csproj" />
|
||||
<ProjectReference Include="..\Questionable.Model\Questionable.Model.csproj" />
|
||||
@ -13,5 +6,4 @@
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="..\LLib\LLib.targets"/>
|
||||
<Import Project="..\LLib\RenameZip.targets"/>
|
||||
</Project>
|
||||
|
@ -1,7 +1,6 @@
|
||||
{
|
||||
"Name": "GatheringPathRenderer",
|
||||
"Author": "Liza Carvelli",
|
||||
"Punchline": "[Questionable dev plugin]: Renders gathering location.",
|
||||
"Description": "[Questionable dev plugin]: Renders gathering location using Splatoon.",
|
||||
"RepoUrl": "https://git.carvel.li/liza/Questionable/src/branch/master/GatheringPathRenderer"
|
||||
"Punchline": "dev only plugin: Renders gathering location.",
|
||||
"Description": "dev only plugin: Renders gathering location (without ECommons polluting the entire normal project)."
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text.Encodings.Web;
|
||||
@ -18,11 +17,11 @@ using ECommons.Schedulers;
|
||||
using ECommons.SplatoonAPI;
|
||||
using GatheringPathRenderer.Windows;
|
||||
using LLib.GameData;
|
||||
using Questionable.Model;
|
||||
using Questionable.Model.Gathering;
|
||||
|
||||
namespace GatheringPathRenderer;
|
||||
|
||||
[SuppressMessage("ReSharper", "ClassNeverInstantiated.Global")]
|
||||
public sealed class RendererPlugin : IDalamudPlugin
|
||||
{
|
||||
private const long OnTerritoryChange = -2;
|
||||
@ -57,10 +56,8 @@ public sealed class RendererPlugin : IDalamudPlugin
|
||||
|
||||
_editorCommands = new EditorCommands(this, dataManager, commandManager, targetManager, clientState, chatGui,
|
||||
configuration);
|
||||
var configWindow = new ConfigWindow(pluginInterface, configuration);
|
||||
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable, configWindow)
|
||||
_editorWindow = new EditorWindow(this, _editorCommands, dataManager, targetManager, clientState, objectTable)
|
||||
{ IsOpen = true };
|
||||
_windowSystem.AddWindow(configWindow);
|
||||
_windowSystem.AddWindow(_editorWindow);
|
||||
_currentClassJob = (EClassJob?)_clientState.LocalPlayer?.ClassJob.RowId ?? EClassJob.Adventurer;
|
||||
|
||||
@ -81,7 +78,6 @@ public sealed class RendererPlugin : IDalamudPlugin
|
||||
{
|
||||
get
|
||||
{
|
||||
#if DEBUG
|
||||
DirectoryInfo? solutionDirectory = _pluginInterface.AssemblyLocation.Directory?.Parent?.Parent?.Parent;
|
||||
if (solutionDirectory != null)
|
||||
{
|
||||
@ -92,12 +88,6 @@ public sealed class RendererPlugin : IDalamudPlugin
|
||||
}
|
||||
|
||||
throw new Exception("Unable to resolve project path");
|
||||
#else
|
||||
var allPluginsDirectory = _pluginInterface.ConfigFile.Directory ?? throw new Exception("Unknown directory for plugin configs");
|
||||
return allPluginsDirectory
|
||||
.CreateSubdirectory("Questionable")
|
||||
.CreateSubdirectory("GatheringPaths");
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@ -113,18 +103,12 @@ public sealed class RendererPlugin : IDalamudPlugin
|
||||
|
||||
try
|
||||
{
|
||||
#if DEBUG
|
||||
foreach (var expansionFolder in ExpansionData.ExpansionFolders.Values)
|
||||
LoadFromDirectory(
|
||||
new DirectoryInfo(Path.Combine(PathsDirectory.FullName, expansionFolder)));
|
||||
|
||||
_pluginLog.Information(
|
||||
$"Loaded {_gatheringLocations.Count} gathering root locations from project directory");
|
||||
#else
|
||||
LoadFromDirectory(PathsDirectory);
|
||||
_pluginLog.Information(
|
||||
$"Loaded {_gatheringLocations.Count} gathering root locations from {PathsDirectory.FullName} directory");
|
||||
#endif
|
||||
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
@ -1,33 +0,0 @@
|
||||
using Dalamud.Interface.Windowing;
|
||||
using Dalamud.Plugin;
|
||||
using ImGuiNET;
|
||||
|
||||
namespace GatheringPathRenderer.Windows;
|
||||
|
||||
internal sealed class ConfigWindow : Window
|
||||
{
|
||||
private readonly IDalamudPluginInterface _pluginInterface;
|
||||
private readonly Configuration _configuration;
|
||||
|
||||
public ConfigWindow(IDalamudPluginInterface pluginInterface, Configuration configuration)
|
||||
: base("Gathering Path Config", ImGuiWindowFlags.AlwaysAutoResize)
|
||||
{
|
||||
_pluginInterface = pluginInterface;
|
||||
_configuration = configuration;
|
||||
|
||||
AllowPinning = false;
|
||||
AllowClickthrough = false;
|
||||
}
|
||||
|
||||
public override void Draw()
|
||||
{
|
||||
string authorName = _configuration.AuthorName;
|
||||
if (ImGui.InputText("Author name for new files", ref authorName, 256))
|
||||
{
|
||||
_configuration.AuthorName = authorName;
|
||||
Save();
|
||||
}
|
||||
}
|
||||
|
||||
private void Save() => _pluginInterface.SavePluginConfig(_configuration);
|
||||
}
|
@ -6,7 +6,6 @@ using System.Numerics;
|
||||
using Dalamud.Game.ClientState.Objects;
|
||||
using Dalamud.Game.ClientState.Objects.Enums;
|
||||
using Dalamud.Game.ClientState.Objects.Types;
|
||||
using Dalamud.Interface;
|
||||
using Dalamud.Interface.Colors;
|
||||
using Dalamud.Interface.Windowing;
|
||||
using Dalamud.Plugin.Services;
|
||||
@ -33,8 +32,8 @@ internal sealed class EditorWindow : Window
|
||||
_targetLocation;
|
||||
|
||||
public EditorWindow(RendererPlugin plugin, EditorCommands editorCommands, IDataManager dataManager,
|
||||
ITargetManager targetManager, IClientState clientState, IObjectTable objectTable, ConfigWindow configWindow)
|
||||
: base($"Gathering Path Editor {typeof(EditorWindow).Assembly.GetName().Version!.ToString(2)}###QuestionableGatheringPathEditor",
|
||||
ITargetManager targetManager, IClientState clientState, IObjectTable objectTable)
|
||||
: base("Gathering Path Editor###QuestionableGatheringPathEditor",
|
||||
ImGuiWindowFlags.NoFocusOnAppearing | ImGuiWindowFlags.NoNavFocus | ImGuiWindowFlags.AlwaysAutoResize)
|
||||
{
|
||||
_plugin = plugin;
|
||||
@ -49,20 +48,6 @@ internal sealed class EditorWindow : Window
|
||||
MinimumSize = new Vector2(300, 100),
|
||||
};
|
||||
|
||||
TitleBarButtons.Add(new TitleBarButton
|
||||
{
|
||||
Icon = FontAwesomeIcon.Cog,
|
||||
IconOffset = new Vector2(1.5f, 1),
|
||||
Click = _ => configWindow.IsOpen = true,
|
||||
Priority = int.MinValue,
|
||||
ShowTooltip = () =>
|
||||
{
|
||||
ImGui.BeginTooltip();
|
||||
ImGui.Text("Open Configuration");
|
||||
ImGui.EndTooltip();
|
||||
}
|
||||
});
|
||||
|
||||
RespectCloseHotkey = false;
|
||||
ShowCloseButton = false;
|
||||
AllowPinning = false;
|
||||
|
@ -1,61 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Azim Steppe - Dawn Throne"
|
||||
}
|
||||
],
|
||||
"Groups": [
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32323,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -54.36381,
|
||||
"Y": 55.83623,
|
||||
"Z": -357.2043
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32325,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -56.99122,
|
||||
"Y": 59.4855,
|
||||
"Z": -368.9053
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32324,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -83.84797,
|
||||
"Y": 60.70433,
|
||||
"Z": -366.7615
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,61 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Azim Steppe - Dawn Throne"
|
||||
}
|
||||
],
|
||||
"Groups": [
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32335,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -80.14488,
|
||||
"Y": 58.18221,
|
||||
"Z": -358.3333
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32336,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -58.9046,
|
||||
"Y": 52.59887,
|
||||
"Z": -350.7942
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32337,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -81.5958,
|
||||
"Y": 51.05495,
|
||||
"Z": -334.9854
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,138 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||
"Author": "liza",
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 1190,
|
||||
"InteractionType": "None"
|
||||
}
|
||||
],
|
||||
"Groups": [
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34920,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 192.6021,
|
||||
"Y": 12.31054,
|
||||
"Z": 631.2545
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 194.8373,
|
||||
"Y": 12.50387,
|
||||
"Z": 646.5401
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 180.8447,
|
||||
"Y": 12.43262,
|
||||
"Z": 610.7131
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 34919,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 186.171,
|
||||
"Y": 12.54104,
|
||||
"Z": 634.9042
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34917,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 39.45634,
|
||||
"Y": -0.06042051,
|
||||
"Z": 502.3853
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 34918,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 46.03248,
|
||||
"Y": -0.7049216,
|
||||
"Z": 491.6059
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 36.15481,
|
||||
"Y": -0.0501074,
|
||||
"Z": 505.9388
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 24.72226,
|
||||
"Y": 0.5922582,
|
||||
"Z": 528.0809
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34922,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 2.302937,
|
||||
"Y": -4.586716,
|
||||
"Z": 687.4797
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.02284,
|
||||
"Y": -2.447479,
|
||||
"Z": 704.4326
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 41.59287,
|
||||
"Y": -0.8454803,
|
||||
"Z": 692.0099
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 34921,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 18.47237,
|
||||
"Y": -2.987581,
|
||||
"Z": 690.8011
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,156 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||
"Author": "liza",
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 1190,
|
||||
"InteractionType": "None"
|
||||
}
|
||||
],
|
||||
"Groups": [
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34819,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -86.69859,
|
||||
"Y": -8.177663,
|
||||
"Z": 572.7712
|
||||
},
|
||||
"MinimumAngle": 45,
|
||||
"MaximumAngle": 175
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 34820,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -83.81214,
|
||||
"Y": -8.291362,
|
||||
"Z": 581.595
|
||||
},
|
||||
"MinimumAngle": 80,
|
||||
"MaximumAngle": 175
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -88.70462,
|
||||
"Y": -8.511888,
|
||||
"Z": 578.6565
|
||||
},
|
||||
"MinimumAngle": 35,
|
||||
"MaximumAngle": 150
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -81.00482,
|
||||
"Y": -7.330131,
|
||||
"Z": 574.7444
|
||||
},
|
||||
"MinimumAngle": 150,
|
||||
"MaximumAngle": 245
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34817,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -264.2871,
|
||||
"Y": -21.57944,
|
||||
"Z": 593.6306
|
||||
},
|
||||
"MinimumAngle": 130,
|
||||
"MaximumAngle": 255,
|
||||
"MinimumDistance": 1.5,
|
||||
"MaximumDistance": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 34818,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -266.9412,
|
||||
"Y": -21.20901,
|
||||
"Z": 593.9532
|
||||
},
|
||||
"MinimumAngle": 70,
|
||||
"MaximumAngle": 225
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -268.0496,
|
||||
"Y": -21.79604,
|
||||
"Z": 598.2532
|
||||
},
|
||||
"MinimumAngle": -45,
|
||||
"MaximumAngle": 160
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -260.2841,
|
||||
"Y": -22.10003,
|
||||
"Z": 595.726
|
||||
},
|
||||
"MinimumAngle": 160,
|
||||
"MaximumAngle": 330
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34815,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -276.2859,
|
||||
"Y": -3.218076,
|
||||
"Z": 437.6798
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 34816,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -277.8067,
|
||||
"Y": -2.664376,
|
||||
"Z": 433.8469
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -273.7089,
|
||||
"Y": -2.972111,
|
||||
"Z": 434.3939
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -281.1727,
|
||||
"Y": -2.682134,
|
||||
"Z": 433.9476
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
2
LLib
2
LLib
@ -1 +1 @@
|
||||
Subproject commit b1059871154b84401020c0072fd089fcc022fb77
|
||||
Subproject commit 783fea977a2524dd63e717367fc026c52efe6c23
|
@ -117,9 +117,6 @@ internal static class QuestStepExtensions
|
||||
Assignment(nameof(QuestStep.ContentFinderConditionId),
|
||||
step.ContentFinderConditionId, emptyStep.ContentFinderConditionId)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.AutoDutyEnabled),
|
||||
step.AutoDutyEnabled, emptyStep.AutoDutyEnabled)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.SkipConditions), step.SkipConditions,
|
||||
emptyStep.SkipConditions)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -17,217 +18,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 96.21657,
|
||||
"Y": 55.28576,
|
||||
"Z": -500.41245
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1005960,
|
||||
"Position": {
|
||||
"X": 97.3678,
|
||||
"Y": 56.809326,
|
||||
"Z": -502.06763
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005960,
|
||||
"Position": {
|
||||
"X": 97.3678,
|
||||
"Y": 56.809326,
|
||||
"Z": -502.06763
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_BANKOB205_01339_SCENE00008_EVENTAREA_WARP_YESNO_TITLE",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003743,
|
||||
"Position": {
|
||||
"X": 227.00842,
|
||||
"Y": 22.75116,
|
||||
"Z": -582.81836
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003744,
|
||||
"Position": {
|
||||
"X": 224.78064,
|
||||
"Y": 23.941406,
|
||||
"Z": -580.9568
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001244,
|
||||
"IgnoreDistanceToObject": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003746,
|
||||
"Position": {
|
||||
"X": 239.30713,
|
||||
"Y": 22.323914,
|
||||
"Z": -577.29456
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2880
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 1
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003745,
|
||||
"Position": {
|
||||
"X": 242.8778,
|
||||
"Y": 22.507019,
|
||||
"Z": -584.37476
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2880
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 2
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003746,
|
||||
"Position": {
|
||||
"X": 239.30713,
|
||||
"Y": 22.323914,
|
||||
"Z": -577.29456
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2880
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 3
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003745,
|
||||
"Position": {
|
||||
"X": 242.8778,
|
||||
"Y": 22.507019,
|
||||
"Z": -584.37476
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2880
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 4
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003746,
|
||||
"Position": {
|
||||
"X": 239.30713,
|
||||
"Y": 22.323914,
|
||||
"Z": -577.29456
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2883
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005932,
|
||||
"Position": {
|
||||
"X": -1.236023,
|
||||
"Y": 33.38838,
|
||||
"Z": -244.19019
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -17,45 +18,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005932,
|
||||
"Position": {
|
||||
"X": -1.236023,
|
||||
"Y": 33.38838,
|
||||
"Z": -244.19019
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_BANKOB210_01344_Q1_000_000",
|
||||
"Answer": "TEXT_BANKOB210_01344_A1_000_001"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003963,
|
||||
"Position": {
|
||||
"X": 91.203125,
|
||||
"Y": 55.74109,
|
||||
"Z": -483.299
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"Comment": "Spawns enemy that we ignore"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -17,140 +18,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005932,
|
||||
"Position": {
|
||||
"X": -1.236023,
|
||||
"Y": 33.38838,
|
||||
"Z": -244.19019
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003911,
|
||||
"Position": {
|
||||
"X": 296.5896,
|
||||
"Y": 21.499878,
|
||||
"Z": -722.13324
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001278,
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 296.5896,
|
||||
"Y": 21.499878,
|
||||
"Z": -722.13324
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": [
|
||||
755
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003910,
|
||||
"Position": {
|
||||
"X": 293.41565,
|
||||
"Y": 21.499878,
|
||||
"Z": -721.91956
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001278,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 293.41565,
|
||||
"Y": 21.499878,
|
||||
"Z": -721.91956
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": [
|
||||
755
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003909,
|
||||
"Position": {
|
||||
"X": 290.0282,
|
||||
"Y": 21.530457,
|
||||
"Z": -721.3397
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001278,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 290.0282,
|
||||
"Y": 21.530457,
|
||||
"Z": -721.3397
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": [
|
||||
755
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003912,
|
||||
"Position": {
|
||||
"X": 295.76562,
|
||||
"Y": 21.469421,
|
||||
"Z": -711.9402
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001279
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
@ -163,9 +30,7 @@
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
||||
"Fly": true,
|
||||
"DelaySecondsAtStart": 3
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,132 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005562,
|
||||
"Position": {
|
||||
"X": 36.850464,
|
||||
"Y": -4.8778634,
|
||||
"Z": 249.19507
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 321.08926,
|
||||
"Y": -17.347095,
|
||||
"Z": -201.61072
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2003494,
|
||||
"Position": {
|
||||
"X": 319.44763,
|
||||
"Y": -17.227417,
|
||||
"Z": -200.88507
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001154,
|
||||
"GroundTarget": true,
|
||||
"KillEnemyDataIds": [
|
||||
764
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003041,
|
||||
"Position": {
|
||||
"X": 386.099,
|
||||
"Y": -20.187744,
|
||||
"Z": -200.763
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001154,
|
||||
"GroundTarget": true,
|
||||
"KillEnemyDataIds": [
|
||||
764
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003040,
|
||||
"Position": {
|
||||
"X": 326.77185,
|
||||
"Y": -18.112549,
|
||||
"Z": -235.95032
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001154,
|
||||
"GroundTarget": true,
|
||||
"KillEnemyDataIds": [
|
||||
764
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005562,
|
||||
"Position": {
|
||||
"X": 36.850464,
|
||||
"Y": -4.8778634,
|
||||
"Z": 249.19507
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,79 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005562,
|
||||
"Position": {
|
||||
"X": 36.850464,
|
||||
"Y": -4.8778634,
|
||||
"Z": 249.19507
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003307,
|
||||
"Position": {
|
||||
"X": 261.82947,
|
||||
"Y": -9.323303,
|
||||
"Z": -72.80078
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003487,
|
||||
"Position": {
|
||||
"X": 429.89233,
|
||||
"Y": -14.2977295,
|
||||
"Z": -257.61804
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
},
|
||||
{
|
||||
"DataId": 2003310,
|
||||
"Position": {
|
||||
"X": 551.812,
|
||||
"Y": -22.537598,
|
||||
"Z": -352.13245
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005562,
|
||||
"Position": {
|
||||
"X": 36.850464,
|
||||
"Y": -4.8778634,
|
||||
"Z": 249.19507
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,57 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005562,
|
||||
"Position": {
|
||||
"X": 36.850464,
|
||||
"Y": -4.8778634,
|
||||
"Z": 249.19507
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 336.78577,
|
||||
"Y": -17.169508,
|
||||
"Z": -252.20335
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [
|
||||
2464
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005562,
|
||||
"Position": {
|
||||
"X": 36.850464,
|
||||
"Y": -4.8778634,
|
||||
"Z": 249.19507
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -112,8 +112,7 @@
|
||||
{
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 4,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -71,8 +71,7 @@
|
||||
{
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 56,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 56
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -62,8 +62,7 @@
|
||||
{
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 3,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -57,8 +57,7 @@
|
||||
{
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 2,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 2
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -44,8 +44,7 @@
|
||||
{
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 1,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -66,8 +66,7 @@
|
||||
{
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 6,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 6
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -85,8 +85,7 @@
|
||||
{
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 8,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 8
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -45,8 +45,7 @@
|
||||
{
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 57,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 57
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -59,8 +59,7 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 11,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 11
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -38,8 +38,7 @@
|
||||
{
|
||||
"TerritoryId": 331,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 58,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 58
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -45,8 +45,7 @@
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 15,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 15
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -46,8 +46,7 @@
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 16,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -72,8 +71,7 @@
|
||||
{
|
||||
"TerritoryId": 1053,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 830,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 830
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -88,8 +88,7 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 27,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 27
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -107,8 +107,7 @@
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 32,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 32
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,104 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -243.19783,
|
||||
"Y": 58.69102,
|
||||
"Z": -140.41818
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1006261,
|
||||
"Position": {
|
||||
"X": -244.73944,
|
||||
"Y": 58.69352,
|
||||
"Z": -140.06262
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -294.20667,
|
||||
"Y": 61.58862,
|
||||
"Z": -192.54443
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 48,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
{
|
||||
"High": 5
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
{
|
||||
"High": 5
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -243.19783,
|
||||
"Y": 58.69102,
|
||||
"Z": -140.41818
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006261,
|
||||
"Position": {
|
||||
"X": -244.73944,
|
||||
"Y": 58.69352,
|
||||
"Z": -140.06262
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 805
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,88 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -243.19783,
|
||||
"Y": 58.69102,
|
||||
"Z": -140.41818
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1006261,
|
||||
"Position": {
|
||||
"X": -244.73944,
|
||||
"Y": 58.69352,
|
||||
"Z": -140.06262
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -291.6655,
|
||||
"Y": 60.450222,
|
||||
"Z": -163.48296
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 2267
|
||||
}
|
||||
],
|
||||
"CombatItemUse": {
|
||||
"ItemId": 2000632,
|
||||
"Condition": "Health%",
|
||||
"Value": 50
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -243.19783,
|
||||
"Y": 58.69102,
|
||||
"Z": -140.41818
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006261,
|
||||
"Position": {
|
||||
"X": -244.73944,
|
||||
"Y": 58.69352,
|
||||
"Z": -140.06262
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 807
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,89 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -243.19783,
|
||||
"Y": 58.69102,
|
||||
"Z": -140.41818
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1006261,
|
||||
"Position": {
|
||||
"X": -244.73944,
|
||||
"Y": 58.69352,
|
||||
"Z": -140.06262
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -327.70383,
|
||||
"Y": 57.159073,
|
||||
"Z": -13.640016
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 2193,
|
||||
"NameId": 2057
|
||||
}
|
||||
],
|
||||
"CombatItemUse": {
|
||||
"ItemId": 2000958,
|
||||
"Condition": "Health%",
|
||||
"Value": 100
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -243.19783,
|
||||
"Y": 58.69102,
|
||||
"Z": -140.41818
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006261,
|
||||
"Position": {
|
||||
"X": -244.73944,
|
||||
"Y": 58.69352,
|
||||
"Z": -140.06262
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1485
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,113 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Thaksin",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004917,
|
||||
"Position": {
|
||||
"X": -358.6328,
|
||||
"Y": 8.469424,
|
||||
"Z": 422.4154
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006602,
|
||||
"Position": {
|
||||
"X": -321.06506,
|
||||
"Y": 8.830055,
|
||||
"Z": 436.94202
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006600,
|
||||
"Position": {
|
||||
"X": -283.5279,
|
||||
"Y": 7.652629,
|
||||
"Z": 423.14795
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006599,
|
||||
"Position": {
|
||||
"X": -279.98785,
|
||||
"Y": 15.013981,
|
||||
"Z": 373.37292
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006601,
|
||||
"Position": {
|
||||
"X": -293.53784,
|
||||
"Y": 13.137939,
|
||||
"Z": 354.63477
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004917,
|
||||
"Position": {
|
||||
"X": -358.6328,
|
||||
"Y": 8.469424,
|
||||
"Z": 422.4154
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,170 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Thaksin",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004914,
|
||||
"Position": {
|
||||
"X": 167.89502,
|
||||
"Y": 3.1102452,
|
||||
"Z": 972.5642
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006603,
|
||||
"Position": {
|
||||
"X": -196.79565,
|
||||
"Y": 78.11096,
|
||||
"Z": 49.851196
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004914,
|
||||
"Position": {
|
||||
"X": 167.89502,
|
||||
"Y": 3.1102452,
|
||||
"Z": 972.5642
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -207.9934,
|
||||
"Y": 66.78476,
|
||||
"Z": -258.7822
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
||||
"Fly": true
|
||||
},{
|
||||
"Position": {
|
||||
"X": -234.89017,
|
||||
"Y": 63.51318,
|
||||
"Z": -255.7134
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -356.22986,
|
||||
"Y": 57.972702,
|
||||
"Z": -381.27402
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
|
||||
{
|
||||
"DataId": 1006604,
|
||||
"Position": {
|
||||
"X": -278.73657,
|
||||
"Y": 4.1657104,
|
||||
"Z": -580.04126
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004914,
|
||||
"Position": {
|
||||
"X": 167.89502,
|
||||
"Y": 3.1102452,
|
||||
"Z": 972.5642
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000779,
|
||||
"GroundTarget": true,
|
||||
"Position": {
|
||||
"X": -192.67111,
|
||||
"Y": 35.175262,
|
||||
"Z": 129.13567
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006605,
|
||||
"Position": {
|
||||
"X": -192.49261,
|
||||
"Y": 35.210636,
|
||||
"Z": 129.13708
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004914,
|
||||
"Position": {
|
||||
"X": 167.89502,
|
||||
"Y": 3.1102452,
|
||||
"Z": 972.5642
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"InTerritory": [
|
||||
140,
|
||||
212
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -492.96475,
|
||||
"Y": 20.999884,
|
||||
"Z": -380.82272
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Avoid walking around Waking Sands table",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"InTerritory": [
|
||||
212
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2001711,
|
||||
"Position": {
|
||||
"X": -480.9181,
|
||||
"Y": 18.00103,
|
||||
"Z": -386.862
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"InTerritory": [
|
||||
212
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1011618,
|
||||
"Position": {
|
||||
"X": 10.330261,
|
||||
"Y": -3.0000017,
|
||||
"Z": -54.8562
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004917,
|
||||
"Position": {
|
||||
"X": -358.6328,
|
||||
"Y": 8.469424,
|
||||
"Z": 422.4154
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||
"NextQuestId": 1021
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006550,
|
||||
"Position": {
|
||||
"X": 449.33228,
|
||||
"Y": -12.436822,
|
||||
"Z": -387.5639
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003596,
|
||||
"Position": {
|
||||
"X": -41.428284,
|
||||
"Y": 20,
|
||||
"Z": -5.661133
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_SUBPST000_01481_Q1_000_000",
|
||||
"Yes": true,
|
||||
"PromptIsRegularExpression": true
|
||||
}
|
||||
],
|
||||
"NextQuestId": 1483
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,193 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000100,
|
||||
"Position": {
|
||||
"X": 23.819275,
|
||||
"Y": -8,
|
||||
"Z": 115.92273
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Airship Landing"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004266,
|
||||
"Position": {
|
||||
"X": 103.715576,
|
||||
"Y": 1.2664795,
|
||||
"Z": 46.92151
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004267,
|
||||
"Position": {
|
||||
"X": -67.216064,
|
||||
"Y": -3.4332886,
|
||||
"Z": 35.26355
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004269,
|
||||
"Position": {
|
||||
"X": -141.2528,
|
||||
"Y": 7.827881,
|
||||
"Z": -190.53949
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Mih Khetto's Amphitheatre"
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004268,
|
||||
"Position": {
|
||||
"X": 123.91846,
|
||||
"Y": 14.145081,
|
||||
"Z": -275.83734
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Mih Khetto's Amphitheatre",
|
||||
"[Gridania] Lancers' Guild"
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000100,
|
||||
"Position": {
|
||||
"X": 23.819275,
|
||||
"Y": -8,
|
||||
"Z": 115.92273
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Lancers' Guild",
|
||||
"[Gridania] Airship Landing"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004270,
|
||||
"Position": {
|
||||
"X": 7.1869507,
|
||||
"Y": 4.7455444,
|
||||
"Z": -262.98932
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Blue Badger Gate (Central Shroud)"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000100,
|
||||
"Position": {
|
||||
"X": 23.819275,
|
||||
"Y": -8,
|
||||
"Z": 115.92273
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Airship Landing"
|
||||
],
|
||||
"NextQuestId": 1484
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,233 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003611,
|
||||
"Position": {
|
||||
"X": 9.781006,
|
||||
"Y": 20.999247,
|
||||
"Z": 15.0911255
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 128,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"ExcelSheet": "Warp",
|
||||
"Prompt": null,
|
||||
"Answer": 131093
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000972,
|
||||
"Position": {
|
||||
"X": 20.279175,
|
||||
"Y": 40.19993,
|
||||
"Z": -6.1189575
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_SUBPST002_01483_Q1_000_000",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003601,
|
||||
"Position": {
|
||||
"X": -3.2807007,
|
||||
"Y": 39.51757,
|
||||
"Z": -9.414856
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009183,
|
||||
"Position": {
|
||||
"X": -63.21814,
|
||||
"Y": 43.589653,
|
||||
"Z": 48.447266
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] The Aftcastle",
|
||||
"[Limsa Lominsa] Zephyr Gate (Middle La Noscea)"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009183,
|
||||
"Position": {
|
||||
"X": -63.21814,
|
||||
"Y": 43.589653,
|
||||
"Z": 48.447266
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001324
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009666,
|
||||
"Position": {
|
||||
"X": -22.171448,
|
||||
"Y": 42.442753,
|
||||
"Z": 128.67932
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002626,
|
||||
"Position": {
|
||||
"X": 207.2633,
|
||||
"Y": 112.86037,
|
||||
"Z": -222.43079
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Middle La Noscea - Summerford Farms"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004272,
|
||||
"Position": {
|
||||
"X": 224.2008,
|
||||
"Y": 114.3053,
|
||||
"Z": -223.40735
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009184,
|
||||
"Position": {
|
||||
"X": -22.171448,
|
||||
"Y": 42.442753,
|
||||
"Z": 128.67932
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Zephyr Gate (Middle La Noscea)"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000972,
|
||||
"Position": {
|
||||
"X": 20.279175,
|
||||
"Y": 40.19993,
|
||||
"Z": -6.1189575
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003597,
|
||||
"Position": {
|
||||
"X": 8.194031,
|
||||
"Y": 39.999973,
|
||||
"Z": 17.746216
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 129
|
||||
},
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1482
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,113 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001353,
|
||||
"Position": {
|
||||
"X": 21.072632,
|
||||
"Y": 7.45,
|
||||
"Z": -78.78235
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006357,
|
||||
"Position": {
|
||||
"X": -28.854858,
|
||||
"Y": 13.799997,
|
||||
"Z": 118.66931
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Adventurers' Guild",
|
||||
"[Ul'dah] Goldsmiths' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -282.37943,
|
||||
"Y": 13.480675,
|
||||
"Z": -155.46162
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009186,
|
||||
"Position": {
|
||||
"X": -281.94098,
|
||||
"Y": 13.480675,
|
||||
"Z": -156.4508
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001353,
|
||||
"Position": {
|
||||
"X": 21.072632,
|
||||
"Y": 7.45,
|
||||
"Z": -78.78235
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
],
|
||||
"NextQuestId": 1531
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,166 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -243.19783,
|
||||
"Y": 58.69102,
|
||||
"Z": -140.41818
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1006261,
|
||||
"Position": {
|
||||
"X": -244.73944,
|
||||
"Y": 58.69352,
|
||||
"Z": -140.06262
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001455,
|
||||
"Position": {
|
||||
"X": 59.952637,
|
||||
"Y": 0.99176025,
|
||||
"Z": 255.8479
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Gate of Nald (Central Thanalan)"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004276,
|
||||
"Position": {
|
||||
"X": 70.2677,
|
||||
"Y": 1.2054443,
|
||||
"Z": 250.53784
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001329
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004277,
|
||||
"Position": {
|
||||
"X": 70.2677,
|
||||
"Y": 1.2054443,
|
||||
"Z": 250.53784
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001328,
|
||||
"DelaySecondsAtStart": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004277,
|
||||
"Position": {
|
||||
"X": 70.2677,
|
||||
"Y": 1.2054443,
|
||||
"Z": 250.53784
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": []
|
||||
},
|
||||
{
|
||||
"DataId": 1009187,
|
||||
"Position": {
|
||||
"X": 70.573,
|
||||
"Y": 1.5015054,
|
||||
"Z": 251.39233
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -243.19783,
|
||||
"Y": 58.69102,
|
||||
"Z": -140.41818
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006261,
|
||||
"Position": {
|
||||
"X": -244.73944,
|
||||
"Y": 58.69352,
|
||||
"Z": -140.06262
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1570
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,170 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000705,
|
||||
"Position": {
|
||||
"X": -243.15253,
|
||||
"Y": -4.000101,
|
||||
"Z": -7.950012
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006238,
|
||||
"Position": {
|
||||
"X": 197.77222,
|
||||
"Y": 7.8551226,
|
||||
"Z": -22.14087
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000312,
|
||||
"Position": {
|
||||
"X": 269.6421,
|
||||
"Y": 7.877909,
|
||||
"Z": -206.34778
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000338,
|
||||
"Position": {
|
||||
"X": 268.20776,
|
||||
"Y": 10.393627,
|
||||
"Z": -250.11066
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000340,
|
||||
"Position": {
|
||||
"X": 277.51575,
|
||||
"Y": 11.186312,
|
||||
"Z": -255.60394
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 265.58423,
|
||||
"Y": 9.040689,
|
||||
"Z": -227.60555
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2004282,
|
||||
"Position": {
|
||||
"X": 261.5548,
|
||||
"Y": 15.42688,
|
||||
"Z": -125.90222
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000705,
|
||||
"Position": {
|
||||
"X": -243.15253,
|
||||
"Y": -4.000101,
|
||||
"Z": -7.950012
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
],
|
||||
"NextQuestId": 1532
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,187 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006273,
|
||||
"Position": {
|
||||
"X": 619.0126,
|
||||
"Y": 23.936245,
|
||||
"Z": 455.10022
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009267,
|
||||
"Position": {
|
||||
"X": 194.20154,
|
||||
"Y": 59.531815,
|
||||
"Z": -144.54877
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -348.54996,
|
||||
"Y": 67.72218,
|
||||
"Z": -344.0944
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009268,
|
||||
"Position": {
|
||||
"X": -319.9054,
|
||||
"Y": 4.416262,
|
||||
"Z": -571.40466
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009268,
|
||||
"Position": {
|
||||
"X": -319.9054,
|
||||
"Y": 4.416262,
|
||||
"Z": -571.40466
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001334
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009268,
|
||||
"Position": {
|
||||
"X": -319.9054,
|
||||
"Y": 4.416262,
|
||||
"Z": -571.40466
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001334
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009268,
|
||||
"Position": {
|
||||
"X": -319.9054,
|
||||
"Y": 4.416262,
|
||||
"Z": -571.40466
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001334
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006273,
|
||||
"Position": {
|
||||
"X": 619.0126,
|
||||
"Y": 23.936245,
|
||||
"Z": 455.10022
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004284,
|
||||
"Position": {
|
||||
"X": 517.32654,
|
||||
"Y": 12.558105,
|
||||
"Z": 78.93494
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006273,
|
||||
"Position": {
|
||||
"X": 619.0126,
|
||||
"Y": 23.936245,
|
||||
"Z": 455.10022
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"Fly": true,
|
||||
"NextQuestId": 1533
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,145 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009271,
|
||||
"Position": {
|
||||
"X": 149.9198,
|
||||
"Y": 7.492006,
|
||||
"Z": 109.391846
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009272,
|
||||
"Position": {
|
||||
"X": -39.16992,
|
||||
"Y": 13.499999,
|
||||
"Z": 104.99719
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Weavers' Guild",
|
||||
"[Ul'dah] Goldsmiths' Guild"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST007_01533_Q1_000_000",
|
||||
"Answer": "TEXT_SUBPST007_01533_A1_000_002"
|
||||
}
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009273,
|
||||
"Position": {
|
||||
"X": -120.74469,
|
||||
"Y": 41.50016,
|
||||
"Z": 134.5083
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Goldsmiths' Guild",
|
||||
"[Ul'dah] Alchemists' Guild"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST007_01533_Q2_000_000",
|
||||
"Answer": "TEXT_SUBPST007_01533_A2_000_001"
|
||||
}
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 112.655914,
|
||||
"Y": 8.361085,
|
||||
"Z": 73.20917
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Alchemists' Guild",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"RestartNavigationIfCancelled": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009369,
|
||||
"Position": {
|
||||
"X": 151.26257,
|
||||
"Y": 7.492006,
|
||||
"Z": 109.84961
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1571
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,136 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -139.04318,
|
||||
"Y": 8.522301,
|
||||
"Z": 280.0128
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Flying": "Locked"
|
||||
}
|
||||
},
|
||||
"$": "Post-ARR, flying always unlocked"
|
||||
},
|
||||
{
|
||||
"DataId": 1006751,
|
||||
"Position": {
|
||||
"X": -139.45221,
|
||||
"Y": 8.712891,
|
||||
"Z": 281.69678
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004573,
|
||||
"Position": {
|
||||
"X": 36.545288,
|
||||
"Y": -3.7080078,
|
||||
"Z": 225.7572
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -83.15885,
|
||||
"Y": -5.7812023,
|
||||
"Z": 321.49606
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
3552,
|
||||
3553
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009721,
|
||||
"Position": {
|
||||
"X": -83.36011,
|
||||
"Y": -5.6851597,
|
||||
"Z": 322.43823
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST010_01570_Q1_000_000",
|
||||
"Answer": "TEXT_SUBPST010_01570_A1_000_002"
|
||||
}
|
||||
],
|
||||
"NextQuestId": 1576
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,180 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006331,
|
||||
"Position": {
|
||||
"X": -144.15204,
|
||||
"Y": 64.989944,
|
||||
"Z": -209.88788
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009726,
|
||||
"Position": {
|
||||
"X": -280.8728,
|
||||
"Y": 62.620903,
|
||||
"Z": -201.9837
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2864,
|
||||
2865,
|
||||
2866
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 3
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009726,
|
||||
"Position": {
|
||||
"X": -280.8728,
|
||||
"Y": 62.620903,
|
||||
"Z": -201.9837
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006331,
|
||||
"Position": {
|
||||
"X": -144.15204,
|
||||
"Y": 64.989944,
|
||||
"Z": -209.88788
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009729,
|
||||
"Position": {
|
||||
"X": -108.72058,
|
||||
"Y": 64.30314,
|
||||
"Z": -220.38611
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009730,
|
||||
"Position": {
|
||||
"X": -145.8305,
|
||||
"Y": 64.83713,
|
||||
"Z": -209.24695
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009732,
|
||||
"Position": {
|
||||
"X": -439.59723,
|
||||
"Y": 50.90922,
|
||||
"Z": -319.69183
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009753,
|
||||
"Position": {
|
||||
"X": -107.408325,
|
||||
"Y": 64.38365,
|
||||
"Z": -223.62103
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006331,
|
||||
"Position": {
|
||||
"X": -144.15204,
|
||||
"Y": 64.989944,
|
||||
"Z": -209.88788
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 33
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -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": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000856,
|
||||
"Position": {
|
||||
"X": -155.10797,
|
||||
"Y": 4.070978,
|
||||
"Z": 202.71606
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Fishermens' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009733,
|
||||
"Position": {
|
||||
"X": -356.31348,
|
||||
"Y": 8.000001,
|
||||
"Z": 49.54602
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Fishermens' Guild",
|
||||
"[Limsa Lominsa] Arcanists' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004568,
|
||||
"Position": {
|
||||
"X": -356.31348,
|
||||
"Y": 7.9804688,
|
||||
"Z": 48.90515
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004570,
|
||||
"Position": {
|
||||
"X": -83.634705,
|
||||
"Y": 1.9378662,
|
||||
"Z": 826.10803
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001446,
|
||||
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001016,
|
||||
"Position": {
|
||||
"X": -42.679565,
|
||||
"Y": 39.999947,
|
||||
"Z": 119.920654
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "PurchaseItem",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
],
|
||||
"PurchaseMenu": {
|
||||
"ExcelSheet": "GilShop",
|
||||
"Key": 262186
|
||||
},
|
||||
"ItemId": 4870,
|
||||
"ItemCount": 1
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -82.249344,
|
||||
"Y": 2.1958525,
|
||||
"Z": 826.0164
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009735,
|
||||
"Position": {
|
||||
"X": -84.21454,
|
||||
"Y": 1.802455,
|
||||
"Z": 826.5963
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1575
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,113 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009739,
|
||||
"Position": {
|
||||
"X": -103.83765,
|
||||
"Y": 40,
|
||||
"Z": 113.206665
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000153,
|
||||
"Position": {
|
||||
"X": -44.87683,
|
||||
"Y": -1.2500024,
|
||||
"Z": 56.839844
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -103.88594,
|
||||
"Y": 41.50016,
|
||||
"Z": 119.898315
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Alchemists' Guild"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1002299,
|
||||
"Position": {
|
||||
"X": -98.8938,
|
||||
"Y": 40.200146,
|
||||
"Z": 120.83618
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009744,
|
||||
"Position": {
|
||||
"X": -47.470886,
|
||||
"Y": 40,
|
||||
"Z": 60.68506
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
],
|
||||
"NextQuestId": 1485
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,266 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Fishermens' Guild",
|
||||
"[Limsa Lominsa] Aetheryte Plaza"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001263,
|
||||
"Position": {
|
||||
"X": 181.41443,
|
||||
"Y": -2.3519497,
|
||||
"Z": -240.40594
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Lancers' Guild"
|
||||
],
|
||||
"TargetTerritoryId": 152
|
||||
},
|
||||
{
|
||||
"DataId": 1009754,
|
||||
"Position": {
|
||||
"X": -571.4351,
|
||||
"Y": 10.28263,
|
||||
"Z": 61.020752
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004581,
|
||||
"Position": {
|
||||
"X": 354.72632,
|
||||
"Y": 5.5999756,
|
||||
"Z": -30.167114
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2843
|
||||
],
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004582,
|
||||
"Position": {
|
||||
"X": 343.2821,
|
||||
"Y": 2.4261475,
|
||||
"Z": 8.895996
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2843
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004845,
|
||||
"Position": {
|
||||
"X": 362.50854,
|
||||
"Y": 1.663208,
|
||||
"Z": -18.478699
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST014_01574_Q1_000_000",
|
||||
"Answer": "TEXT_SUBPST014_01574_A1_000_001"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009755,
|
||||
"Position": {
|
||||
"X": 361.19617,
|
||||
"Y": 1.6090399,
|
||||
"Z": -18.448242
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009756,
|
||||
"Position": {
|
||||
"X": 377.40137,
|
||||
"Y": 0.37321654,
|
||||
"Z": 119.920654
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001263,
|
||||
"Position": {
|
||||
"X": 181.41443,
|
||||
"Y": -2.3519497,
|
||||
"Z": -240.40594
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Lancers' Guild"
|
||||
],
|
||||
"TargetTerritoryId": 152
|
||||
},
|
||||
{
|
||||
"DataId": 1009754,
|
||||
"Position": {
|
||||
"X": -571.4351,
|
||||
"Y": 10.28263,
|
||||
"Z": 61.020752
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009758,
|
||||
"Position": {
|
||||
"X": -161.24213,
|
||||
"Y": 7.554849,
|
||||
"Z": 107.10303
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004846,
|
||||
"Position": {
|
||||
"X": -181.44507,
|
||||
"Y": 8.0720215,
|
||||
"Z": 101.27405
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2863,
|
||||
3558
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009760,
|
||||
"Position": {
|
||||
"X": -235.21783,
|
||||
"Y": 6.619436,
|
||||
"Z": 609.39954
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009760,
|
||||
"Position": {
|
||||
"X": -235.21783,
|
||||
"Y": 6.619436,
|
||||
"Z": 609.39954
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1572
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,248 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006406,
|
||||
"Position": {
|
||||
"X": 63.156982,
|
||||
"Y": -13.3626,
|
||||
"Z": 140.91699
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 328.4609,
|
||||
"Y": -5.423937,
|
||||
"Z": 266.34305
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
3556,
|
||||
3557
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010405,
|
||||
"Position": {
|
||||
"X": 334.73718,
|
||||
"Y": -6.0854516,
|
||||
"Z": 270.74072
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST015_01575_Q1_000_070",
|
||||
"Answer": "TEXT_SUBPST015_01575_A1_001_070"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010407,
|
||||
"Position": {
|
||||
"X": 225.54358,
|
||||
"Y": -25.225279,
|
||||
"Z": 233.56982
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010408,
|
||||
"Position": {
|
||||
"X": 47.837036,
|
||||
"Y": -34.920486,
|
||||
"Z": 275.89832
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006406,
|
||||
"Position": {
|
||||
"X": 63.156982,
|
||||
"Y": -13.3626,
|
||||
"Z": 140.91699
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -31.059683,
|
||||
"Y": -40.708477,
|
||||
"Z": 195.24632
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010409,
|
||||
"Position": {
|
||||
"X": -20.279297,
|
||||
"Y": -34.656372,
|
||||
"Z": 172.13696
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006406,
|
||||
"Position": {
|
||||
"X": 63.156982,
|
||||
"Y": -13.3626,
|
||||
"Z": 140.91699
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010410,
|
||||
"Position": {
|
||||
"X": 9.567322,
|
||||
"Y": -10.024739,
|
||||
"Z": 22.934265
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010509,
|
||||
"Position": {
|
||||
"X": 63.370728,
|
||||
"Y": -13.485855,
|
||||
"Z": 141.86316
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 11,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -31.059683,
|
||||
"Y": -40.708477,
|
||||
"Z": 195.24632
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010409,
|
||||
"Position": {
|
||||
"X": -20.279297,
|
||||
"Y": -34.656372,
|
||||
"Z": 172.13696
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006406,
|
||||
"Position": {
|
||||
"X": 63.156982,
|
||||
"Y": -13.3626,
|
||||
"Z": 140.91699
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 243
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,217 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006211,
|
||||
"Position": {
|
||||
"X": -217.48688,
|
||||
"Y": 26.258211,
|
||||
"Z": -361.2574
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -255.1732,
|
||||
"Y": 27.485052,
|
||||
"Z": -324.7051
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2004884,
|
||||
"Position": {
|
||||
"X": -64.86609,
|
||||
"Y": -1.5411987,
|
||||
"Z": -69.50488
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004883,
|
||||
"Position": {
|
||||
"X": -53.635498,
|
||||
"Y": -1.3886108,
|
||||
"Z": -53.391357
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004882,
|
||||
"Position": {
|
||||
"X": -69.077576,
|
||||
"Y": -2.1820679,
|
||||
"Z": -32.913757
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006211,
|
||||
"Position": {
|
||||
"X": -217.48688,
|
||||
"Y": 26.258211,
|
||||
"Z": -361.2574
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006196,
|
||||
"Position": {
|
||||
"X": -63.98114,
|
||||
"Y": -20.296238,
|
||||
"Z": -5.142395
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -155.2711,
|
||||
"Y": -32.952675,
|
||||
"Z": 242.00226
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -155.2711,
|
||||
"Y": -32.952675,
|
||||
"Z": 242.00226
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": [
|
||||
3554,
|
||||
3555
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1010417,
|
||||
"Position": {
|
||||
"X": -154.37555,
|
||||
"Y": -31.787657,
|
||||
"Z": 244.7699
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006196,
|
||||
"Position": {
|
||||
"X": -63.98114,
|
||||
"Y": -20.296238,
|
||||
"Z": -5.142395
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006211,
|
||||
"Position": {
|
||||
"X": -217.48688,
|
||||
"Y": 26.258211,
|
||||
"Z": -361.2574
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||
"NextQuestId": 1577
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,197 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -99.05126,
|
||||
"Y": 19.82,
|
||||
"Z": 88.622086
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010419,
|
||||
"Position": {
|
||||
"X": -117.84546,
|
||||
"Y": 21.38377,
|
||||
"Z": 83.604126
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -90.47176,
|
||||
"Y": 22.179348,
|
||||
"Z": 116.58494
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010420,
|
||||
"Position": {
|
||||
"X": -10.208313,
|
||||
"Y": 39.51757,
|
||||
"Z": -1.8463745
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003597,
|
||||
"Position": {
|
||||
"X": 8.194031,
|
||||
"Y": 39.999973,
|
||||
"Z": 17.746216
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 129
|
||||
},
|
||||
{
|
||||
"DataId": 1010423,
|
||||
"Position": {
|
||||
"X": -20.73706,
|
||||
"Y": 19.999937,
|
||||
"Z": 4.257263
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002433,
|
||||
"Position": {
|
||||
"X": -6.729248,
|
||||
"Y": 20.333345,
|
||||
"Z": -0.7477417
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010423,
|
||||
"Position": {
|
||||
"X": -20.73706,
|
||||
"Y": 19.999937,
|
||||
"Z": 4.257263
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010424,
|
||||
"Position": {
|
||||
"X": -172.59485,
|
||||
"Y": 4.284276,
|
||||
"Z": 168.07812
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Fishermens' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000857,
|
||||
"Position": {
|
||||
"X": -165.27051,
|
||||
"Y": 5.2500057,
|
||||
"Z": 164.29382
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010424,
|
||||
"Position": {
|
||||
"X": -172.59485,
|
||||
"Y": 4.284276,
|
||||
"Z": 168.07812
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010521,
|
||||
"Position": {
|
||||
"X": -184.64948,
|
||||
"Y": 1.9999955,
|
||||
"Z": 201.28174
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 241
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,238 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 326.4774,
|
||||
"Y": 62.89536,
|
||||
"Z": -207.31602
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2004847,
|
||||
"Position": {
|
||||
"X": 323.62854,
|
||||
"Y": 62.974,
|
||||
"Z": -207.90424
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003908,
|
||||
"Position": {
|
||||
"X": 137.95679,
|
||||
"Y": 4.041112,
|
||||
"Z": -41.09259
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Sapphire Avenue Exchange"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001679,
|
||||
"Position": {
|
||||
"X": 140.48975,
|
||||
"Y": 4.0099983,
|
||||
"Z": -59.80017
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Sapphire Avenue Exchange",
|
||||
"[Ul'dah] Aetheryte Plaza"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -77.95643,
|
||||
"Y": -12.787907,
|
||||
"Z": -45.044247
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"Fly": true,
|
||||
"$": "Coffer & Coffin (outside)"
|
||||
},
|
||||
{
|
||||
"DataId": 1010341,
|
||||
"Position": {
|
||||
"X": -89.40265,
|
||||
"Y": -11.35,
|
||||
"Z": -40.146484
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010342,
|
||||
"Position": {
|
||||
"X": -189.50183,
|
||||
"Y": 16.85818,
|
||||
"Z": -418.8449
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010346,
|
||||
"Position": {
|
||||
"X": -207.44641,
|
||||
"Y": 18.499998,
|
||||
"Z": 73.899414
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Thaumaturges' Guild",
|
||||
"[Ul'dah] Aetheryte Plaza"
|
||||
],
|
||||
"NextQuestId": 496
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,190 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Fishermens' Guild",
|
||||
"[Limsa Lominsa] Aetheryte Plaza"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -371.6037,
|
||||
"Y": 54.310753,
|
||||
"Z": 428.55798
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006312,
|
||||
"Position": {
|
||||
"X": -369.0395,
|
||||
"Y": 54.28071,
|
||||
"Z": 441.24512
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -371.6037,
|
||||
"Y": 54.310753,
|
||||
"Z": 428.55798
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -250.51706,
|
||||
"Y": 48.854584,
|
||||
"Z": 462.12476
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2004858,
|
||||
"Position": {
|
||||
"X": -252.76575,
|
||||
"Y": 49.66809,
|
||||
"Z": 460.71558
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -371.6037,
|
||||
"Y": 54.310753,
|
||||
"Z": 428.55798
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006312,
|
||||
"Position": {
|
||||
"X": -369.0395,
|
||||
"Y": 54.28071,
|
||||
"Z": 441.24512
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -371.6037,
|
||||
"Y": 54.310753,
|
||||
"Z": 428.55798
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -133.36604,
|
||||
"Y": 70.192245,
|
||||
"Z": 746.02716
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 570.5895,
|
||||
"Y": 95.61268,
|
||||
"Z": -497.8778
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "WalkTo",
|
||||
"RestartNavigationIfCancelled": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 569.87854,
|
||||
"Y": 95.62417,
|
||||
"Z": -498.10028
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": [
|
||||
2861,
|
||||
3563,
|
||||
3562
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1010370,
|
||||
"Position": {
|
||||
"X": 569.87854,
|
||||
"Y": 95.62417,
|
||||
"Z": -498.10028
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST021_00241_Q1_000_000",
|
||||
"Answer": "TEXT_SUBPST021_00241_A1_000_001"
|
||||
}
|
||||
],
|
||||
"NextQuestId": 242
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,282 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Fishermens' Guild",
|
||||
"[Limsa Lominsa] Aetheryte Plaza"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001708,
|
||||
"Position": {
|
||||
"X": -250.3548,
|
||||
"Y": 18,
|
||||
"Z": 80.88806
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002279,
|
||||
"Position": {
|
||||
"X": -196.8872,
|
||||
"Y": 18.459997,
|
||||
"Z": 59.952637
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001708,
|
||||
"Position": {
|
||||
"X": -250.3548,
|
||||
"Y": 18,
|
||||
"Z": 80.88806
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001711,
|
||||
"Position": {
|
||||
"X": -241.62665,
|
||||
"Y": 18.8,
|
||||
"Z": 83.32947
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001294,
|
||||
"Position": {
|
||||
"X": -214.22144,
|
||||
"Y": 18.5,
|
||||
"Z": 72.129395
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001289,
|
||||
"Position": {
|
||||
"X": -207.90424,
|
||||
"Y": 18.5,
|
||||
"Z": 70.7865
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001288,
|
||||
"Position": {
|
||||
"X": -151.59845,
|
||||
"Y": 12,
|
||||
"Z": 16.220276
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001708,
|
||||
"Position": {
|
||||
"X": -250.3548,
|
||||
"Y": 18,
|
||||
"Z": 80.88806
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004886,
|
||||
"Position": {
|
||||
"X": -245.19727,
|
||||
"Y": 19.150085,
|
||||
"Z": 63.67578
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004885,
|
||||
"Position": {
|
||||
"X": -206.50043,
|
||||
"Y": 19.180542,
|
||||
"Z": 49.94275
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004887,
|
||||
"Position": {
|
||||
"X": -194.11005,
|
||||
"Y": 19.150085,
|
||||
"Z": 91.325195
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004888,
|
||||
"Position": {
|
||||
"X": -243.64087,
|
||||
"Y": 20.065613,
|
||||
"Z": 104.41736
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"IgnoreDistanceToObject": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001708,
|
||||
"Position": {
|
||||
"X": -250.3548,
|
||||
"Y": 18,
|
||||
"Z": 80.88806
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004889,
|
||||
"Position": {
|
||||
"X": -136.55304,
|
||||
"Y": 11.9782715,
|
||||
"Z": 23.5141
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1574
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -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": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001787,
|
||||
"Position": {
|
||||
"X": -62.119568,
|
||||
"Y": 18.000334,
|
||||
"Z": 9.414734
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -339.63614,
|
||||
"Y": -2.097362,
|
||||
"Z": 142.24135
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1005249,
|
||||
"Position": {
|
||||
"X": -337.30072,
|
||||
"Y": -2.1811728,
|
||||
"Z": 141.31372
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003586,
|
||||
"Position": {
|
||||
"X": -342.12262,
|
||||
"Y": -1.0249884,
|
||||
"Z": 111.46704
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 139
|
||||
},
|
||||
{
|
||||
"DataId": 1010434,
|
||||
"Position": {
|
||||
"X": 241.74866,
|
||||
"Y": -0.96623325,
|
||||
"Z": 257.12976
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010435,
|
||||
"Position": {
|
||||
"X": 340.04736,
|
||||
"Y": -2.5074248,
|
||||
"Z": 104.600464
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010435,
|
||||
"Position": {
|
||||
"X": 340.04736,
|
||||
"Y": -2.5074248,
|
||||
"Z": 104.600464
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FinishCombatIfAny",
|
||||
"KillEnemyDataIds": [
|
||||
3559,
|
||||
3560
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1010437,
|
||||
"Position": {
|
||||
"X": 271.59534,
|
||||
"Y": 25.732939,
|
||||
"Z": -100.35864
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -339.63614,
|
||||
"Y": -2.097362,
|
||||
"Z": 142.24135
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1005249,
|
||||
"Position": {
|
||||
"X": -337.30072,
|
||||
"Y": -2.1811728,
|
||||
"Z": 141.31372
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003586,
|
||||
"Position": {
|
||||
"X": -342.12262,
|
||||
"Y": -1.0249884,
|
||||
"Z": 111.46704
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 139
|
||||
},
|
||||
{
|
||||
"DataId": 1010438,
|
||||
"Position": {
|
||||
"X": 275.28796,
|
||||
"Y": -0.93098116,
|
||||
"Z": 231.61658
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 244
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,230 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006493,
|
||||
"Position": {
|
||||
"X": -437.67456,
|
||||
"Y": -55.694504,
|
||||
"Z": 100.87732
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004864,
|
||||
"Position": {
|
||||
"X": -381.70447,
|
||||
"Y": -58.42682,
|
||||
"Z": 167.74243
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001487
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -393.1081,
|
||||
"Y": -57.326912,
|
||||
"Z": 155.15263
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2004877,
|
||||
"Position": {
|
||||
"X": -299.48883,
|
||||
"Y": -40.665344,
|
||||
"Z": 7.095398
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -422.0606,
|
||||
"Y": -55.802967,
|
||||
"Z": 107.502235
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
|
||||
"DataId": 1006493,
|
||||
"Position": {
|
||||
"X": -437.67456,
|
||||
"Y": -55.694504,
|
||||
"Z": 100.87732
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004866,
|
||||
"Position": {
|
||||
"X": -382.22327,
|
||||
"Y": -58.42682,
|
||||
"Z": 168.65796
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -393.1081,
|
||||
"Y": -57.326912,
|
||||
"Z": 155.15263
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -1.83288,
|
||||
"Y": -17.544205,
|
||||
"Z": 23.35826
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006495,
|
||||
"Position": {
|
||||
"X": -2.2736206,
|
||||
"Y": -17.544205,
|
||||
"Z": 24.734863
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -1.4535733,
|
||||
"Y": -8.0592985,
|
||||
"Z": 1.7329537
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 435.9292,
|
||||
"Y": 9.87471,
|
||||
"Z": 143.03693
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2004868,
|
||||
"Position": {
|
||||
"X": 438.6206,
|
||||
"Y": 12.436096,
|
||||
"Z": 137.6211
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001489
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004869,
|
||||
"Position": {
|
||||
"X": 438.6206,
|
||||
"Y": 12.436096,
|
||||
"Z": 137.6211
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001488
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010377,
|
||||
"Position": {
|
||||
"X": -382.83362,
|
||||
"Y": -59.300003,
|
||||
"Z": 169.75659
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"NextQuestId": 240
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,231 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009949,
|
||||
"Position": {
|
||||
"X": -325.70386,
|
||||
"Y": 7.228748,
|
||||
"Z": -215.16754
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Botanists' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009952,
|
||||
"Position": {
|
||||
"X": 41.61133,
|
||||
"Y": 1.8386029,
|
||||
"Z": -117.265625
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Botanists' Guild",
|
||||
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000768,
|
||||
"Position": {
|
||||
"X": 172.35059,
|
||||
"Y": 15.5,
|
||||
"Z": -89.951965
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000227,
|
||||
"Position": {
|
||||
"X": 168.62744,
|
||||
"Y": 15.699999,
|
||||
"Z": -65.690125
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000228,
|
||||
"Position": {
|
||||
"X": 168.20007,
|
||||
"Y": 15.69998,
|
||||
"Z": -64.83563
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009952,
|
||||
"Position": {
|
||||
"X": 41.61133,
|
||||
"Y": 1.8386029,
|
||||
"Z": -117.265625
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000243,
|
||||
"Position": {
|
||||
"X": 170.03125,
|
||||
"Y": 15.699999,
|
||||
"Z": -127.03143
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009952,
|
||||
"Position": {
|
||||
"X": 41.61133,
|
||||
"Y": 1.8386029,
|
||||
"Z": -117.265625
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -374.96555,
|
||||
"Y": 63.686344,
|
||||
"Z": -206.74146
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2863
|
||||
],
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Leatherworkers' Guild & Shaded Bower",
|
||||
"[Gridania] White Wolf Gate (Central Shroud)"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001276,
|
||||
"Position": {
|
||||
"X": 13.961914,
|
||||
"Y": 0.1373291,
|
||||
"Z": 2.090454
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009953,
|
||||
"Position": {
|
||||
"X": 31.5708,
|
||||
"Y": -19.000002,
|
||||
"Z": 100.48059
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Airship Landing"
|
||||
],
|
||||
"NextQuestId": 36
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,217 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -139.04318,
|
||||
"Y": 8.522301,
|
||||
"Z": 280.0128
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006751,
|
||||
"Position": {
|
||||
"X": -139.45221,
|
||||
"Y": 8.712891,
|
||||
"Z": 281.69678
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010813,
|
||||
"Position": {
|
||||
"X": 218.92114,
|
||||
"Y": 10.293846,
|
||||
"Z": -75.12018
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "rally",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010814,
|
||||
"Position": {
|
||||
"X": -47.837036,
|
||||
"Y": 3.0947418,
|
||||
"Z": -44.663208
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "cheer",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -166.19086,
|
||||
"Y": 8.399985,
|
||||
"Z": -64.10584
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"$": "Buscarron SE steps"
|
||||
},
|
||||
{
|
||||
"DataId": 1010815,
|
||||
"Position": {
|
||||
"X": -168.26129,
|
||||
"Y": 9.869229,
|
||||
"Z": -79.54535
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST030_00362_Q1_000_000",
|
||||
"Answer": "TEXT_SUBPST030_00362_A1_000_001"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010816,
|
||||
"Position": {
|
||||
"X": 22.079773,
|
||||
"Y": -19.000006,
|
||||
"Z": 106.1875
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Airship Landing"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000106,
|
||||
"Position": {
|
||||
"X": 29.007324,
|
||||
"Y": -19.000002,
|
||||
"Z": 105.485596
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 128
|
||||
},
|
||||
{
|
||||
"DataId": 1010818,
|
||||
"Position": {
|
||||
"X": -13.01593,
|
||||
"Y": 91.5,
|
||||
"Z": -18.234558
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003583,
|
||||
"Position": {
|
||||
"X": -7.248047,
|
||||
"Y": 91.49999,
|
||||
"Z": -16.128845
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 128
|
||||
},
|
||||
{
|
||||
"DataId": 1010819,
|
||||
"Position": {
|
||||
"X": 17.013733,
|
||||
"Y": 40.216007,
|
||||
"Z": -3.8605957
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST030_00362_Q2_000_000",
|
||||
"Answer": "TEXT_SUBPST030_00362_A2_000_001"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010822,
|
||||
"Position": {
|
||||
"X": -209.88788,
|
||||
"Y": 54.829185,
|
||||
"Z": -196.03265
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,261 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009781,
|
||||
"Position": {
|
||||
"X": -89.829956,
|
||||
"Y": 5.2000036,
|
||||
"Z": 45.426025
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004614,
|
||||
"Position": {
|
||||
"X": -80.76605,
|
||||
"Y": 8.895996,
|
||||
"Z": -16.739136
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001459,
|
||||
"IgnoreDistanceToObject": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004616,
|
||||
"Position": {
|
||||
"X": -98.1308,
|
||||
"Y": 8.987488,
|
||||
"Z": -16.617126
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001459,
|
||||
"IgnoreDistanceToObject": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -113.42244,
|
||||
"Y": 7.9935846,
|
||||
"Z": -8.936225
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1001859,
|
||||
"Position": {
|
||||
"X": -142.71765,
|
||||
"Y": 11.999999,
|
||||
"Z": -15.610046
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009789,
|
||||
"Position": {
|
||||
"X": -159.68573,
|
||||
"Y": 12.596368,
|
||||
"Z": 0.869751
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -117.18245,
|
||||
"Y": 9.232903,
|
||||
"Z": 9.133285
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1009785,
|
||||
"Position": {
|
||||
"X": -88.15143,
|
||||
"Y": 5.200004,
|
||||
"Z": 45.303955
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001675,
|
||||
"Position": {
|
||||
"X": -89.49426,
|
||||
"Y": 7.008118,
|
||||
"Z": 10.849121
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "welcome"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -112.38632,
|
||||
"Y": 7.6503563,
|
||||
"Z": 9.034383
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1009792,
|
||||
"Position": {
|
||||
"X": -135.36285,
|
||||
"Y": 10.9999895,
|
||||
"Z": 0.015197754
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009791,
|
||||
"Position": {
|
||||
"X": -13.778931,
|
||||
"Y": 3.9999998,
|
||||
"Z": -151.4458
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 44.151344,
|
||||
"Y": 4.0195827,
|
||||
"Z": -165.77715
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -172.42809,
|
||||
"Y": 16.059729,
|
||||
"Z": 276.30084
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2853,
|
||||
3120
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009794,
|
||||
"Position": {
|
||||
"X": -174.45642,
|
||||
"Y": 16.149345,
|
||||
"Z": 275.6847
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1573
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,116 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009153,
|
||||
"Position": {
|
||||
"X": -39.108948,
|
||||
"Y": 20,
|
||||
"Z": 5.416931
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006279,
|
||||
"Position": {
|
||||
"X": -231.4336,
|
||||
"Y": 21.512743,
|
||||
"Z": 339.49792
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011650,
|
||||
"Position": {
|
||||
"X": 557.6714,
|
||||
"Y": 20.721313,
|
||||
"Z": 454.24573
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011650,
|
||||
"Position": {
|
||||
"X": 557.6714,
|
||||
"Y": 20.721313,
|
||||
"Z": 454.24573
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "soothe"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011651,
|
||||
"Position": {
|
||||
"X": 8.804443,
|
||||
"Y": 71.18964,
|
||||
"Z": -15.182739
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_SUBPST026_00496_Q1_000_000",
|
||||
"Answer": "TEXT_SUBPST026_00496_A1_000_001"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011652,
|
||||
"Position": {
|
||||
"X": 532.9823,
|
||||
"Y": 44.02837,
|
||||
"Z": 540.3982
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"Fly": true,
|
||||
"NextQuestId": 362
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Starr",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011145,
|
||||
"Position": {
|
||||
"X": -65.38495,
|
||||
"Y": 0.06979119,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gold Saucer",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025176,
|
||||
"Position": {
|
||||
"X": 57.99951,
|
||||
"Y": 3.9997258,
|
||||
"Z": 64.774536
|
||||
},
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,46 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Starr",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011145,
|
||||
"Position": {
|
||||
"X": -65.38495,
|
||||
"Y": 0.06979119,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gold Saucer",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016307,
|
||||
"Position": {
|
||||
"X": 57.14502,
|
||||
"Y": 20.99973,
|
||||
"Z": 83.57361
|
||||
},
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Gold Saucer] Aetheryte Plaza",
|
||||
"[Gold Saucer] Wonder Square East"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,57 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Starr",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010464,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.8903663E-06,
|
||||
"Z": -65.61273
|
||||
},
|
||||
"TerritoryId": 388,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gold Saucer",
|
||||
"AethernetShortcut": [
|
||||
"[Gold Saucer] Aetheryte Plaza",
|
||||
"[Gold Saucer] Chocobo Square"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
144
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010472,
|
||||
"Position": {
|
||||
"X": -53.26935,
|
||||
"Y": 0.3093315,
|
||||
"Z": 69.41321
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"Fly": true,
|
||||
"NextQuestId": 565
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Starr",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011060,
|
||||
"Position": {
|
||||
"X": -96.87958,
|
||||
"Y": -0.86297023,
|
||||
"Z": 67.826294
|
||||
},
|
||||
"TerritoryId": 144,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gold Saucer",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Yes": true,
|
||||
"Prompt": "TEXT_SUBGSC102_00437_Q1_000_000"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,55 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Starr",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010472,
|
||||
"Position": {
|
||||
"X": -53.26935,
|
||||
"Y": 0.3093315,
|
||||
"Z": 69.41321
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010464,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.8903663E-06,
|
||||
"Z": -65.61273
|
||||
},
|
||||
"TerritoryId": 388,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Gold Saucer",
|
||||
"AethernetShortcut": [
|
||||
"[Gold Saucer] Aetheryte Plaza",
|
||||
"[Gold Saucer] Chocobo Square"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [
|
||||
388,
|
||||
144
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,172 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003601,
|
||||
"Position": {
|
||||
"X": -3.2807007,
|
||||
"Y": 39.51757,
|
||||
"Z": -9.414856
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
128
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005516,
|
||||
"Position": {
|
||||
"X": -46.0365,
|
||||
"Y": 40,
|
||||
"Z": 63.767456
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005515,
|
||||
"Position": {
|
||||
"X": -44.449524,
|
||||
"Y": 39.999996,
|
||||
"Z": 61.81433
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "doubt"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001000,
|
||||
"Position": {
|
||||
"X": -32.028687,
|
||||
"Y": 41.499985,
|
||||
"Z": 208.39233
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000153,
|
||||
"Position": {
|
||||
"X": -44.87683,
|
||||
"Y": -1.2500024,
|
||||
"Z": 56.839844
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -103.88594,
|
||||
"Y": 41.50016,
|
||||
"Z": 119.898315
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Alchemists' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1002299,
|
||||
"Position": {
|
||||
"X": -98.8938,
|
||||
"Y": 40.200146,
|
||||
"Z": 120.83618
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005515,
|
||||
"Position": {
|
||||
"X": -44.449524,
|
||||
"Y": 39.999996,
|
||||
"Z": 61.81433
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -17,125 +18,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017351,
|
||||
"Position": {
|
||||
"X": -74.87604,
|
||||
"Y": -8.172172,
|
||||
"Z": 158.70898
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Craft",
|
||||
"ItemId": 15725,
|
||||
"ItemCount": 3
|
||||
},
|
||||
{
|
||||
"DataId": 1017352,
|
||||
"Position": {
|
||||
"X": -56.809387,
|
||||
"Y": -8.866012,
|
||||
"Z": 161.8219
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017353,
|
||||
"Position": {
|
||||
"X": -33.554626,
|
||||
"Y": -8.866012,
|
||||
"Z": 163.43933
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -104.788086,
|
||||
"Y": -8.655561,
|
||||
"Z": 194.60593
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1017354,
|
||||
"Position": {
|
||||
"X": -104.41754,
|
||||
"Y": -8.6555605,
|
||||
"Z": 193.16394
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1017355,
|
||||
"Position": {
|
||||
"X": -110.97894,
|
||||
"Y": -8.866015,
|
||||
"Z": 247.94385
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
@ -148,7 +30,21 @@
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
"AetheryteShortcut": "The Churning Mists - Zenith",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -335.56116,
|
||||
"Y": 59.003433,
|
||||
"Z": 313.98486
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"MaximumDistance": 50
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -17,59 +18,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017406,
|
||||
"Position": {
|
||||
"X": -95.04846,
|
||||
"Y": 79.8345,
|
||||
"Z": -301.80823
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017407,
|
||||
"Position": {
|
||||
"X": -128.34369,
|
||||
"Y": 125.92322,
|
||||
"Z": -314.6258
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Craft",
|
||||
"ItemId": 15736,
|
||||
"ItemCount": 3
|
||||
},
|
||||
{
|
||||
"DataId": 1017408,
|
||||
"Position": {
|
||||
"X": -108.59851,
|
||||
"Y": 122.442116,
|
||||
"Z": -318.31848
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -17,177 +18,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017471,
|
||||
"Position": {
|
||||
"X": -391.0735,
|
||||
"Y": 59.9946,
|
||||
"Z": 303.1814
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -255.2606,
|
||||
"Y": -24.29513,
|
||||
"Z": 737.67456
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1017409,
|
||||
"Position": {
|
||||
"X": -254.71893,
|
||||
"Y": -24.295156,
|
||||
"Z": 738.5519
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007244,
|
||||
"Position": {
|
||||
"X": -658.9609,
|
||||
"Y": 94.25488,
|
||||
"Z": -417.07483
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Churning Mists - Zenith",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -673.58887,
|
||||
"Y": 93.64293,
|
||||
"Z": -506.5746
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2007245,
|
||||
"Position": {
|
||||
"X": -671.1376,
|
||||
"Y": 93.91919,
|
||||
"Z": -507.49982
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2007246,
|
||||
"Position": {
|
||||
"X": -813.1685,
|
||||
"Y": 94.865234,
|
||||
"Z": -457.3282
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -255.2606,
|
||||
"Y": -24.29513,
|
||||
"Z": 737.67456
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "The Churning Mists - Zenith",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1017409,
|
||||
"Position": {
|
||||
"X": -254.71893,
|
||||
"Y": -24.295156,
|
||||
"Z": 738.5519
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Craft",
|
||||
"ItemId": 15737,
|
||||
"ItemCount": 1
|
||||
},
|
||||
{
|
||||
"DataId": 1017410,
|
||||
"Position": {
|
||||
"X": -246.2044,
|
||||
"Y": -24.295149,
|
||||
"Z": 760.7384
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
|
@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -17,72 +18,6 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017470,
|
||||
"Position": {
|
||||
"X": -353.53632,
|
||||
"Y": 60.896175,
|
||||
"Z": 299.61084
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007264,
|
||||
"Position": {
|
||||
"X": 508.32373,
|
||||
"Y": -0.77819824,
|
||||
"Z": -360.49445
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Roar",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007265,
|
||||
"Position": {
|
||||
"X": 613.39734,
|
||||
"Y": -11.917358,
|
||||
"Z": -335.6222
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Roar",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2007266,
|
||||
"Position": {
|
||||
"X": 554.0398,
|
||||
"Y": 50.644653,
|
||||
"Z": -393.72858
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Roar",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
|
@ -78,8 +78,7 @@
|
||||
{
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 37,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 37
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -42,8 +42,7 @@
|
||||
{
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 39,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 39
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -59,8 +59,7 @@
|
||||
{
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 34,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 34
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -110,8 +110,7 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 31,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 31
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -62,8 +62,7 @@
|
||||
{
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 38,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 38
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -77,8 +77,7 @@
|
||||
{
|
||||
"TerritoryId": 463,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 141,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 141
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -57,8 +57,7 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 182,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 182
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -109,8 +109,7 @@
|
||||
{
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 219,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 219
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,84 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Thaksin",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011931,
|
||||
"Position": {
|
||||
"X": 56.839844,
|
||||
"Y": -49.92323,
|
||||
"Z": -135.91211
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005617,
|
||||
"Position": {
|
||||
"X": 197.22278,
|
||||
"Y": -99.931335,
|
||||
"Z": 644.4646
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2005618,
|
||||
"Position": {
|
||||
"X": 287.64783,
|
||||
"Y": -94.10242,
|
||||
"Z": 597.9553
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011931,
|
||||
"Position": {
|
||||
"X": 56.839844,
|
||||
"Y": -49.92323,
|
||||
"Z": -135.91211
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 1793
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,118 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Thaksin",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011931,
|
||||
"Position": {
|
||||
"X": 56.839844,
|
||||
"Y": -49.92323,
|
||||
"Z": -135.91211
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005636,
|
||||
"Position": {
|
||||
"X": -247.21143,
|
||||
"Y": -77.62268,
|
||||
"Z": 819.4857
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2005635,
|
||||
"Position": {
|
||||
"X": -187.24353,
|
||||
"Y": -84.85547,
|
||||
"Z": 733.51636
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2005633,
|
||||
"Position": {
|
||||
"X": -273.518,
|
||||
"Y": -82.47504,
|
||||
"Z": 644.6478
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2005634,
|
||||
"Position": {
|
||||
"X": -307.3015,
|
||||
"Y": -80.1557,
|
||||
"Z": 665.6748
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011931,
|
||||
"Position": {
|
||||
"X": 56.839844,
|
||||
"Y": -49.92323,
|
||||
"Z": -135.91211
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"Fly": true,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,63 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Thaksin",
|
||||
"QuestSequence": [
|
||||
{
|
||||
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012287,
|
||||
"Position": {
|
||||
"X": -28.397034,
|
||||
"Y": 100.969696,
|
||||
"Z": -186.4195
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 301.43185,
|
||||
"Y": 76.142914,
|
||||
"Z": 171.03389
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 4020,
|
||||
"MinimumKillCount": 3
|
||||
}
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012287,
|
||||
"Position": {
|
||||
"X": -28.397034,
|
||||
"Y": 100.969696,
|
||||
"Z": -186.4195
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
]
|
||||
}
|
@ -1,104 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Thaksin",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013651,
|
||||
"Position": {
|
||||
"X": -475.76105,
|
||||
"Y": 155.8605,
|
||||
"Z": -209.76581
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -654.5463,
|
||||
"Y": 148.56897,
|
||||
"Z": 187.12466
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1013655,
|
||||
"Position": {
|
||||
"X": -669.9169,
|
||||
"Y": 154.30952,
|
||||
"Z": 191.08862
|
||||
},
|
||||
"Land": true,
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -894.6883,
|
||||
"Y": 215.50499,
|
||||
"Z": 157.66754
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 5047,
|
||||
"Position": {
|
||||
"X": -894.9264,
|
||||
"Y": 215.16266,
|
||||
"Z": 155.29102
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
5047,
|
||||
5048
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -654.5463,
|
||||
"Y": 148.56897,
|
||||
"Z": 187.12466
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1013655,
|
||||
"Position": {
|
||||
"X": -669.9169,
|
||||
"Y": 154.30952,
|
||||
"Z": 191.08862
|
||||
},
|
||||
"Land": true,
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,112 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Thaksin",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013655,
|
||||
"Position": {
|
||||
"X": -669.9169,
|
||||
"Y": 154.30952,
|
||||
"Z": 191.08862
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013656,
|
||||
"Position": {
|
||||
"X": -617.8836,
|
||||
"Y": 150.38008,
|
||||
"Z": 327.19922
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013659,
|
||||
"Position": {
|
||||
"X": -617.76154,
|
||||
"Y": 153.8528,
|
||||
"Z": 349.35522
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact"
|
||||
},
|
||||
{
|
||||
"DataId": 5049,
|
||||
"Position": {
|
||||
"X": -617.76154,
|
||||
"Y": 153.8528,
|
||||
"Z": 349.35522
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
5046,
|
||||
5049
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013659,
|
||||
"Position": {
|
||||
"X": -617.76154,
|
||||
"Y": 153.8528,
|
||||
"Z": 349.35522
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1013656,
|
||||
"Position": {
|
||||
"X": -617.8836,
|
||||
"Y": 150.38008,
|
||||
"Z": 327.19922
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012133,
|
||||
"Position": {
|
||||
"X": -26.840637,
|
||||
"Y": 206.49944,
|
||||
"Z": 28.67163
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Idyllshire"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,134 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025602,
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"Mount": true,
|
||||
"AetheryteShortcut": "Azim Steppe - Dhoro Iloh",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"MaximumDistance": 50
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025925,
|
||||
"Position": {
|
||||
"X": -702.17444,
|
||||
"Y": 127.5686,
|
||||
"Z": 112.291016
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 622,
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1025797,
|
||||
"Position": {
|
||||
"X": -364.7975,
|
||||
"Y": 76.98169,
|
||||
"Z": -579.2172
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025798,
|
||||
"Position": {
|
||||
"X": -366.2318,
|
||||
"Y": 76.98169,
|
||||
"Z": -580.31586
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestAcceptedJob": ["DoH"]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Craft",
|
||||
"ItemId": 22736,
|
||||
"ItemCount": 2,
|
||||
"RequiredQuestAcceptedJob": ["DoH"]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Gather",
|
||||
"ItemsToGather": [
|
||||
{
|
||||
"ItemId": 22632,
|
||||
"ItemCount": 1
|
||||
}
|
||||
],
|
||||
"RequiredQuestAcceptedJob": ["Miner"]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Gather",
|
||||
"ItemsToGather": [
|
||||
{
|
||||
"ItemId": 22658,
|
||||
"ItemCount": 1
|
||||
}
|
||||
],
|
||||
"RequiredQuestAcceptedJob": ["Botanist"]
|
||||
},
|
||||
{
|
||||
"DataId": 1025602,
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Mount": true,
|
||||
"AetheryteShortcut": "Azim Steppe - Dhoro Iloh",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"MaximumDistance": 50
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,134 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025602,
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"Mount": true,
|
||||
"AetheryteShortcut": "Azim Steppe - Dhoro Iloh",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"MaximumDistance": 50
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025925,
|
||||
"Position": {
|
||||
"X": -702.17444,
|
||||
"Y": 127.5686,
|
||||
"Z": 112.291016
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 622,
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1025799,
|
||||
"Position": {
|
||||
"X": -175.03625,
|
||||
"Y": 66.81902,
|
||||
"Z": -437.43042
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025800,
|
||||
"Position": {
|
||||
"X": -172.74744,
|
||||
"Y": 67.39905,
|
||||
"Z": -436.60645
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredCurrentJob": ["DoH"]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Craft",
|
||||
"ItemId": 22737,
|
||||
"ItemCount": 1,
|
||||
"RequiredCurrentJob": ["DoH"]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Gather",
|
||||
"ItemsToGather": [
|
||||
{
|
||||
"ItemId": 22633,
|
||||
"ItemCount": 2
|
||||
}
|
||||
],
|
||||
"RequiredQuestAcceptedJob": ["Miner"]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Gather",
|
||||
"ItemsToGather": [
|
||||
{
|
||||
"ItemId": 22659,
|
||||
"ItemCount": 2
|
||||
}
|
||||
],
|
||||
"RequiredQuestAcceptedJob": ["Botanist"]
|
||||
},
|
||||
{
|
||||
"DataId": 1025602,
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Mount": true,
|
||||
"AetheryteShortcut": "Azim Steppe - Dhoro Iloh",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"MaximumDistance": 50
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -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": 1025602,
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"Mount": true,
|
||||
"AetheryteShortcut": "Azim Steppe - Dhoro Iloh",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"MaximumDistance": 50
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025925,
|
||||
"Position": {
|
||||
"X": -702.17444,
|
||||
"Y": 127.5686,
|
||||
"Z": 112.291016
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 622,
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1025801,
|
||||
"Position": {
|
||||
"X": -609.49115,
|
||||
"Y": 41.834953,
|
||||
"Z": 139.75732
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025802,
|
||||
"Position": {
|
||||
"X": -232.89844,
|
||||
"Y": 55.466682,
|
||||
"Z": -329.15234
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025602,
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Mount": true,
|
||||
"AetheryteShortcut": "Azim Steppe - Dhoro Iloh",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"MaximumDistance": 50
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -87,8 +87,7 @@
|
||||
{
|
||||
"TerritoryId": 680,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 238,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 238
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -114,8 +114,7 @@
|
||||
{
|
||||
"TerritoryId": 614,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 241,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 241
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -114,8 +114,7 @@
|
||||
{
|
||||
"TerritoryId": 620,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 242,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 242
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -98,8 +98,7 @@
|
||||
{
|
||||
"TerritoryId": 621,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 279,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 279
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -40,8 +40,7 @@
|
||||
{
|
||||
"TerritoryId": 614,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 585,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 585
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -27,8 +27,7 @@
|
||||
{
|
||||
"TerritoryId": 829,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 611,
|
||||
"AutoDutyEnabled": true
|
||||
"ContentFinderConditionId": 611
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,84 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Thaksin",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1026200,
|
||||
"Position": {
|
||||
"X": 26.901611,
|
||||
"Y": 0,
|
||||
"Z": 36.362183
|
||||
},
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -516.5388,
|
||||
"Y": 146.04834,
|
||||
"Z": -357.0811
|
||||
},
|
||||
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Idyllshire",
|
||||
"AethernetShortcut": [
|
||||
"[Idyllshire] Aetheryte Plaza",
|
||||
"[Idyllshire] Prologue Gate (Western Hinterlands)"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [
|
||||
399
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1026201,
|
||||
"Position": {
|
||||
"X": -617.2427,
|
||||
"Y": 146.86842,
|
||||
"Z": 62.150024
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 584
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1026202,
|
||||
"Position": {
|
||||
"X": -611.6274,
|
||||
"Y": 146.86842,
|
||||
"Z": 57.87744
|
||||
},
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,77 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1026852,
|
||||
"Position": {
|
||||
"X": 63.126587,
|
||||
"Y": 14.005002,
|
||||
"Z": 89.86035
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
131
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1035094,
|
||||
"Position": {
|
||||
"X": 101.21301,
|
||||
"Y": 9.738088,
|
||||
"Z": 630.88416
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Weavers' Guild",
|
||||
"[Ul'dah] Gate of Thal (Central Thanalan)"
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1026852,
|
||||
"Position": {
|
||||
"X": 63.126587,
|
||||
"Y": 14.005002,
|
||||
"Z": 89.86035
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"NextQuestId": 3990
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,219 +0,0 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1035095,
|
||||
"Position": {
|
||||
"X": 63.004395,
|
||||
"Y": 14.005002,
|
||||
"Z": 89.829834
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
131
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1035096,
|
||||
"Position": {
|
||||
"X": 130.84607,
|
||||
"Y": 11.999016,
|
||||
"Z": -82.108826
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kugane",
|
||||
"AethernetShortcut": [
|
||||
"[Kugane] Aetheryte Plaza",
|
||||
"[Kugane] Sekiseigumi Barracks"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_JOBAOZ630_03990_Q1_000_000",
|
||||
"Answer": "TEXT_JOBAOZ630_03990_A1_000_002"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1019038,
|
||||
"Position": {
|
||||
"X": -55.222473,
|
||||
"Y": -2.9000003,
|
||||
"Z": -65.65961
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Kugane] Sekiseigumi Barracks",
|
||||
"[Kugane] Shiokaze Hostelry"
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1019069,
|
||||
"Position": {
|
||||
"X": -62.119568,
|
||||
"Y": 8,
|
||||
"Z": -56.62628
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1035099,
|
||||
"Position": {
|
||||
"X": -36.728516,
|
||||
"Y": 14.000002,
|
||||
"Z": -52.170654
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1035096,
|
||||
"Position": {
|
||||
"X": 130.84607,
|
||||
"Y": 11.999016,
|
||||
"Z": -82.108826
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Kugane",
|
||||
"AethernetShortcut": [
|
||||
"[Kugane] Aetheryte Plaza",
|
||||
"[Kugane] Sekiseigumi Barracks"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1035103,
|
||||
"Position": {
|
||||
"X": 56.77881,
|
||||
"Y": 4.05,
|
||||
"Z": 92.36279
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Kugane] Sekiseigumi Barracks",
|
||||
"[Kugane] Kogane Dori Markets"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1035104,
|
||||
"Position": {
|
||||
"X": 153.42944,
|
||||
"Y": 18.1,
|
||||
"Z": 50.70569
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Kugane] Kogane Dori Markets",
|
||||
"[Kugane] The Ruby Bazaar"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1035097,
|
||||
"Position": {
|
||||
"X": 151.87305,
|
||||
"Y": 18.1,
|
||||
"Z": 49.484985
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1035096,
|
||||
"Position": {
|
||||
"X": 130.84607,
|
||||
"Y": 11.999016,
|
||||
"Z": -82.108826
|
||||
},
|
||||
"TerritoryId": 628,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Kugane] The Ruby Bazaar",
|
||||
"[Kugane] Sekiseigumi Barracks"
|
||||
],
|
||||
"NextQuestId": 3991
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user