forked from liza/Questionable
Compare commits
130 Commits
35a42ec54d
...
4f6914d835
Author | SHA1 | Date | |
---|---|---|---|
4f6914d835 | |||
4bd0b990b9 | |||
01ad85e243 | |||
07dd0705e0 | |||
b72a49ccd5 | |||
da8117848d | |||
6aca596c67 | |||
|
878f0b1ad1 | ||
|
94e20fdcbf | ||
|
20e9319f32 | ||
|
61b3abc3cd | ||
|
367c00c79c | ||
|
098a19fec2 | ||
4767af7cc5 | |||
01c88ecb84 | |||
07286839cf | |||
4aa4032cd1 | |||
361a3ff5f8 | |||
0ac2e36afd | |||
26ad97c9e2 | |||
|
1c4fb29205 | ||
09f8cb9078 | |||
3b6dc2e03b | |||
7d7a4d32e8 | |||
88a4310028 | |||
e7a2bb0cba | |||
|
a96cdc99f6 | ||
411b121f62 | |||
|
19aa2e90fd | ||
|
27663c765d | ||
|
eba0902bd1 | ||
|
565022589d | ||
|
c2a16e1ec1 | ||
|
1d3b9a9426 | ||
|
f30b6792bf | ||
|
189087a85b | ||
|
d9d95f17a8 | ||
|
f1698d4652 | ||
0c36dd324f | |||
4b75388ddc | |||
e72a57fff4 | |||
8c77cb7e95 | |||
cd16cf93a3 | |||
f7d56663d2 | |||
4f4ad144a0 | |||
e1cbdbf951 | |||
2f8c72cbea | |||
3f6a6cd8a9 | |||
66e9a71847 | |||
d4a9bb5f9b | |||
2aa14db916 | |||
e54732e798 | |||
|
798160c250 | ||
|
7453f9269e | ||
|
fa3b0db309 | ||
d3e0bba06c | |||
2e9c663158 | |||
14257c73ac | |||
e87b7df4c2 | |||
822f78a4d8 | |||
878d4db618 | |||
d520c4cb11 | |||
a06a3f2335 | |||
2389beb056 | |||
e3fee58bd0 | |||
dfd38a311b | |||
b85ab8afe7 | |||
7e9070950e | |||
721f9617a3 | |||
5288cc6e31 | |||
21fde119ba | |||
55e2cd300b | |||
14ec91330a | |||
|
29a95329c7 | ||
|
0e54bfa908 | ||
9251111b05 | |||
fc72f52ee3 | |||
5c51689508 | |||
dd98352a0c | |||
5d49096325 | |||
43b796561b | |||
d9f9c93ec4 | |||
b65beb1bb8 | |||
|
251cd2ebfd | ||
338ca335ac | |||
|
a45bf3f950 | ||
|
3efaa9de8b | ||
|
3ba10fae34 | ||
07de5666f5 | |||
|
2601c1ef73 | ||
|
870b103e36 | ||
|
9e65a7aa54 | ||
|
b1572f5832 | ||
|
2a2e3cafb9 | ||
|
ba12a34523 | ||
73b03b3cc1 | |||
f0ae8701c0 | |||
c23ba27103 | |||
412d157f0d | |||
01d120efe8 | |||
800799ddba | |||
9671e08afd | |||
bbd3c16516 | |||
8243d14993 | |||
0a37d129b9 | |||
8e2098caef | |||
c268256ce3 | |||
affe5a1168 | |||
14a69446fa | |||
|
6f8693340c | ||
|
f824749172 | ||
|
e5d0660d7e | ||
4ad101b8ed | |||
b590390b5c | |||
cc4a573b2d | |||
687df259a7 | |||
6b03ff30dc | |||
b8080ae1ff | |||
c6c74d941a | |||
f12c7bf9f5 | |||
3c219ae7d0 | |||
f2591790f7 | |||
|
824285aefd | ||
|
67c8cd2c99 | ||
|
b3b1ceb962 | ||
|
8100017a16 | ||
|
8c6449c326 | ||
|
71c13b6742 | ||
|
36126c5bdc | ||
|
da332f503c |
@ -1,5 +1,5 @@
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<Version>3.2</Version>
|
||||
<Version>3.7</Version>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
@ -121,7 +121,7 @@ public sealed class RendererPlugin : IDalamudPlugin
|
||||
if (!directory.Exists)
|
||||
return;
|
||||
|
||||
_pluginLog.Information($"Loading locations from {directory}");
|
||||
//_pluginLog.Information($"Loading locations from {directory}");
|
||||
foreach (FileInfo fileInfo in directory.GetFiles("*.json"))
|
||||
{
|
||||
try
|
||||
|
@ -35,7 +35,7 @@ internal sealed class EditorWindow : Window
|
||||
public EditorWindow(RendererPlugin plugin, EditorCommands editorCommands, IDataManager dataManager,
|
||||
ITargetManager targetManager, IClientState clientState, IObjectTable objectTable)
|
||||
: base("Gathering Path Editor###QuestionableGatheringPathEditor",
|
||||
ImGuiWindowFlags.NoFocusOnAppearing | ImGuiWindowFlags.NoNavFocus)
|
||||
ImGuiWindowFlags.NoFocusOnAppearing | ImGuiWindowFlags.NoNavFocus | ImGuiWindowFlags.AlwaysAutoResize)
|
||||
{
|
||||
_plugin = plugin;
|
||||
_editorCommands = editorCommands;
|
||||
@ -46,7 +46,7 @@ internal sealed class EditorWindow : Window
|
||||
|
||||
SizeConstraints = new WindowSizeConstraints
|
||||
{
|
||||
MinimumSize = new Vector2(300, 300),
|
||||
MinimumSize = new Vector2(300, 100),
|
||||
};
|
||||
|
||||
RespectCloseHotkey = false;
|
||||
@ -66,7 +66,7 @@ internal sealed class EditorWindow : Window
|
||||
|
||||
_target = _targetManager.Target;
|
||||
var gatheringLocations = _plugin.GetLocationsInTerritory(_clientState.TerritoryType);
|
||||
var location = gatheringLocations.SelectMany(context =>
|
||||
var location = gatheringLocations.ToList().SelectMany(context =>
|
||||
context.Root.Groups.SelectMany(group =>
|
||||
group.Nodes.SelectMany(node => node.Locations
|
||||
.Select(location =>
|
||||
|
@ -40,7 +40,7 @@
|
||||
"Z": 634.821
|
||||
},
|
||||
"MinimumAngle": 45,
|
||||
"MaximumAngle": 90,
|
||||
"MaximumAngle": 65,
|
||||
"MinimumDistance": 1.6,
|
||||
"MaximumDistance": 3
|
||||
},
|
||||
@ -140,4 +140,4 @@
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
@ -0,0 +1,140 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||
"Author": "liza",
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 329.38184,
|
||||
"Y": 9.586891,
|
||||
"Z": 749.2314
|
||||
},
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Il Mheg - Lydha Lran",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 351.29465,
|
||||
"Y": -38.275272,
|
||||
"Z": 763.0457
|
||||
},
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"DisableNavmesh": true
|
||||
}
|
||||
],
|
||||
"Groups": [
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32832,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 382.7488,
|
||||
"Y": -72.47251,
|
||||
"Z": 794.3513
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 388.7861,
|
||||
"Y": -74.19925,
|
||||
"Z": 801.0947
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 386.1797,
|
||||
"Y": -73.5009,
|
||||
"Z": 787.0967
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 32831,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 396.5799,
|
||||
"Y": -76.29187,
|
||||
"Z": 790.9022
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32830,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 492.6384,
|
||||
"Y": -82.73045,
|
||||
"Z": 804.714
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 482.808,
|
||||
"Y": -82.61642,
|
||||
"Z": 802.591
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 32829,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 493.5814,
|
||||
"Y": -82.43644,
|
||||
"Z": 790.831
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32827,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 490.9451,
|
||||
"Y": -97.88062,
|
||||
"Z": 636.6115
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 32828,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 491.5274,
|
||||
"Y": -100.762,
|
||||
"Z": 626.6958
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,158 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||
"Author": "liza",
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 491.82068,
|
||||
"Y": 3.9304812,
|
||||
"Z": 487.9401
|
||||
},
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Il Mheg - Lydha Lran",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 506.00256,
|
||||
"Y": -37.76961,
|
||||
"Z": 485.49347
|
||||
},
|
||||
"TerritoryId": 816,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"DisableNavmesh": true
|
||||
}
|
||||
],
|
||||
"Groups": [
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32836,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 539.5437,
|
||||
"Y": -81.62054,
|
||||
"Z": 520.1647
|
||||
},
|
||||
"MinimumAngle": -30,
|
||||
"MaximumAngle": 165
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 555.8599,
|
||||
"Y": -73.65717,
|
||||
"Z": 494.6164
|
||||
},
|
||||
"MinimumAngle": 35,
|
||||
"MaximumAngle": 240
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 576.4164,
|
||||
"Y": -69.75835,
|
||||
"Z": 512.9263
|
||||
},
|
||||
"MinimumAngle": -75,
|
||||
"MaximumAngle": 70
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 32835,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 552.5504,
|
||||
"Y": -78.23183,
|
||||
"Z": 512.429
|
||||
},
|
||||
"MinimumAngle": -30,
|
||||
"MaximumAngle": 135
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32838,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 652.7063,
|
||||
"Y": -46.64378,
|
||||
"Z": 488.4543
|
||||
},
|
||||
"MinimumAngle": 0,
|
||||
"MaximumAngle": 120
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 669.2959,
|
||||
"Y": -47.14824,
|
||||
"Z": 513.9606
|
||||
},
|
||||
"MinimumAngle": -20,
|
||||
"MaximumAngle": 105
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 32837,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 659.1685,
|
||||
"Y": -46.65159,
|
||||
"Z": 499.8015
|
||||
},
|
||||
"MinimumAngle": 0,
|
||||
"MaximumAngle": 125
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 32834,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 576.1583,
|
||||
"Y": -46.68682,
|
||||
"Z": 375.5306
|
||||
},
|
||||
"MinimumAngle": -40,
|
||||
"MaximumAngle": 150
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 32833,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 571.1834,
|
||||
"Y": -46.41214,
|
||||
"Z": 360.5112
|
||||
},
|
||||
"MinimumAngle": 0,
|
||||
"MaximumAngle": 115
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -45,8 +45,10 @@
|
||||
"Y": 58.56588,
|
||||
"Z": -533.6083
|
||||
},
|
||||
"MinimumAngle": 155,
|
||||
"MaximumAngle": 325
|
||||
"MinimumAngle": 185,
|
||||
"MaximumAngle": 225,
|
||||
"MinimumDistance": 2,
|
||||
"MaximumDistance": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -131,4 +133,4 @@
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
69
GatheringPaths/6.x - Endwalker/Ultima Thule/910__MIN.json
Normal file
69
GatheringPaths/6.x - Endwalker/Ultima Thule/910__MIN.json
Normal file
@ -0,0 +1,69 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 960,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Ultima Thule - Abode of the Ea"
|
||||
}
|
||||
],
|
||||
"Groups": [
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34379,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 454.8535,
|
||||
"Y": 307.5555,
|
||||
"Z": -590.8547
|
||||
},
|
||||
"MinimumAngle": -105,
|
||||
"MaximumAngle": -25,
|
||||
"MinimumDistance": 1,
|
||||
"MaximumDistance": 1.6
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34380,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 447.787,
|
||||
"Y": 300.8405,
|
||||
"Z": -597.8972
|
||||
},
|
||||
"MinimumAngle": 45,
|
||||
"MaximumAngle": 185
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34381,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 448.707,
|
||||
"Y": 305.0525,
|
||||
"Z": -591.1053
|
||||
},
|
||||
"MinimumAngle": 30,
|
||||
"MaximumAngle": 70
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
69
GatheringPaths/6.x - Endwalker/Ultima Thule/913__BTN.json
Normal file
69
GatheringPaths/6.x - Endwalker/Ultima Thule/913__BTN.json
Normal file
@ -0,0 +1,69 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/GatheringPaths/gatheringlocation-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 960,
|
||||
"InteractionType": "None",
|
||||
"AetheryteShortcut": "Ultima Thule - Abode of the Ea"
|
||||
}
|
||||
],
|
||||
"Groups": [
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34388,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 398.7177,
|
||||
"Y": 292.5112,
|
||||
"Z": -462.82
|
||||
},
|
||||
"MinimumAngle": -65,
|
||||
"MaximumAngle": 65
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34389,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 373.1678,
|
||||
"Y": 290.8189,
|
||||
"Z": -442.4228
|
||||
},
|
||||
"MinimumAngle": 160,
|
||||
"MaximumAngle": 305
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Nodes": [
|
||||
{
|
||||
"DataId": 34390,
|
||||
"Locations": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 383.5671,
|
||||
"Y": 289.9682,
|
||||
"Z": -392.3997
|
||||
},
|
||||
"MinimumAngle": 65,
|
||||
"MaximumAngle": 165,
|
||||
"MinimumDistance": 1,
|
||||
"MaximumDistance": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
2
LLib
2
LLib
@ -1 +1 @@
|
||||
Subproject commit 43c3dba112c202e2d0ff1a6909020c2b83e20dc3
|
||||
Subproject commit 6dfc18ee6a187138036ee2d51ba2257741c1e568
|
@ -32,6 +32,10 @@ internal static class DialogueChoiceExtensions
|
||||
Assignment(nameof(DialogueChoice.Answer), dialogueChoice.Answer,
|
||||
emptyChoice.Answer)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.PromptIsRegularExpression),
|
||||
dialogueChoice.PromptIsRegularExpression,
|
||||
emptyChoice.PromptIsRegularExpression)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.AnswerIsRegularExpression),
|
||||
dialogueChoice.AnswerIsRegularExpression,
|
||||
emptyChoice.AnswerIsRegularExpression)
|
||||
|
28
QuestPathGenerator/RoslynElements/PurchaseMenuExtensions.cs
Normal file
28
QuestPathGenerator/RoslynElements/PurchaseMenuExtensions.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using Microsoft.CodeAnalysis.CSharp;
|
||||
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
||||
using Questionable.Model.Questing;
|
||||
using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory;
|
||||
using static Questionable.QuestPathGenerator.RoslynShortcuts;
|
||||
|
||||
namespace Questionable.QuestPathGenerator.RoslynElements;
|
||||
|
||||
internal static class PurchaseMenuExtensions
|
||||
{
|
||||
public static ExpressionSyntax ToExpressionSyntax(this PurchaseMenu purchaseMenu)
|
||||
{
|
||||
PurchaseMenu emptyMenu = new();
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(PurchaseMenu)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment(nameof(PurchaseMenu.ExcelSheet), purchaseMenu.ExcelSheet,
|
||||
emptyMenu.ExcelSheet)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(PurchaseMenu.Key), purchaseMenu.Key,
|
||||
emptyMenu.Key)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
}
|
@ -118,8 +118,8 @@ internal static class QuestStepExtensions
|
||||
AssignmentList(nameof(QuestStep.RequiredQuestVariables),
|
||||
step.RequiredQuestVariables)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(QuestStep.RequiredGatheredItems),
|
||||
step.RequiredGatheredItems),
|
||||
AssignmentList(nameof(QuestStep.ItemsToGather),
|
||||
step.ItemsToGather),
|
||||
AssignmentList(nameof(QuestStep.CompletionQuestVariablesFlags),
|
||||
step.CompletionQuestVariablesFlags)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
@ -127,6 +127,8 @@ internal static class QuestStepExtensions
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(QuestStep.PointMenuChoices), step.PointMenuChoices)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.PurchaseMenu), step.PurchaseMenu, emptyStep.PurchaseMenu)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.PickUpQuestId), step.PickUpQuestId,
|
||||
emptyStep.PickUpQuestId)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
|
@ -65,6 +65,8 @@ internal static class SkipConditionsExtensions
|
||||
skipStepConditions.QuestsAccepted).AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(SkipStepConditions.QuestsCompleted),
|
||||
skipStepConditions.QuestsCompleted).AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(SkipStepConditions.NotNamePlateIconId),
|
||||
skipStepConditions.NotNamePlateIconId).AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(SkipStepConditions.AetheryteLocked),
|
||||
skipStepConditions.AetheryteLocked, emptyStep.AetheryteLocked)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
|
@ -57,6 +57,7 @@ public static class RoslynShortcuts
|
||||
DialogueChoice dialogueChoice => dialogueChoice.ToExpressionSyntax(),
|
||||
JumpDestination jumpDestination => jumpDestination.ToExpressionSyntax(),
|
||||
ExcelRef excelRef => excelRef.ToExpressionSyntax(),
|
||||
PurchaseMenu purchaseMenu => purchaseMenu.ToExpressionSyntax(),
|
||||
ComplexCombatData complexCombatData => complexCombatData.ToExpressionSyntax(),
|
||||
QuestWorkValue questWorkValue => questWorkValue.ToExpressionSyntax(),
|
||||
List<QuestWorkValue> list => list.ToExpressionSyntax(), // TODO fix in AssignmentList
|
||||
|
@ -68,7 +68,14 @@
|
||||
"StopDistance": 15,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Heavy Shot",
|
||||
"CompletionQuestVariablesFlags": [null, null, null, null, null, 2]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -80,7 +87,14 @@
|
||||
"InteractionType": "WalkTo",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [null, null, null, null, null, 4]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
4
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -95,7 +109,14 @@
|
||||
"StopDistance": 15,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Heavy Shot",
|
||||
"CompletionQuestVariablesFlags": [null, null, null, null, null, 4]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -107,7 +128,14 @@
|
||||
"InteractionType": "WalkTo",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [null, null, null, null, null, 8]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -122,7 +150,14 @@
|
||||
"StopDistance": 15,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Heavy Shot",
|
||||
"CompletionQuestVariablesFlags": [null, null, null, null, null, 8]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -156,7 +191,14 @@
|
||||
"StopDistance": 15,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Heavy Shot",
|
||||
"CompletionQuestVariablesFlags": [null, null, null, null, null, 16]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -190,7 +232,14 @@
|
||||
"StopDistance": 15,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Heavy Shot",
|
||||
"CompletionQuestVariablesFlags": [null, null, null, null, null, 32]
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -253,7 +302,9 @@
|
||||
"[Gridania] Lancers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"StepIf": { "AetheryteUnlocked": "East Shroud - Hawthorne Hut" }
|
||||
"StepIf": {
|
||||
"AetheryteUnlocked": "East Shroud - Hawthorne Hut"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -33,6 +33,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Gather",
|
||||
"ItemsToGather": [
|
||||
{
|
||||
"ItemId": 5106,
|
||||
"ItemCount": 10
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1002298,
|
||||
"Position": {
|
||||
@ -54,13 +64,7 @@
|
||||
131
|
||||
]
|
||||
}
|
||||
},
|
||||
"RequiredGatheredItems": [
|
||||
{
|
||||
"ItemId": 5106,
|
||||
"ItemCount": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -33,6 +33,16 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Gather",
|
||||
"ItemsToGather": [
|
||||
{
|
||||
"ItemId": 5432,
|
||||
"ItemCount": 10
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1002298,
|
||||
"Position": {
|
||||
@ -54,13 +64,7 @@
|
||||
131
|
||||
]
|
||||
}
|
||||
},
|
||||
"RequiredGatheredItems": [
|
||||
{
|
||||
"ItemId": 5432,
|
||||
"ItemCount": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -16,7 +16,10 @@
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [130, 131]
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
},
|
||||
"AethernetShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
@ -49,7 +52,9 @@
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2000817,
|
||||
"KillEnemyDataIds": [1925],
|
||||
"KillEnemyDataIds": [
|
||||
1925
|
||||
],
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"Fly": true
|
||||
}
|
||||
|
@ -21,7 +21,10 @@
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [130, 131]
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
},
|
||||
"AethernetShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
@ -73,7 +76,9 @@
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"DelaySecondsAtStart": 0,
|
||||
"KillEnemyDataIds": [1926]
|
||||
"KillEnemyDataIds": [
|
||||
1926
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -21,7 +21,10 @@
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [130, 131]
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
},
|
||||
"AethernetShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
@ -56,7 +59,9 @@
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"CombatDelaySecondsAtStart": 0,
|
||||
"KillEnemyDataIds": [1927]
|
||||
"KillEnemyDataIds": [
|
||||
1927
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -21,7 +21,10 @@
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [130, 131]
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
},
|
||||
"AethernetShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
@ -180,7 +183,11 @@
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"CombatDelaySecondsAtStart": 0,
|
||||
"KillEnemyDataIds": [81,345,348]
|
||||
"KillEnemyDataIds": [
|
||||
81,
|
||||
345,
|
||||
348
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -21,7 +21,10 @@
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [130, 131]
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
},
|
||||
"AethernetShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
|
@ -179,7 +179,9 @@
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [131],
|
||||
"KillEnemyDataIds": [
|
||||
131
|
||||
],
|
||||
"CombatDelaySecondsAtStart": 1
|
||||
},
|
||||
{
|
||||
@ -203,7 +205,9 @@
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [131],
|
||||
"KillEnemyDataIds": [
|
||||
131
|
||||
],
|
||||
"CombatDelaySecondsAtStart": 1
|
||||
},
|
||||
{
|
||||
@ -227,7 +231,9 @@
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [131],
|
||||
"KillEnemyDataIds": [
|
||||
131
|
||||
],
|
||||
"CombatDelaySecondsAtStart": 1
|
||||
},
|
||||
{
|
||||
@ -251,7 +257,9 @@
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [131],
|
||||
"KillEnemyDataIds": [
|
||||
131
|
||||
],
|
||||
"CombatDelaySecondsAtStart": 1
|
||||
}
|
||||
]
|
||||
|
@ -110,7 +110,9 @@
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [771],
|
||||
"KillEnemyDataIds": [
|
||||
771
|
||||
],
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"CombatDelaySecondsAtStart": 0,
|
||||
|
@ -1,42 +1,44 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Cacahuetes",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{ "DataId": 1000895,
|
||||
"Position": {
|
||||
"X": -335.74432,
|
||||
"Y": 12.899764,
|
||||
"Z": 1.3884888
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest"}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{ "DataId": 1000909,
|
||||
"Position": {
|
||||
"X": -326.37524,
|
||||
"Y": 12.899658,
|
||||
"Z": 9.994568
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_CLSACN011_00452_Q1_000_000",
|
||||
"Yes": true
|
||||
}
|
||||
],
|
||||
"NextQuestId": 454
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Cacahuetes",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000895,
|
||||
"Position": {
|
||||
"X": -335.74432,
|
||||
"Y": 12.899764,
|
||||
"Z": 1.3884888
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000909,
|
||||
"Position": {
|
||||
"X": -326.37524,
|
||||
"Y": 12.899658,
|
||||
"Z": 9.994568
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_CLSACN011_00452_Q1_000_000",
|
||||
"Yes": true
|
||||
}
|
||||
],
|
||||
"NextQuestId": 454
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,6 +1,9 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": ["Cacahuetes", "liza"],
|
||||
"Author": [
|
||||
"Cacahuetes",
|
||||
"liza"
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
@ -22,7 +22,9 @@
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [133]
|
||||
"InTerritory": [
|
||||
133
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -70,7 +72,9 @@
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [294],
|
||||
"KillEnemyDataIds": [
|
||||
294
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
|
@ -1,158 +1,160 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Cacahuetes",
|
||||
"QuestSequence": [
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Cacahuetes",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000692,
|
||||
"Position": {
|
||||
"X": -258.8083,
|
||||
"Y": -5.7735243,
|
||||
"Z": -27.267883
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
],
|
||||
"InteractionType": "AcceptQuest",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
133
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001263,
|
||||
"Position": {
|
||||
"X": 181.41443,
|
||||
"Y": -2.3519497,
|
||||
"Z": -240.40594
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 152,
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Conjurers' Guild",
|
||||
"[Gridania] Lancers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"StepIf": {"AetheryteUnlocked": "East Shroud - Hawthorne Hut"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1000767,
|
||||
"Position": {
|
||||
"X": -483.42108,
|
||||
"Y": 10.130882,
|
||||
"Z": 209.46057
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2000885,
|
||||
"Position": {
|
||||
"X": -510.6655,
|
||||
"Y": 5.8422394,
|
||||
"Z": 35.87895
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
295
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000767,
|
||||
"Position": {
|
||||
"X": -483.42108,
|
||||
"Y": 10.130882,
|
||||
"Z": 209.46057
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2000887,
|
||||
"Position": {
|
||||
"X": -510.76526,
|
||||
"Y": 6.1798096,
|
||||
"Z": 35.568726
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000767,
|
||||
"Position": {
|
||||
"X": -483.42108,
|
||||
"Y": 10.130882,
|
||||
"Z": 209.46057
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000692,
|
||||
"Position": {
|
||||
"X": -258.8083,
|
||||
"Y": -5.7735243,
|
||||
"Z": -27.267883
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
],
|
||||
"NextQuestId": 92
|
||||
}
|
||||
]
|
||||
"DataId": 1000692,
|
||||
"Position": {
|
||||
"X": -258.8083,
|
||||
"Y": -5.7735243,
|
||||
"Z": -27.267883
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
],
|
||||
"InteractionType": "AcceptQuest",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true,
|
||||
"InTerritory": [
|
||||
133
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001263,
|
||||
"Position": {
|
||||
"X": 181.41443,
|
||||
"Y": -2.3519497,
|
||||
"Z": -240.40594
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 152,
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Conjurers' Guild",
|
||||
"[Gridania] Lancers' Guild"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"AetheryteUnlocked": "East Shroud - Hawthorne Hut"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1000767,
|
||||
"Position": {
|
||||
"X": -483.42108,
|
||||
"Y": 10.130882,
|
||||
"Z": 209.46057
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2000885,
|
||||
"Position": {
|
||||
"X": -510.6655,
|
||||
"Y": 5.8422394,
|
||||
"Z": 35.87895
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
295
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000767,
|
||||
"Position": {
|
||||
"X": -483.42108,
|
||||
"Y": 10.130882,
|
||||
"Z": 209.46057
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2000887,
|
||||
"Position": {
|
||||
"X": -510.76526,
|
||||
"Y": 6.1798096,
|
||||
"Z": 35.568726
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000767,
|
||||
"Position": {
|
||||
"X": -483.42108,
|
||||
"Y": 10.130882,
|
||||
"Z": 209.46057
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000692,
|
||||
"Position": {
|
||||
"X": -258.8083,
|
||||
"Y": -5.7735243,
|
||||
"Z": -27.267883
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
],
|
||||
"NextQuestId": 92
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -57,13 +57,12 @@
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 49.65071,
|
||||
"Y": -8.046952,
|
||||
"Z": 102.32186
|
||||
"X": 40.596844,
|
||||
"Y": -8,
|
||||
"Z": 103.85207
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "New Gridania Navmesh workaround"
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1000460,
|
||||
|
@ -17,25 +17,24 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
|
||||
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
|
||||
{
|
||||
"DataId": 353,
|
||||
"Position": {
|
||||
"X": 112.41321,
|
||||
"Y": 28.93967,
|
||||
"Z": -37.277832
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [352,353]
|
||||
},
|
||||
"DataId": 353,
|
||||
"Position": {
|
||||
"X": 112.41321,
|
||||
"Y": 28.93967,
|
||||
"Z": -37.277832
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [
|
||||
352,
|
||||
353
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 125.61467,
|
||||
|
@ -1,6 +1,9 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": ["liza", "JerryWester"],
|
||||
"Author": [
|
||||
"liza",
|
||||
"JerryWester"
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
@ -80,16 +80,60 @@
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000868,
|
||||
"Position": {
|
||||
"X": -192.00433,
|
||||
"Y": 0.9999907,
|
||||
"Z": 211.68835
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 138
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Lower La Noscea - Moraby Drydocks",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"AetheryteUnlocked": "Lower La Noscea - Moraby Drydocks"
|
||||
},
|
||||
"AethernetShortcutIf": {
|
||||
"AetheryteUnlocked": "Lower La Noscea - Moraby Drydocks"
|
||||
},
|
||||
"StepIf": {
|
||||
"AetheryteUnlocked": "Lower La Noscea - Moraby Drydocks"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Middle La Noscea - Summerford Farms",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Zephyr Gate (Middle La Noscea)"
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"AetheryteUnlocked": "Middle La Noscea - Summerford Farms"
|
||||
},
|
||||
"AethernetShortcutIf": {
|
||||
"AetheryteUnlocked": "Middle La Noscea - Summerford Farms"
|
||||
},
|
||||
"StepIf": {
|
||||
"AetheryteUnlocked": "Middle La Noscea - Summerford Farms"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Western La Noscea - Swiftperch",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"AetheryteUnlocked": "Western La Noscea - Swiftperch"
|
||||
},
|
||||
"StepIf": {
|
||||
"AetheryteUnlocked": "Western La Noscea - Swiftperch"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003393,
|
||||
@ -99,7 +143,8 @@
|
||||
"Z": 351.76624
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -26,6 +26,50 @@
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.37885,
|
||||
"Y": 224.99997,
|
||||
"Z": -295.45523
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.70758,
|
||||
"Y": 221.5,
|
||||
"Z": -287.7873
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (middle/top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.45218,
|
||||
"Y": 221.5,
|
||||
"Z": -287.28427
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (middle/bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.5105,
|
||||
"Y": 218.1,
|
||||
"Z": -297.2496
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -491.4813,
|
||||
@ -60,9 +104,9 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.5307,
|
||||
"Y": 219.52408,
|
||||
"Z": -292.88748
|
||||
"X": -421.5105,
|
||||
"Y": 218.1,
|
||||
"Z": -297.2496
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
@ -70,13 +114,36 @@
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.45395,
|
||||
"Y": 223.30249,
|
||||
"Z": -291.59283
|
||||
"X": -421.45218,
|
||||
"Y": 221.5,
|
||||
"Z": -287.28427
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)"
|
||||
"Comment": "North Whitebrim, Stairs (middle/bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.70758,
|
||||
"Y": 221.5,
|
||||
"Z": -287.7873
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (middle/top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.37885,
|
||||
"Y": 224.99997,
|
||||
"Z": -295.45523
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006461,
|
||||
|
@ -43,9 +43,9 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.5307,
|
||||
"Y": 219.52408,
|
||||
"Z": -292.88748
|
||||
"X": -421.5105,
|
||||
"Y": 218.1,
|
||||
"Z": -297.2496
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
@ -53,13 +53,36 @@
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.45395,
|
||||
"Y": 223.30249,
|
||||
"Z": -291.59283
|
||||
"X": -421.45218,
|
||||
"Y": 221.5,
|
||||
"Z": -287.28427
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)"
|
||||
"Comment": "North Whitebrim, Stairs (middle/bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.70758,
|
||||
"Y": 221.5,
|
||||
"Z": -287.7873
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (middle/top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.37885,
|
||||
"Y": 224.99997,
|
||||
"Z": -295.45523
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006442,
|
||||
@ -76,6 +99,50 @@
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.37885,
|
||||
"Y": 224.99997,
|
||||
"Z": -295.45523
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.70758,
|
||||
"Y": 221.5,
|
||||
"Z": -287.7873
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (middle/top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.45218,
|
||||
"Y": 221.5,
|
||||
"Z": -287.28427
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (middle/bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.5105,
|
||||
"Y": 218.1,
|
||||
"Z": -297.2496
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006443,
|
||||
"Position": {
|
||||
|
@ -142,9 +142,9 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.5307,
|
||||
"Y": 219.52408,
|
||||
"Z": -292.88748
|
||||
"X": -421.5105,
|
||||
"Y": 218.1,
|
||||
"Z": -297.2496
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
@ -152,13 +152,36 @@
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.45395,
|
||||
"Y": 223.30249,
|
||||
"Z": -291.59283
|
||||
"X": -421.45218,
|
||||
"Y": 221.5,
|
||||
"Z": -287.28427
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)"
|
||||
"Comment": "North Whitebrim, Stairs (middle/bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.70758,
|
||||
"Y": 221.5,
|
||||
"Z": -287.7873
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (middle/top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.37885,
|
||||
"Y": 224.99997,
|
||||
"Z": -295.45523
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1007567,
|
||||
|
@ -28,23 +28,47 @@
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.45395,
|
||||
"Y": 223.30249,
|
||||
"Z": -291.59283
|
||||
"X": -417.37885,
|
||||
"Y": 224.99997,
|
||||
"Z": -295.45523
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (top)"
|
||||
"Comment": "North Whitebrim, Stairs (top)",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.5307,
|
||||
"Y": 219.52408,
|
||||
"Z": -292.88748
|
||||
"X": -417.70758,
|
||||
"Y": 221.5,
|
||||
"Z": -287.7873
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (bottom)"
|
||||
"Comment": "North Whitebrim, Stairs (middle/top)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.45218,
|
||||
"Y": 221.5,
|
||||
"Z": -287.28427
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (middle/bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -421.5105,
|
||||
"Y": 218.1,
|
||||
"Z": -297.2496
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "North Whitebrim, Stairs (bottom)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006466,
|
||||
|
@ -27,7 +27,6 @@
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
|
||||
"DataId": 2002327,
|
||||
"Position": {
|
||||
"X": 423.17834,
|
||||
|
@ -1,6 +1,9 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": ["JerryWester", "liza"],
|
||||
"Author": [
|
||||
"JerryWester",
|
||||
"liza"
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
@ -0,0 +1,40 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000206,
|
||||
"Position": {
|
||||
"X": 193.59119,
|
||||
"Y": -0.015319824,
|
||||
"Z": 42.160645
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000233,
|
||||
"Position": {
|
||||
"X": 168.65796,
|
||||
"Y": 15.5,
|
||||
"Z": -95.99457
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Archers' Guild",
|
||||
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,85 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000263,
|
||||
"Position": {
|
||||
"X": 141.55786,
|
||||
"Y": 15.5,
|
||||
"Z": -274.43353
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 112.12561,
|
||||
"Y": 16.504576,
|
||||
"Z": -268.8553
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 37,
|
||||
"MinimumKillCount": 6,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 6
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
],
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Lancers' Guild",
|
||||
"[Gridania] Blue Badger Gate (Central Shroud)"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 129.21268,
|
||||
"Y": 25.16017,
|
||||
"Z": -318.4288
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"TargetTerritoryId": 132
|
||||
},
|
||||
{
|
||||
"DataId": 1000263,
|
||||
"Position": {
|
||||
"X": 141.55786,
|
||||
"Y": 15.5,
|
||||
"Z": -274.43353
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Lancers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,142 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000768,
|
||||
"Position": {
|
||||
"X": 172.35059,
|
||||
"Y": 15.5,
|
||||
"Z": -89.951965
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 157.92119,
|
||||
"Y": 15.700001,
|
||||
"Z": -122.177925
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "WalkTo",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1000238,
|
||||
"Position": {
|
||||
"X": 155.41309,
|
||||
"Y": 15.700001,
|
||||
"Z": -121.812805
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 162.74281,
|
||||
"Y": 15.699926,
|
||||
"Z": -59.43834
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "WalkTo",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1000218,
|
||||
"Position": {
|
||||
"X": 164.72107,
|
||||
"Y": 15.699947,
|
||||
"Z": -58.18268
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000214,
|
||||
"Position": {
|
||||
"X": 151.4762,
|
||||
"Y": 15.699964,
|
||||
"Z": -63.920105
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000248,
|
||||
"Position": {
|
||||
"X": 143.05322,
|
||||
"Y": 14.250365,
|
||||
"Z": -250.72101
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Leatherworkers' Guild & Shaded Bower",
|
||||
"[Gridania] Lancers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,149 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000286,
|
||||
"Position": {
|
||||
"X": -53.574463,
|
||||
"Y": 7.2025366,
|
||||
"Z": -118.36426
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2000022,
|
||||
"Position": {
|
||||
"X": -52.71997,
|
||||
"Y": 6.7596436,
|
||||
"Z": -109.9718
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2000020,
|
||||
"Position": {
|
||||
"X": -63.09613,
|
||||
"Y": 6.94281,
|
||||
"Z": -110.85681
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2000021,
|
||||
"Position": {
|
||||
"X": -37.979797,
|
||||
"Y": 5.996765,
|
||||
"Z": -101.76245
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2000025,
|
||||
"Position": {
|
||||
"X": -47.80658,
|
||||
"Y": 5.722107,
|
||||
"Z": -99.4126
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2000024,
|
||||
"Position": {
|
||||
"X": -53.75763,
|
||||
"Y": 6.4850464,
|
||||
"Z": -89.52472
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2000023,
|
||||
"Position": {
|
||||
"X": -43.808716,
|
||||
"Y": 6.4850464,
|
||||
"Z": -85.80151
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000286,
|
||||
"Position": {
|
||||
"X": -53.574463,
|
||||
"Y": 7.2025366,
|
||||
"Z": -118.36426
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000788,
|
||||
"Position": {
|
||||
"X": -43.90027,
|
||||
"Y": 7.0877223,
|
||||
"Z": -136.70563
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000429,
|
||||
"Position": {
|
||||
"X": 56.50415,
|
||||
"Y": 7.9990244,
|
||||
"Z": -132.12793
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,118 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_CHRHDB101_01204_Q1_000_1",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"DataId": 1005709,
|
||||
"Position": {
|
||||
"X": -464.16425,
|
||||
"Y": -26.945036,
|
||||
"Z": 85.40466
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||
"Fly": true,
|
||||
"Position": {
|
||||
"X": -273.9414,
|
||||
"Y": 9.756445,
|
||||
"Z": 222.65837
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FateEnemies",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 2390
|
||||
},
|
||||
{
|
||||
"DataId": 2391
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"DataId": 1005709,
|
||||
"Position": {
|
||||
"X": -464.16425,
|
||||
"Y": -26.945036,
|
||||
"Z": 85.40466
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||
"Fly": true,
|
||||
"DataId": 1005710,
|
||||
"Position": {
|
||||
"X": 4.4403076,
|
||||
"Y": 7.2767544,
|
||||
"Z": 885.55725
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_CHRHDB101_01204_Q2_000_1",
|
||||
"Answer": "TEXT_CHRHDB101_01204_Q2A2_000_2"
|
||||
}
|
||||
],
|
||||
"NextQuestId": 1205
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,98 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005711,
|
||||
"Position": {
|
||||
"X": 4.837097,
|
||||
"Y": 7.4445505,
|
||||
"Z": 884.70276
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"DataId": 1004333,
|
||||
"Position": {
|
||||
"X": -101.854004,
|
||||
"Y": 4.0131226,
|
||||
"Z": -98.95477
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1004331,
|
||||
"Position": {
|
||||
"X": -20.096191,
|
||||
"Y": 4.9999676,
|
||||
"Z": -133.22656
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001313,
|
||||
"Position": {
|
||||
"X": 16.372864,
|
||||
"Y": 7.9999795,
|
||||
"Z": -106.21808
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1206
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,137 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"DataId": 1001691,
|
||||
"Position": {
|
||||
"X": 142.16821,
|
||||
"Y": 7.4920034,
|
||||
"Z": 104.72266
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Weavers' Guild",
|
||||
"[Ul'dah] Aetheryte Plaza"
|
||||
],
|
||||
"DataId": 1005713,
|
||||
"Position": {
|
||||
"X": -72.98395,
|
||||
"Y": 3.9999995,
|
||||
"Z": -113.02362
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -147.13564,
|
||||
"Y": 11.999999,
|
||||
"Z": -5.086131
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1005716,
|
||||
"Position": {
|
||||
"X": -144.76239,
|
||||
"Y": 12,
|
||||
"Z": 0.99176025
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005717,
|
||||
"Position": {
|
||||
"X": -147.17328,
|
||||
"Y": 12,
|
||||
"Z": -3.6469727
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003001,
|
||||
"Position": {
|
||||
"X": -144.79291,
|
||||
"Y": 11.9782715,
|
||||
"Z": -3.4943848
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001126
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005716,
|
||||
"Position": {
|
||||
"X": -144.76239,
|
||||
"Y": 12,
|
||||
"Z": 0.99176025
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1207
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,341 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DataId": 1005721,
|
||||
"Position": {
|
||||
"X": -144.06049,
|
||||
"Y": 12,
|
||||
"Z": -5.5390625
|
||||
},
|
||||
"StopDistance": 4,
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"DataId": 1005722,
|
||||
"Position": {
|
||||
"X": -550.4387,
|
||||
"Y": -5.5688405,
|
||||
"Z": -176.71478
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -567.424,
|
||||
"Y": 5.893569,
|
||||
"Z": -221.67596
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1004042,
|
||||
"Position": {
|
||||
"X": -568.4138,
|
||||
"Y": 5.893569,
|
||||
"Z": -221.27112
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1003940,
|
||||
"Position": {
|
||||
"X": -540.94763,
|
||||
"Y": 4.134529,
|
||||
"Z": -241.07733
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1003939,
|
||||
"Position": {
|
||||
"X": -540.09314,
|
||||
"Y": 4.137387,
|
||||
"Z": -240.98578
|
||||
},
|
||||
"StopDistance": 4,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Fly": true,
|
||||
"DataId": 1005724,
|
||||
"Position": {
|
||||
"X": -490.44025,
|
||||
"Y": 2.8072534,
|
||||
"Z": -274.34198
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"DataId": 1005727,
|
||||
"Position": {
|
||||
"X": -221.11853,
|
||||
"Y": -37.79669,
|
||||
"Z": 149.67566
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"DataId": 1005727,
|
||||
"Position": {
|
||||
"X": -221.11853,
|
||||
"Y": -37.79669,
|
||||
"Z": 149.67566
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001150
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"DataId": 1005727,
|
||||
"Position": {
|
||||
"X": -221.11853,
|
||||
"Y": -37.79669,
|
||||
"Z": 149.67566
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"DataId": 1005727,
|
||||
"Position": {
|
||||
"X": -221.11853,
|
||||
"Y": -37.79669,
|
||||
"Z": 149.67566
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"DataId": 1005727,
|
||||
"Position": {
|
||||
"X": -221.11853,
|
||||
"Y": -37.79669,
|
||||
"Z": 149.67566
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"DataId": 1005727,
|
||||
"Position": {
|
||||
"X": -221.11853,
|
||||
"Y": -37.79669,
|
||||
"Z": 149.67566
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003006,
|
||||
"Position": {
|
||||
"X": -208.5451,
|
||||
"Y": -37.9187,
|
||||
"Z": 151.87305
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003005,
|
||||
"Position": {
|
||||
"X": -220.87439,
|
||||
"Y": -37.857666,
|
||||
"Z": 166.0028
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003004,
|
||||
"Position": {
|
||||
"X": -206.46985,
|
||||
"Y": -37.644104,
|
||||
"Z": 187.36548
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 11,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005730,
|
||||
"Position": {
|
||||
"X": -222.49182,
|
||||
"Y": -37.896374,
|
||||
"Z": 159.3805
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -535.8004,
|
||||
"Y": 5.3931885,
|
||||
"Z": -252.96324
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1005731,
|
||||
"Position": {
|
||||
"X": -526.8788,
|
||||
"Y": 5.404997,
|
||||
"Z": -246.50952
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1315
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,238 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DataId": 1005884,
|
||||
"Position": {
|
||||
"X": -526.26843,
|
||||
"Y": 5.4049973,
|
||||
"Z": -249.25616
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"DataId": 1003931,
|
||||
"Position": {
|
||||
"X": -379.6292,
|
||||
"Y": -55.85506,
|
||||
"Z": 95.04846
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1008709,
|
||||
"Position": {
|
||||
"X": -431.7846,
|
||||
"Y": 28.038658,
|
||||
"Z": -383.1693
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"Fly": true,
|
||||
"DataId": 1008713,
|
||||
"Position": {
|
||||
"X": 108.99512,
|
||||
"Y": 57.816406,
|
||||
"Z": 12.191956
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Fly": true,
|
||||
"DataId": 1002022,
|
||||
"Position": {
|
||||
"X": 12.039368,
|
||||
"Y": 22.144684,
|
||||
"Z": 65.384766
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Fly": true,
|
||||
"DataId": 1008715,
|
||||
"Position": {
|
||||
"X": -69.90167,
|
||||
"Y": 13.38208,
|
||||
"Z": 158.73962
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003654,
|
||||
"Position": {
|
||||
"X": -68.55884,
|
||||
"Y": 13.809326,
|
||||
"Z": 159.16675
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003658,
|
||||
"Position": {
|
||||
"X": -71.06128,
|
||||
"Y": 13.443176,
|
||||
"Z": 155.9624
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003656,
|
||||
"Position": {
|
||||
"X": -72.95343,
|
||||
"Y": 13.504211,
|
||||
"Z": 159.19727
|
||||
},
|
||||
"StopDistance": 4.5,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003657,
|
||||
"Position": {
|
||||
"X": -80.18622,
|
||||
"Y": 13.412659,
|
||||
"Z": 158.12915
|
||||
},
|
||||
"StopDistance": 4.5,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2003659,
|
||||
"Position": {
|
||||
"X": -76.15784,
|
||||
"Y": 13.443176,
|
||||
"Z": 155.90137
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008716,
|
||||
"Position": {
|
||||
"X": -68.00946,
|
||||
"Y": 13.443176,
|
||||
"Z": 157.5188
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1316
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,80 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008716,
|
||||
"Position": {
|
||||
"X": -68.00946,
|
||||
"Y": 13.443176,
|
||||
"Z": 157.5188
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Northern Thanalan - Camp Bluefog",
|
||||
"Fly": true,
|
||||
"DataId": 2003664,
|
||||
"Position": {
|
||||
"X": 11.337402,
|
||||
"Y": 2.670288,
|
||||
"Z": 320.943
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003665,
|
||||
"Position": {
|
||||
"X": 34.50061,
|
||||
"Y": 12.191956,
|
||||
"Z": 254.13892
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 110.67165,
|
||||
"Y": 18.372795,
|
||||
"Z": 122.4577
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003666,
|
||||
"Position": {
|
||||
"X": 111.192505,
|
||||
"Y": 19.424683,
|
||||
"Z": 121.20239
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1317
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,73 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008722,
|
||||
"Position": {
|
||||
"X": 109.7887,
|
||||
"Y": 18.36741,
|
||||
"Z": 121.72119
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003667,
|
||||
"Position": {
|
||||
"X": 139.48267,
|
||||
"Y": 20.279175,
|
||||
"Z": 102.92212
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1008730,
|
||||
"Position": {
|
||||
"X": -431.26575,
|
||||
"Y": 28.038658,
|
||||
"Z": -381.4298
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008735,
|
||||
"Position": {
|
||||
"X": -420.2793,
|
||||
"Y": 23.113977,
|
||||
"Z": -367.17786
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1318
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,150 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008736,
|
||||
"Position": {
|
||||
"X": -418.44818,
|
||||
"Y": 23.113976,
|
||||
"Z": -367.8188
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"Fly": true,
|
||||
"DataId": 1008739,
|
||||
"Position": {
|
||||
"X": 176.71472,
|
||||
"Y": 222.1357,
|
||||
"Z": 347.219
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008741,
|
||||
"Position": {
|
||||
"X": 249.50024,
|
||||
"Y": 222.36392,
|
||||
"Z": 353.6278
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008746,
|
||||
"Position": {
|
||||
"X": 261.46326,
|
||||
"Y": 222.27127,
|
||||
"Z": 320.2411
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003741,
|
||||
"Position": {
|
||||
"X": 394.7965,
|
||||
"Y": 225.0553,
|
||||
"Z": 378.80518
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008752,
|
||||
"Position": {
|
||||
"X": 487.81555,
|
||||
"Y": 206.95914,
|
||||
"Z": 479.69775
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 76
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008756,
|
||||
"Position": {
|
||||
"X": 480.12512,
|
||||
"Y": 207.33582,
|
||||
"Z": 475.33374
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"Fly": true,
|
||||
"DataId": 1008788,
|
||||
"Position": {
|
||||
"X": -421.46948,
|
||||
"Y": 23.113977,
|
||||
"Z": -367.57465
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1438
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,162 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DataId": 1008757,
|
||||
"Position": {
|
||||
"X": -422.5376,
|
||||
"Y": 23.113976,
|
||||
"Z": -367.7882
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"Fly": true,
|
||||
"DataId": 1009305,
|
||||
"Position": {
|
||||
"X": 562.4321,
|
||||
"Y": 17.654663,
|
||||
"Z": 421.7135
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009307,
|
||||
"Position": {
|
||||
"X": 498.89368,
|
||||
"Y": 10.079935,
|
||||
"Z": 418.265
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_CHRHDB301_01438_Q1_000_000",
|
||||
"Answer": "TEXT_CHRHDB301_01438_A1_000_030"
|
||||
},
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_CHRHDB301_01438_Q2_000_000",
|
||||
"Answer": "TEXT_CHRHDB301_01438_A2_000_030"
|
||||
}
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Fly": true,
|
||||
"DataId": 1009310,
|
||||
"Position": {
|
||||
"X": 471.18323,
|
||||
"Y": 9.96334,
|
||||
"Z": 794.6135
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"DataId": 1009308,
|
||||
"Position": {
|
||||
"X": 560.32654,
|
||||
"Y": 17.707417,
|
||||
"Z": 421.01147
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009311,
|
||||
"Position": {
|
||||
"X": 531.2123,
|
||||
"Y": 17.448051,
|
||||
"Z": 454.1847
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 582.44116,
|
||||
"Y": 14.587065,
|
||||
"Z": 394.23407
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009317,
|
||||
"Position": {
|
||||
"X": 583.88635,
|
||||
"Y": 14.587067,
|
||||
"Z": 394.70508
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004317,
|
||||
"Position": {
|
||||
"X": 515.98376,
|
||||
"Y": 9.384277,
|
||||
"Z": 525.81055
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 1439
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,95 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009326,
|
||||
"Position": {
|
||||
"X": 526.2073,
|
||||
"Y": 8.84578,
|
||||
"Z": 556.54236
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009328,
|
||||
"Position": {
|
||||
"X": 515.0376,
|
||||
"Y": 9.192075,
|
||||
"Z": 524.834
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 581.1095,
|
||||
"Y": 14.587067,
|
||||
"Z": 394.20828
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009319,
|
||||
"Position": {
|
||||
"X": 581.3534,
|
||||
"Y": 14.587067,
|
||||
"Z": 395.8037
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"DataId": 1001023,
|
||||
"Position": {
|
||||
"X": -78.62976,
|
||||
"Y": 18.000334,
|
||||
"Z": -22.62915
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"DataId": 1009331,
|
||||
"Position": {
|
||||
"X": 311.54346,
|
||||
"Y": -36.405907,
|
||||
"Z": 344.71655
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"NextQuestId": 1440
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,215 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009331,
|
||||
"Position": {
|
||||
"X": 311.54346,
|
||||
"Y": -36.405907,
|
||||
"Z": 344.71655
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_CHRHDB303_01440_Q1_000_010",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003584,
|
||||
"Position": {
|
||||
"X": 317.43335,
|
||||
"Y": -36.325005,
|
||||
"Z": 352.86487
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 138,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 2004324,
|
||||
"Position": {
|
||||
"X": -283.0091,
|
||||
"Y": -40.634766,
|
||||
"Z": 425.58936
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004325,
|
||||
"Position": {
|
||||
"X": -242.60321,
|
||||
"Y": -38.68164,
|
||||
"Z": 514.7324
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004326,
|
||||
"Position": {
|
||||
"X": -291.06586,
|
||||
"Y": -38.07129,
|
||||
"Z": 596.765
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Comment": "Commence \"The Mandragoras\"",
|
||||
"DataId": 1009335,
|
||||
"Position": {
|
||||
"X": -256.70258,
|
||||
"Y": -40.18569,
|
||||
"Z": 684.1992
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"ExcelSheet": "Addon",
|
||||
"Prompt": 102445,
|
||||
"PromptIsRegularExpression": true,
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Comment": "Fight some Mandragoras",
|
||||
"Position": {
|
||||
"X": -256.70258,
|
||||
"Y": -40.18569,
|
||||
"Z": 684.1992
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "FateEnemies",
|
||||
"KillEnemyDataIds": [
|
||||
2950,
|
||||
2951,
|
||||
2952,
|
||||
2953,
|
||||
2954
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"Fly": true,
|
||||
"Position": {
|
||||
"X": 581.46533,
|
||||
"Y": 14.587067,
|
||||
"Z": 393.86594
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1009319,
|
||||
"Position": {
|
||||
"X": 581.3534,
|
||||
"Y": 14.587067,
|
||||
"Z": 395.8037
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Fly": true,
|
||||
"DataId": 1009336,
|
||||
"Position": {
|
||||
"X": 494.49902,
|
||||
"Y": 11.323204,
|
||||
"Z": 210.3761
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||
"DataId": 1009337,
|
||||
"Position": {
|
||||
"X": -46.860474,
|
||||
"Y": 75.95114,
|
||||
"Z": 10.879639
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 1441
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,101 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009341,
|
||||
"Position": {
|
||||
"X": -48.44745,
|
||||
"Y": 75.95115,
|
||||
"Z": 9.079041
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"DataId": 1009351,
|
||||
"Position": {
|
||||
"X": 524.28467,
|
||||
"Y": 17.448048,
|
||||
"Z": 449.08826
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009347,
|
||||
"Position": {
|
||||
"X": 442.77087,
|
||||
"Y": 15.823447,
|
||||
"Z": 375.17358
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009348,
|
||||
"Position": {
|
||||
"X": 386.19055,
|
||||
"Y": 29.58076,
|
||||
"Z": 350.3623
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009345,
|
||||
"Position": {
|
||||
"X": 523.76587,
|
||||
"Y": 17.448044,
|
||||
"Z": 447.13513
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004328,
|
||||
"Position": {
|
||||
"X": 523.4607,
|
||||
"Y": 17.837708,
|
||||
"Z": 455.2528
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 166
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,205 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
},
|
||||
"DataId": 1009357,
|
||||
"Position": {
|
||||
"X": 528.95386,
|
||||
"Y": 17.44805,
|
||||
"Z": 448.69153
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
],
|
||||
"Position": {
|
||||
"X": -153.18225,
|
||||
"Y": 14.005,
|
||||
"Z": 43.458076
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010160,
|
||||
"Position": {
|
||||
"X": -144.64032,
|
||||
"Y": 12,
|
||||
"Z": -5.6916504
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -153.18225,
|
||||
"Y": 14.005,
|
||||
"Z": 43.458076
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Thaumaturges' Guild",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
],
|
||||
"DataId": 1001857,
|
||||
"Position": {
|
||||
"X": -46.76892,
|
||||
"Y": 10,
|
||||
"Z": -12.741333
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Gladiators' Guild",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
],
|
||||
"Position": {
|
||||
"X": -153.18225,
|
||||
"Y": 14.005,
|
||||
"Z": 43.458076
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010160,
|
||||
"Position": {
|
||||
"X": -144.64032,
|
||||
"Y": 12,
|
||||
"Z": -5.6916504
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -127.24249,
|
||||
"Y": 7.999999,
|
||||
"Z": -55.6639
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010188,
|
||||
"Position": {
|
||||
"X": -106.523315,
|
||||
"Y": 4.2265673,
|
||||
"Z": -82.16986
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -123.05803,
|
||||
"Y": 1.363661,
|
||||
"Z": -142.65125
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
],
|
||||
"Position": {
|
||||
"X": -72.12142,
|
||||
"Y": 6.9845715,
|
||||
"Z": 8.82207
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010281,
|
||||
"Position": {
|
||||
"X": -70.96979,
|
||||
"Y": 6.9839683,
|
||||
"Z": 3.982544
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"DisableNavmesh": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Gladiators' Guild",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
],
|
||||
"Position": {
|
||||
"X": -153.18225,
|
||||
"Y": 14.005,
|
||||
"Z": 43.458076
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010287,
|
||||
"Position": {
|
||||
"X": -142.71765,
|
||||
"Y": 12,
|
||||
"Z": -3.9215698
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 202
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,142 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010279,
|
||||
"Position": {
|
||||
"X": -143.60266,
|
||||
"Y": 11.999999,
|
||||
"Z": -3.8911133
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -153.18225,
|
||||
"Y": 14.005,
|
||||
"Z": 43.458076
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Thaumaturges' Guild",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
],
|
||||
"DataId": 1010523,
|
||||
"Position": {
|
||||
"X": -53.48291,
|
||||
"Y": 9.999997,
|
||||
"Z": -4.0742188
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"Position": {
|
||||
"X": -60.649715,
|
||||
"Y": -11.872707,
|
||||
"Z": -61.934204
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010293,
|
||||
"Position": {
|
||||
"X": -61.387024,
|
||||
"Y": -11.84896,
|
||||
"Z": -63.126587
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Fly": true,
|
||||
"DataId": 1010298,
|
||||
"Position": {
|
||||
"X": 19.851929,
|
||||
"Y": 19.020214,
|
||||
"Z": -421.37793
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Fly": true,
|
||||
"DataId": 1010310,
|
||||
"Position": {
|
||||
"X": -55.436035,
|
||||
"Y": 3.4680986,
|
||||
"Z": 260.57825
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Gate of Nald (Central Thanalan)"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
],
|
||||
"Position": {
|
||||
"X": -153.18225,
|
||||
"Y": 14.005,
|
||||
"Z": 43.458076
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010290,
|
||||
"Position": {
|
||||
"X": -144.73187,
|
||||
"Y": 11.999999,
|
||||
"Z": -5.661133
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 203
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,212 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010290,
|
||||
"Position": {
|
||||
"X": -144.73187,
|
||||
"Y": 11.999999,
|
||||
"Z": -5.661133
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -153.18225,
|
||||
"Y": 14.005,
|
||||
"Z": 43.458076
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Thaumaturges' Guild",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
],
|
||||
"DataId": 1010169,
|
||||
"Position": {
|
||||
"X": -47.501343,
|
||||
"Y": 9.999995,
|
||||
"Z": -11.886841
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -45.67461,
|
||||
"Y": 11.927631,
|
||||
"Z": -16.919664
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Jump",
|
||||
"JumpDestination": {
|
||||
"Position": {
|
||||
"X": -48.14437,
|
||||
"Y": 9.999995,
|
||||
"Z": -10.52473
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1010316,
|
||||
"Position": {
|
||||
"X": -54.581604,
|
||||
"Y": 9.999972,
|
||||
"Z": -12.64978
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Gladiators' Guild",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
],
|
||||
"DataId": 2004901,
|
||||
"Position": {
|
||||
"X": 103.50195,
|
||||
"Y": 7.9804688,
|
||||
"Z": 8.255066
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 108.07826,
|
||||
"Y": 8,
|
||||
"Z": 8.036793
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2004900,
|
||||
"Position": {
|
||||
"X": 103.715576,
|
||||
"Y": 7.9804688,
|
||||
"Z": -35.233154
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2004899,
|
||||
"Position": {
|
||||
"X": 68.0094,
|
||||
"Y": 7.9804688,
|
||||
"Z": -74.05206
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 98.252335,
|
||||
"Y": 8.000075,
|
||||
"Z": -38.319664
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Sapphire Avenue Exchange",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
],
|
||||
"DataId": 1010316,
|
||||
"Position": {
|
||||
"X": -54.581604,
|
||||
"Y": 9.999972,
|
||||
"Z": -12.64978
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Gladiators' Guild",
|
||||
"[Ul'dah] Sapphire Avenue Exchange"
|
||||
],
|
||||
"Position": {
|
||||
"X": 137.68585,
|
||||
"Y": 3.9999998,
|
||||
"Z": -58.555218
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1001679,
|
||||
"Position": {
|
||||
"X": 140.48975,
|
||||
"Y": 4.0099983,
|
||||
"Z": -59.80017
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 204
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,146 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010317,
|
||||
"Position": {
|
||||
"X": 139.78784,
|
||||
"Y": 4.0099993,
|
||||
"Z": -57.114563
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Sapphire Avenue Exchange",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
],
|
||||
"Position": {
|
||||
"X": -72.12142,
|
||||
"Y": 6.9845715,
|
||||
"Z": 8.82207
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010330,
|
||||
"Position": {
|
||||
"X": -69.5354,
|
||||
"Y": 6.9839687,
|
||||
"Z": 0.07623291
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"DisableNavmesh": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_CHRHDB404_00204_Q1_000_000",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010772,
|
||||
"Position": {
|
||||
"X": -72.40405,
|
||||
"Y": 6.9839687,
|
||||
"Z": -0.045776367
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"Fly": true,
|
||||
"DataId": 1010161,
|
||||
"Position": {
|
||||
"X": -338.3994,
|
||||
"Y": -22.360315,
|
||||
"Z": 434.3175
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 81
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010329,
|
||||
"Position": {
|
||||
"X": -334.21838,
|
||||
"Y": -22.463528,
|
||||
"Z": 432.9746
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
],
|
||||
"Position": {
|
||||
"X": -72.12142,
|
||||
"Y": 6.9845715,
|
||||
"Z": 8.82207
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010330,
|
||||
"Position": {
|
||||
"X": -69.5354,
|
||||
"Y": 6.9839687,
|
||||
"Z": 0.07623291
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DisableNavmesh": true,
|
||||
"NextQuestId": 490
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,104 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010708,
|
||||
"Position": {
|
||||
"X": -70.237305,
|
||||
"Y": 6.9839683,
|
||||
"Z": 1.9073486
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -72.76394,
|
||||
"Y": 6.9845715,
|
||||
"Z": 6.476269
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Gladiators' Guild",
|
||||
"[Ul'dah] Aetheryte Plaza"
|
||||
],
|
||||
"DataId": 1001285,
|
||||
"Position": {
|
||||
"X": -68.77246,
|
||||
"Y": 4.0411124,
|
||||
"Z": -126.51257
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Alchemists' Guild"
|
||||
],
|
||||
"DataId": 1011620,
|
||||
"Position": {
|
||||
"X": -118.69995,
|
||||
"Y": 40,
|
||||
"Z": 95.23157
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011672,
|
||||
"Position": {
|
||||
"X": -118.21167,
|
||||
"Y": 40,
|
||||
"Z": 92.11865
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Alchemists' Guild",
|
||||
"[Ul'dah] Gate of the Sultana (Western Thanalan)"
|
||||
],
|
||||
"DataId": 1011677,
|
||||
"Position": {
|
||||
"X": 363.54602,
|
||||
"Y": 74.743355,
|
||||
"Z": 171.12988
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 491
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,179 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011677,
|
||||
"Position": {
|
||||
"X": 363.54602,
|
||||
"Y": 74.743355,
|
||||
"Z": 171.12988
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Thaumaturges' Guild"
|
||||
],
|
||||
"Position": {
|
||||
"X": -171.53638,
|
||||
"Y": 17.999998,
|
||||
"Z": 66.511505
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1011681,
|
||||
"Position": {
|
||||
"X": -182.29956,
|
||||
"Y": 18,
|
||||
"Z": 56.90088
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1003897,
|
||||
"Position": {
|
||||
"X": -195.45282,
|
||||
"Y": 18,
|
||||
"Z": 60.53247
|
||||
},
|
||||
"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,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001708,
|
||||
"Position": {
|
||||
"X": -250.3548,
|
||||
"Y": 18,
|
||||
"Z": 80.88806
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011682,
|
||||
"Position": {
|
||||
"X": -200.763,
|
||||
"Y": 17.999998,
|
||||
"Z": 59.189697
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"DataId": 1011683,
|
||||
"Position": {
|
||||
"X": 76.8291,
|
||||
"Y": 45,
|
||||
"Z": -218.28033
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -345.65482,
|
||||
"Y": 23,
|
||||
"Z": -352.02484
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Alchemists' Guild"
|
||||
],
|
||||
"DataId": 1011675,
|
||||
"Position": {
|
||||
"X": -118.150635,
|
||||
"Y": 40,
|
||||
"Z": 96.29968
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 492
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,225 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011691,
|
||||
"Position": {
|
||||
"X": 40.878906,
|
||||
"Y": 33.999985,
|
||||
"Z": 27.939209
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 44.860275,
|
||||
"Y": 34.02289,
|
||||
"Z": -12.268097
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2005164,
|
||||
"Position": {
|
||||
"X": 43.07617,
|
||||
"Y": 33.98181,
|
||||
"Z": -13.962036
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 45.576427,
|
||||
"Y": 34,
|
||||
"Z": -23.220316
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 49.565746,
|
||||
"Y": 33.999992,
|
||||
"Z": -25.594622
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 2005165,
|
||||
"Position": {
|
||||
"X": 60.16626,
|
||||
"Y": 33.98181,
|
||||
"Z": -21.316895
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 53.15642,
|
||||
"Y": 33.999992,
|
||||
"Z": -25.133741
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 62.437984,
|
||||
"Y": 28.992012,
|
||||
"Z": -34.336155
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 2005166,
|
||||
"Position": {
|
||||
"X": 74.96753,
|
||||
"Y": 28.976807,
|
||||
"Z": -29.007446
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 62.437984,
|
||||
"Y": 28.992012,
|
||||
"Z": -34.336155
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 45.576427,
|
||||
"Y": 34,
|
||||
"Z": -23.220316
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1011697,
|
||||
"Position": {
|
||||
"X": 39.07837,
|
||||
"Y": 33.999985,
|
||||
"Z": 27.237305
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011693,
|
||||
"Position": {
|
||||
"X": 39.444458,
|
||||
"Y": 34,
|
||||
"Z": 29.984009
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1011694,
|
||||
"Position": {
|
||||
"X": 41.367188,
|
||||
"Y": 33.999992,
|
||||
"Z": 29.43457
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1011695,
|
||||
"Position": {
|
||||
"X": 41.916504,
|
||||
"Y": 33.999992,
|
||||
"Z": 30.044922
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011697,
|
||||
"Position": {
|
||||
"X": 39.07837,
|
||||
"Y": 33.999985,
|
||||
"Z": 27.237305
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 493
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,120 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011699,
|
||||
"Position": {
|
||||
"X": 39.81079,
|
||||
"Y": 34,
|
||||
"Z": 30.22815
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011707,
|
||||
"Position": {
|
||||
"X": 42.893066,
|
||||
"Y": 33.99998,
|
||||
"Z": 29.343018
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] The Chamber of Rule",
|
||||
"[Ul'dah] Sapphire Avenue Exchange"
|
||||
],
|
||||
"Position": {
|
||||
"X": 137.68585,
|
||||
"Y": 3.9999998,
|
||||
"Z": -58.555218
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1001679,
|
||||
"Position": {
|
||||
"X": 140.48975,
|
||||
"Y": 4.0099983,
|
||||
"Z": -59.80017
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Sapphire Avenue Exchange",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
],
|
||||
"DataId": 1011712,
|
||||
"Position": {
|
||||
"X": -43.86969,
|
||||
"Y": 30.000008,
|
||||
"Z": 7.8583374
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 22.47297,
|
||||
"Y": 33.999996,
|
||||
"Z": -40.833565
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 33.41606,
|
||||
"Y": 34,
|
||||
"Z": -32.54854
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1011707,
|
||||
"Position": {
|
||||
"X": 42.893066,
|
||||
"Y": 33.99998,
|
||||
"Z": 29.343018
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"NextQuestId": 502
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "FalconTaterz",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011707,
|
||||
"Position": {
|
||||
"X": 42.893066,
|
||||
"Y": 33.99998,
|
||||
"Z": 29.343018
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"Fly": true,
|
||||
"DataId": 1011714,
|
||||
"Position": {
|
||||
"X": -223.19379,
|
||||
"Y": -3.7199955,
|
||||
"Z": 52.32312
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005188,
|
||||
"Position": {
|
||||
"X": -314.07648,
|
||||
"Y": -1.083435,
|
||||
"Z": 43.9917
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Say",
|
||||
"ChatMessage": {
|
||||
"Key": "TEXT_CHRHDB505_00502_SAYTODO_000_000"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 159.84998,
|
||||
"Y": 37.381317,
|
||||
"Z": 174.60776
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1011722,
|
||||
"Position": {
|
||||
"X": 159.68555,
|
||||
"Y": 37.432796,
|
||||
"Z": 177.69128
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 85
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011723,
|
||||
"Position": {
|
||||
"X": 141.06958,
|
||||
"Y": 29.64365,
|
||||
"Z": 173.72388
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -58,11 +58,7 @@
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
]
|
||||
"AetheryteShortcut": "Gridania"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,70 +1,72 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Cacahuetes",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005412,
|
||||
"Position": {
|
||||
"X": -108.14075,
|
||||
"Y": 18.000334,
|
||||
"Z": -0.22894287
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"InteractionType": "AcceptQuest",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Cacahuetes",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1005412,
|
||||
"Position": {
|
||||
"X": -108.14075,
|
||||
"Y": 18.000334,
|
||||
"Z": -0.22894287
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"InteractionType": "AcceptQuest",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 248.49304,
|
||||
"Y": -11.838913,
|
||||
"Z": 97.45935
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
397
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 248.49304,
|
||||
"Y": -11.838913,
|
||||
"Z": 97.45935
|
||||
},
|
||||
{"DataId": 1005413,
|
||||
"Position": {
|
||||
"X": 248.49304,
|
||||
"Y": -11.838913,
|
||||
"Z": 97.45935
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003275,
|
||||
"Position": {
|
||||
"X": -147.1123,
|
||||
"Y": 18.2,
|
||||
"Z": 14.358704
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
397
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1005413,
|
||||
"Position": {
|
||||
"X": 248.49304,
|
||||
"Y": -11.838913,
|
||||
"Z": 97.45935
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003275,
|
||||
"Position": {
|
||||
"X": -147.1123,
|
||||
"Y": 18.2,
|
||||
"Z": 14.358704
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -0,0 +1,91 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006639,
|
||||
"Position": {
|
||||
"X": -270.3136,
|
||||
"Y": -13.962036,
|
||||
"Z": -635.2484
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006642,
|
||||
"Position": {
|
||||
"X": -245.41089,
|
||||
"Y": -13.229614,
|
||||
"Z": -608.2704
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5236],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006640,
|
||||
"Position": {
|
||||
"X": -82.230896,
|
||||
"Y": -10.727112,
|
||||
"Z": -637.90344
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006641,
|
||||
"Position": {
|
||||
"X": -24.765442,
|
||||
"Y": 5.3253784,
|
||||
"Z": -657.70966
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5236],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,110 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/plogon_enjoyer/Questionable/raw/branch/temp/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006645,
|
||||
"Position": {
|
||||
"X": -473.10602,
|
||||
"Y": -56.01587,
|
||||
"Z": -624.1398
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006644,
|
||||
"Position": {
|
||||
"X": -365.92664,
|
||||
"Y": -57.053528,
|
||||
"Z": -579.553
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006643,
|
||||
"Position": {
|
||||
"X": -381.9486,
|
||||
"Y": -56.50421,
|
||||
"Z": -521.8433
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012056,
|
||||
"Position": {
|
||||
"X": -658.89984,
|
||||
"Y": -127.78361,
|
||||
"Z": 622.98
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,120 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016091,
|
||||
"Position": {
|
||||
"X": -804.25726,
|
||||
"Y": -133.2695,
|
||||
"Z": -390.89038
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -850.9607,
|
||||
"Y": 2.3374987,
|
||||
"Z": -234.1339
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016222,
|
||||
"Position": {
|
||||
"X": -853.8186,
|
||||
"Y": 7.7667847,
|
||||
"Z": -223.92621
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016221,
|
||||
"Position": {
|
||||
"X": -576.40955,
|
||||
"Y": -51.59082,
|
||||
"Z": -543.8773
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016220,
|
||||
"Position": {
|
||||
"X": -455.7718,
|
||||
"Y": -20.828613,
|
||||
"Z": -610.8644
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016091,
|
||||
"Position": {
|
||||
"X": -804.25726,
|
||||
"Y": -133.2695,
|
||||
"Z": -390.89038
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,96 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016090,
|
||||
"Position": {
|
||||
"X": -836.51483,
|
||||
"Y": -133.26949,
|
||||
"Z": -386.61786
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 833.7674,
|
||||
"Y": -97.81962,
|
||||
"Z": -735.3544
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016223,
|
||||
"Position": {
|
||||
"X": 834.37854,
|
||||
"Y": -97.83405,
|
||||
"Z": -738.18567
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5239]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016223,
|
||||
"Position": {
|
||||
"X": 834.37854,
|
||||
"Y": -97.83405,
|
||||
"Z": -738.18567
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016090,
|
||||
"Position": {
|
||||
"X": -836.51483,
|
||||
"Y": -133.26949,
|
||||
"Z": -386.61786
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,99 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016090,
|
||||
"Position": {
|
||||
"X": -836.51483,
|
||||
"Y": -133.26949,
|
||||
"Z": -386.61786
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016227,
|
||||
"Position": {
|
||||
"X": 473.1975,
|
||||
"Y": -98.03464,
|
||||
"Z": -527.7333
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016226,
|
||||
"Position": {
|
||||
"X": 710.9331,
|
||||
"Y": -98.032555,
|
||||
"Z": -741.0239
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016090,
|
||||
"Position": {
|
||||
"X": -836.51483,
|
||||
"Y": -133.26949,
|
||||
"Z": -386.61786
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,119 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016092,
|
||||
"Position": {
|
||||
"X": -792.6299,
|
||||
"Y": -133.32184,
|
||||
"Z": -425.5589
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006676,
|
||||
"Position": {
|
||||
"X": -717.0062,
|
||||
"Y": -13.901062,
|
||||
"Z": -101.487854
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, [16], null, null, null]
|
||||
},
|
||||
{
|
||||
"DataId": 2006762,
|
||||
"Position": {
|
||||
"X": -781.52136,
|
||||
"Y": -13.931519,
|
||||
"Z": -114.30542
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"RequiredQuestVariables": [null, null, [32], null, null, null]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006675,
|
||||
"Position": {
|
||||
"X": -642.298,
|
||||
"Y": -207.29382,
|
||||
"Z": 211.10852
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001912,
|
||||
"KillEnemyDataIds": [5240],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012054,
|
||||
"Position": {
|
||||
"X": -640.1007,
|
||||
"Y": -119.56208,
|
||||
"Z": 469.5963
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016092,
|
||||
"Position": {
|
||||
"X": -792.6299,
|
||||
"Y": -133.32184,
|
||||
"Z": -425.5589
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,85 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016092,
|
||||
"Position": {
|
||||
"X": -792.6299,
|
||||
"Y": -133.32184,
|
||||
"Z": -425.5589
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006677,
|
||||
"Position": {
|
||||
"X": 117.96753,
|
||||
"Y": 12.25293,
|
||||
"Z": -412.92444
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5241],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006678,
|
||||
"Position": {
|
||||
"X": 160.54016,
|
||||
"Y": 11.856201,
|
||||
"Z": -507.65244
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5241],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016092,
|
||||
"Position": {
|
||||
"X": -792.6299,
|
||||
"Y": -133.32184,
|
||||
"Z": -425.5589
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016092,
|
||||
"Position": {
|
||||
"X": -792.6299,
|
||||
"Y": -133.32184,
|
||||
"Z": -425.5589
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006679,
|
||||
"Position": {
|
||||
"X": -401.175,
|
||||
"Y": -202.65509,
|
||||
"Z": 432.39478
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5242],
|
||||
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006680,
|
||||
"Position": {
|
||||
"X": -280.8728,
|
||||
"Y": -202.01422,
|
||||
"Z": 390.7987
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5242],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016092,
|
||||
"Position": {
|
||||
"X": -792.6299,
|
||||
"Y": -133.32184,
|
||||
"Z": -425.5589
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,102 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016092,
|
||||
"Position": {
|
||||
"X": -792.6299,
|
||||
"Y": -133.32184,
|
||||
"Z": -425.5589
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006682,
|
||||
"Position": {
|
||||
"X": 25.711426,
|
||||
"Y": 150.46924,
|
||||
"Z": -133.56226
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006681,
|
||||
"Position": {
|
||||
"X": 237.07935,
|
||||
"Y": 163.95813,
|
||||
"Z": -46.433228
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 237.02913,
|
||||
"Y": 169.13622,
|
||||
"Z": -44.168194
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006683,
|
||||
"Position": {
|
||||
"X": 332.5094,
|
||||
"Y": 106.79785,
|
||||
"Z": -68.2536
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016092,
|
||||
"Position": {
|
||||
"X": -792.6299,
|
||||
"Y": -133.32184,
|
||||
"Z": -425.5589
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016088,
|
||||
"Position": {
|
||||
"X": -818.143,
|
||||
"Y": -129.93259,
|
||||
"Z": -414.02307
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016241,
|
||||
"Position": {
|
||||
"X": -182.94049,
|
||||
"Y": 213.612,
|
||||
"Z": 204.57764
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "sundropdance",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -182.94049,
|
||||
"Y": 213.612,
|
||||
"Z": 204.57764
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [5235],
|
||||
"CombatDelaySecondsAtStart": 0
|
||||
},
|
||||
{
|
||||
"DataId": 1016239,
|
||||
"Position": {
|
||||
"X": -64.683044,
|
||||
"Y": 212.9267,
|
||||
"Z": 101.33508
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "sundropdance",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1016240,
|
||||
"Position": {
|
||||
"X": 233.23413,
|
||||
"Y": 240.42369,
|
||||
"Z": 118.30322
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "sundropdance",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016088,
|
||||
"Position": {
|
||||
"X": -818.143,
|
||||
"Y": -129.93259,
|
||||
"Z": -414.02307
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,103 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016088,
|
||||
"Position": {
|
||||
"X": -818.143,
|
||||
"Y": -129.93259,
|
||||
"Z": -414.02307
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006708,
|
||||
"Position": {
|
||||
"X": -198.41309,
|
||||
"Y": 93.55298,
|
||||
"Z": -303.88342
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006695,
|
||||
"Position": {
|
||||
"X": 111.46704,
|
||||
"Y": -84.55023,
|
||||
"Z": 429.83142
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001927,
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006696,
|
||||
"Position": {
|
||||
"X": 111.436646,
|
||||
"Y": -83.024414,
|
||||
"Z": 428.85486
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "sundropdance"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016088,
|
||||
"Position": {
|
||||
"X": -818.143,
|
||||
"Y": -129.93259,
|
||||
"Z": -414.02307
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,121 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016089,
|
||||
"Position": {
|
||||
"X": -799.46594,
|
||||
"Y": -133.2695,
|
||||
"Z": -404.1352
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016088,
|
||||
"Position": {
|
||||
"X": -818.143,
|
||||
"Y": -129.93259,
|
||||
"Z": -414.02307
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016093,
|
||||
"Position": {
|
||||
"X": -776.0281,
|
||||
"Y": -133.35559,
|
||||
"Z": -414.32825
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016242,
|
||||
"Position": {
|
||||
"X": 284.19922,
|
||||
"Y": 28.574171,
|
||||
"Z": -636.3775
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016378,
|
||||
"Position": {
|
||||
"X": 338.4298,
|
||||
"Y": 31.483738,
|
||||
"Z": -562.1882
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016379,
|
||||
"Position": {
|
||||
"X": 501.27405,
|
||||
"Y": 112.648964,
|
||||
"Z": -182.97095
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Buffet (Sanuwa)",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016088,
|
||||
"Position": {
|
||||
"X": -818.143,
|
||||
"Y": -129.93259,
|
||||
"Z": -414.02307
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,173 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016087,
|
||||
"Position": {
|
||||
"X": -796.7498,
|
||||
"Y": -133.2695,
|
||||
"Z": -410.6966
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1012064,
|
||||
"Position": {
|
||||
"X": -542.7787,
|
||||
"Y": -37.11544,
|
||||
"Z": -386.7094
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016174,
|
||||
"Position": {
|
||||
"X": -606.4088,
|
||||
"Y": -51.071037,
|
||||
"Z": -370.87054
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -589.2831,
|
||||
"Y": -1.0348412,
|
||||
"Z": -340.14413
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -589.2831,
|
||||
"Y": -1.0348412,
|
||||
"Z": -340.14413
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "dance",
|
||||
"Mount": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016174,
|
||||
"Position": {
|
||||
"X": -606.4088,
|
||||
"Y": -51.071037,
|
||||
"Z": -370.87054
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016175,
|
||||
"Position": {
|
||||
"X": 657.557,
|
||||
"Y": -125.6886,
|
||||
"Z": 307.60657
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 702.4233,
|
||||
"Y": -60.78939,
|
||||
"Z": 145.91805
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"Land": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 702.4233,
|
||||
"Y": -60.78939,
|
||||
"Z": 145.91805
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "dance",
|
||||
"Mount": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016175,
|
||||
"Position": {
|
||||
"X": 657.557,
|
||||
"Y": -125.6886,
|
||||
"Z": 307.60657
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016174,
|
||||
"Position": {
|
||||
"X": -606.4088,
|
||||
"Y": -51.071037,
|
||||
"Z": -370.87054
|
||||
},
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,79 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006883,
|
||||
"Position": {
|
||||
"X": 31.418213,
|
||||
"Y": -65.32391,
|
||||
"Z": 111.74182
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5550]
|
||||
},
|
||||
{
|
||||
"DataId": 2006882,
|
||||
"Position": {
|
||||
"X": 307.05725,
|
||||
"Y": -66.54462,
|
||||
"Z": 163.43933
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5550]
|
||||
},
|
||||
{
|
||||
"DataId": 2006881,
|
||||
"Position": {
|
||||
"X": 352.25452,
|
||||
"Y": -51.07196,
|
||||
"Z": -46.982605
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,119 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006886,
|
||||
"Position": {
|
||||
"X": 237.65918,
|
||||
"Y": -71.45807,
|
||||
"Z": 99.01575
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006885,
|
||||
"Position": {
|
||||
"X": 284.5349,
|
||||
"Y": -67.61273,
|
||||
"Z": 83.878784
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006884,
|
||||
"Position": {
|
||||
"X": 294.94165,
|
||||
"Y": -68.92505,
|
||||
"Z": 129.19812
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011917,
|
||||
"Position": {
|
||||
"X": 535.30164,
|
||||
"Y": -51.340645,
|
||||
"Z": 65.293335
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
|
||||
},
|
||||
{
|
||||
"DataId": 1011922,
|
||||
"Position": {
|
||||
"X": 448.56934,
|
||||
"Y": -51.141407,
|
||||
"Z": 108.93408
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,80 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006872,
|
||||
"Position": {
|
||||
"X": 333.82153,
|
||||
"Y": -47.53192,
|
||||
"Z": -331.53284
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5546],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006871,
|
||||
"Position": {
|
||||
"X": 559.71606,
|
||||
"Y": -41.24518,
|
||||
"Z": -333.1808
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006873,
|
||||
"Position": {
|
||||
"X": 707.7285,
|
||||
"Y": -50.095398,
|
||||
"Z": -151.47632
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5546],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,109 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006897,
|
||||
"Position": {
|
||||
"X": 88.48706,
|
||||
"Y": -123.43024,
|
||||
"Z": 561.7914
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006899,
|
||||
"Position": {
|
||||
"X": 137.1023,
|
||||
"Y": -120.01227,
|
||||
"Z": 586.08374
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006898,
|
||||
"Position": {
|
||||
"X": 111.86377,
|
||||
"Y": -119.035645,
|
||||
"Z": 617.4868
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006894,
|
||||
"Position": {
|
||||
"X": 223.22424,
|
||||
"Y": -123.6134,
|
||||
"Z": 697.6272
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006892,
|
||||
"Position": {
|
||||
"X": 209.1554,
|
||||
"Y": -123.12512,
|
||||
"Z": 767.91016
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006893,
|
||||
"Position": {
|
||||
"X": 291.03528,
|
||||
"Y": -119.40192,
|
||||
"Z": 664.6676
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,109 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006903,
|
||||
"Position": {
|
||||
"X": 20.004517,
|
||||
"Y": -84.00098,
|
||||
"Z": 282.15454
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006904,
|
||||
"Position": {
|
||||
"X": 52.68933,
|
||||
"Y": -100.572266,
|
||||
"Z": 317.1283
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006905,
|
||||
"Position": {
|
||||
"X": 6.301941,
|
||||
"Y": -100.206055,
|
||||
"Z": 351.43042
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006902,
|
||||
"Position": {
|
||||
"X": -317.49445,
|
||||
"Y": -80.55243,
|
||||
"Z": 632.59326
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006901,
|
||||
"Position": {
|
||||
"X": -336.96503,
|
||||
"Y": -80.55243,
|
||||
"Z": 655.08496
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006900,
|
||||
"Position": {
|
||||
"X": -379.75128,
|
||||
"Y": -75.21173,
|
||||
"Z": 669.2759
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006909,
|
||||
"Position": {
|
||||
"X": -124.37634,
|
||||
"Y": -86.07617,
|
||||
"Z": 763.6987
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5548],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006906,
|
||||
"Position": {
|
||||
"X": -178.51532,
|
||||
"Y": -86.167725,
|
||||
"Z": 775.845
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006908,
|
||||
"Position": {
|
||||
"X": -305.745,
|
||||
"Y": -68.13159,
|
||||
"Z": 812.7717
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5548],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006907,
|
||||
"Position": {
|
||||
"X": -303.36462,
|
||||
"Y": -80.52191,
|
||||
"Z": 734.15735
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006913,
|
||||
"Position": {
|
||||
"X": 566.7964,
|
||||
"Y": -20.553955,
|
||||
"Z": -530.2052
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006914,
|
||||
"Position": {
|
||||
"X": 595.3917,
|
||||
"Y": -20.187744,
|
||||
"Z": -547.4785
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006912,
|
||||
"Position": {
|
||||
"X": 639.8259,
|
||||
"Y": -19.60791,
|
||||
"Z": -588.098
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016855,
|
||||
"Position": {
|
||||
"X": 74.906494,
|
||||
"Y": -48,
|
||||
"Z": -175.67712
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,96 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017031,
|
||||
"Position": {
|
||||
"X": 74.20459,
|
||||
"Y": -48.533592,
|
||||
"Z": -171.12994
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -190.26477,
|
||||
"Y": -104.73892,
|
||||
"Z": 512.932
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -13.443237,
|
||||
"Y": -129.2623,
|
||||
"Z": 712.21484
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 45.151367,
|
||||
"Y": -132.12938,
|
||||
"Z": 685.7556
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Action",
|
||||
"Action": "Fumigate",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006930,
|
||||
"Position": {
|
||||
"X": 510.3684,
|
||||
"Y": -26.077698,
|
||||
"Z": -592.3705
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006931,
|
||||
"Position": {
|
||||
"X": 358.81592,
|
||||
"Y": -51.98755,
|
||||
"Z": -137.89581
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2001963,
|
||||
"KillEnemyDataIds": [5552],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,124 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006937,
|
||||
"Position": {
|
||||
"X": -42.282776,
|
||||
"Y": -32.73065,
|
||||
"Z": 183.30652
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006935,
|
||||
"Position": {
|
||||
"X": -46.189087,
|
||||
"Y": -47.257202,
|
||||
"Z": 241.93176
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006936,
|
||||
"Position": {
|
||||
"X": -83.57367,
|
||||
"Y": -48.17273,
|
||||
"Z": 231.89136
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006934,
|
||||
"Position": {
|
||||
"X": -105.02789,
|
||||
"Y": -69.68799,
|
||||
"Z": 350.63696
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006933,
|
||||
"Position": {
|
||||
"X": -80.03363,
|
||||
"Y": -71.67163,
|
||||
"Z": 412.46655
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006932,
|
||||
"Position": {
|
||||
"X": -155.41315,
|
||||
"Y": -71.122375,
|
||||
"Z": 387.28918
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016863,
|
||||
"Position": {
|
||||
"X": 67.948364,
|
||||
"Y": -48.43746,
|
||||
"Z": -168.23071
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,117 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016875,
|
||||
"Position": {
|
||||
"X": -274.09784,
|
||||
"Y": -22.971008,
|
||||
"Z": 22.812195
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016876,
|
||||
"Position": {
|
||||
"X": 148.48547,
|
||||
"Y": 65.56322,
|
||||
"Z": -644.09863
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016877,
|
||||
"Position": {
|
||||
"X": 212.23767,
|
||||
"Y": 52.205494,
|
||||
"Z": -777.676
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016878,
|
||||
"Position": {
|
||||
"X": 210.31506,
|
||||
"Y": 59.655575,
|
||||
"Z": -919.06616
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016875,
|
||||
"Position": {
|
||||
"X": -274.09784,
|
||||
"Y": -22.971008,
|
||||
"Z": 22.812195
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006945,
|
||||
"Position": {
|
||||
"X": 204.63867,
|
||||
"Y": -106.43176,
|
||||
"Z": 360.55542
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006947,
|
||||
"Position": {
|
||||
"X": 205.98145,
|
||||
"Y": -109.544556,
|
||||
"Z": 389.7306
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5549],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006948,
|
||||
"Position": {
|
||||
"X": 154.43652,
|
||||
"Y": -112.50476,
|
||||
"Z": 445.15137
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5549],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2006946,
|
||||
"Position": {
|
||||
"X": 153.0022,
|
||||
"Y": -86.289795,
|
||||
"Z": 418.44812
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,118 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "plogon_enjoyer",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016879,
|
||||
"Position": {
|
||||
"X": -412.16144,
|
||||
"Y": 2.644555,
|
||||
"Z": -145.1286
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006950,
|
||||
"Position": {
|
||||
"X": -450.9499,
|
||||
"Y": -7.7058716,
|
||||
"Z": -222.61395
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"Land": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016879,
|
||||
"Position": {
|
||||
"X": -412.16144,
|
||||
"Y": 2.644555,
|
||||
"Z": -145.1286
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2006951,
|
||||
"Position": {
|
||||
"X": -388.35742,
|
||||
"Y": -10.238831,
|
||||
"Z": -268.5741
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"Land": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016879,
|
||||
"Position": {
|
||||
"X": -412.16144,
|
||||
"Y": 2.644555,
|
||||
"Z": -145.1286
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1016803,
|
||||
"Position": {
|
||||
"X": 57.297607,
|
||||
"Y": -47.842846,
|
||||
"Z": -174.63953
|
||||
},
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -21,7 +21,10 @@
|
||||
],
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InTerritory": [130, 131]
|
||||
"InTerritory": [
|
||||
130,
|
||||
131
|
||||
]
|
||||
},
|
||||
"AethernetShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
@ -76,7 +79,9 @@
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [777],
|
||||
"KillEnemyDataIds": [
|
||||
777
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
@ -109,7 +114,9 @@
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [4615],
|
||||
"KillEnemyDataIds": [
|
||||
4615
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
|
@ -76,7 +76,9 @@
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [5047]
|
||||
"KillEnemyDataIds": [
|
||||
5047
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -117,7 +119,9 @@
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [5047]
|
||||
"KillEnemyDataIds": [
|
||||
5047
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -158,7 +162,9 @@
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [5043]
|
||||
"KillEnemyDataIds": [
|
||||
5043
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -53,7 +53,9 @@
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [5043],
|
||||
"KillEnemyDataIds": [
|
||||
5043
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
|
@ -63,7 +63,9 @@
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [4627],
|
||||
"KillEnemyDataIds": [
|
||||
4627
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
|
@ -158,7 +158,9 @@
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [4683],
|
||||
"KillEnemyDataIds": [
|
||||
4683
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
2,
|
||||
null,
|
||||
|
@ -69,7 +69,9 @@
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [4690],
|
||||
"KillEnemyDataIds": [
|
||||
4690
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
4,
|
||||
|
@ -51,7 +51,10 @@
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [4691, 4692],
|
||||
"KillEnemyDataIds": [
|
||||
4691,
|
||||
4692
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
4,
|
||||
@ -103,7 +106,10 @@
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [4690, 4691]
|
||||
"KillEnemyDataIds": [
|
||||
4690,
|
||||
4691
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2005861,
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user