Compare commits

..

9 Commits

Author SHA1 Message Date
Jerry Wester 25829385d5 HW MSQ Part 2 2024-07-24 20:35:35 -06:00
Liza 495e9c701e
Bump Version 2024-07-25 04:16:26 +02:00
Liza 042a8b5ecc
Partition quest loading into different methods 2024-07-25 04:15:44 +02:00
Liza b5589b0054
First draft of Ul'dah start quests 2024-07-25 02:18:37 +02:00
Liza 39172fdaa4
Daily quest update 2024-07-24 22:20:06 +02:00
Liza b9d6573cd0
Adjust UI sizes 2024-07-24 22:14:26 +02:00
Liza ff669708d3
Wait for longer before retrying item use 2024-07-24 22:14:11 +02:00
Liza deb426f81c
Diving; add more Shadowbringers MSQ 2024-07-24 20:47:24 +02:00
Liza 8feadf953f
Draft of ARR SCH quests 2024-07-24 15:45:03 +02:00
178 changed files with 12656 additions and 438 deletions

View File

@ -7,13 +7,14 @@
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<Platforms>x64</Platforms>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
<PackageReference Include="xunit" Version="2.5.3"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3"/>
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.5.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
</ItemGroup>
<ItemGroup>

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IsPackable>false</IsPackable>
@ -13,6 +13,7 @@
<PackageId>QuestPathGenerator</PackageId>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<Platforms>x64</Platforms>
</PropertyGroup>
<ItemGroup>
@ -23,8 +24,8 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.9.2"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.9.2" />
<PackageReference Include="System.Text.Json" Version="8.0.4" PrivateAssets="all" />
</ItemGroup>

View File

@ -92,7 +92,43 @@ public class QuestSourceGenerator : ISourceGenerator
if (quests.Count == 0)
return;
quests = quests.OrderBy(x => x.Item1).ToList();
var partitionedQuests = quests
.OrderBy(x => x.Item1)
.GroupBy(x => $"LoadQuests{x.Item1 / 50}")
.ToList();
List<MethodDeclarationSyntax> methods =
[
MethodDeclaration(
PredefinedType(
Token(SyntaxKind.VoidKeyword)),
Identifier("LoadQuests"))
.WithModifiers(
TokenList(
Token(SyntaxKind.PrivateKeyword),
Token(SyntaxKind.StaticKeyword)))
.WithBody(
Block(
partitionedQuests
.Select(x =>
ExpressionStatement(
InvocationExpression(
IdentifierName(x.Key))))))
];
foreach (var partition in partitionedQuests)
{
methods.Add(MethodDeclaration(
PredefinedType(
Token(SyntaxKind.VoidKeyword)),
Identifier(partition.Key))
.WithModifiers(
TokenList(
Token(SyntaxKind.PrivateKeyword),
Token(SyntaxKind.StaticKeyword)))
.WithBody(
Block(CreateInitializer(partition.ToList()))));
}
var code =
CompilationUnit()
@ -132,116 +168,61 @@ public class QuestSourceGenerator : ISourceGenerator
SingletonList<MemberDeclarationSyntax>(
ClassDeclaration("AssemblyQuestLoader")
.WithModifiers(
TokenList(
[
Token(SyntaxKind.PartialKeyword)
]))
.WithMembers(
SingletonList<MemberDeclarationSyntax>(
FieldDeclaration(
VariableDeclaration(
GenericName(
Identifier("IReadOnlyDictionary"))
.WithTypeArgumentList(
TypeArgumentList(
SeparatedList<TypeSyntax>(
new SyntaxNodeOrToken[]
{
PredefinedType(
Token(SyntaxKind
.UShortKeyword)),
Token(SyntaxKind.CommaToken),
IdentifierName("QuestRoot")
}))))
.WithVariables(
SingletonSeparatedList(
VariableDeclarator(
Identifier("Quests"))
.WithInitializer(
EqualsValueClause(
ObjectCreationExpression(
GenericName(
Identifier(
"Dictionary"))
.WithTypeArgumentList(
TypeArgumentList(
SeparatedList<
TypeSyntax>(
new
SyntaxNodeOrToken
[]
{
PredefinedType(
Token(
SyntaxKind
.UShortKeyword)),
Token(
SyntaxKind
.CommaToken),
IdentifierName(
"QuestRoot")
}))))
.WithArgumentList(
ArgumentList())
.WithInitializer(
InitializerExpression(
SyntaxKind
.CollectionInitializerExpression,
SeparatedList<
ExpressionSyntax>(
quests.SelectMany(x =>
CreateQuestInitializer(
x.Item1,
x.Item2)
.ToArray())))))))))
.WithModifiers(
TokenList(
[
Token(SyntaxKind.InternalKeyword),
Token(SyntaxKind.StaticKeyword)
]))))))))
TokenList(Token(SyntaxKind.PartialKeyword)))
.WithMembers(List<MemberDeclarationSyntax>(methods))))))
.NormalizeWhitespace();
// Add the source code to the compilation.
context.AddSource("AssemblyQuestLoader.g.cs", code.ToFullString());
}
private static IEnumerable<SyntaxNodeOrToken> CreateQuestInitializer(ushort questId, QuestRoot quest)
private static StatementSyntax[] CreateInitializer(List<(ushort QuestId, QuestRoot Root)> quests)
{
List<StatementSyntax> statements = [];
foreach (var quest in quests)
{
statements.Add(
ExpressionStatement(
InvocationExpression(
IdentifierName("AddQuest"))
.WithArgumentList(
ArgumentList(
SeparatedList<ArgumentSyntax>(
new SyntaxNodeOrToken[]
{
Argument(
LiteralExpression(SyntaxKind.NumericLiteralExpression,
Literal(quest.QuestId))),
Token(SyntaxKind.CommaToken),
Argument(CreateQuestRootExpression(quest.QuestId, quest.Root))
})))));
}
return statements.ToArray();
}
private static ObjectCreationExpressionSyntax CreateQuestRootExpression(ushort questId, QuestRoot quest)
{
try
{
return new SyntaxNodeOrToken[]
{
InitializerExpression(
SyntaxKind.ComplexElementInitializerExpression,
SeparatedList<ExpressionSyntax>(
new SyntaxNodeOrToken[]
{
LiteralExpression(
SyntaxKind.NumericLiteralExpression,
Literal(questId)),
Token(SyntaxKind.CommaToken),
ObjectCreationExpression(
IdentifierName(nameof(QuestRoot)))
.WithInitializer(
InitializerExpression(
SyntaxKind.ObjectInitializerExpression,
SeparatedList<ExpressionSyntax>(
SyntaxNodeList(
AssignmentList(nameof(QuestRoot.Author), quest.Author)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestRoot.Comment), quest.Comment, null)
.AsSyntaxNodeOrToken(),
AssignmentList(nameof(QuestRoot.TerritoryBlacklist),
quest.TerritoryBlacklist).AsSyntaxNodeOrToken(),
AssignmentExpression(
SyntaxKind.SimpleAssignmentExpression,
IdentifierName(nameof(QuestRoot.QuestSequence)),
CreateQuestSequence(quest.QuestSequence))
))))
})),
Token(SyntaxKind.CommaToken)
};
return ObjectCreationExpression(
IdentifierName(nameof(QuestRoot)))
.WithInitializer(
InitializerExpression(
SyntaxKind.ObjectInitializerExpression,
SeparatedList<ExpressionSyntax>(
SyntaxNodeList(
AssignmentList(nameof(QuestRoot.Author), quest.Author)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestRoot.Comment), quest.Comment, null)
.AsSyntaxNodeOrToken(),
AssignmentList(nameof(QuestRoot.TerritoryBlacklist),
quest.TerritoryBlacklist).AsSyntaxNodeOrToken(),
AssignmentExpression(
SyntaxKind.SimpleAssignmentExpression,
IdentifierName(nameof(QuestRoot.QuestSequence)),
CreateQuestSequence(quest.QuestSequence))))));
}
catch (Exception e)
{

View File

@ -145,6 +145,8 @@ public static class RoslynShortcuts
Assignment(nameof(JumpDestination.StopDistance), jumpDestination.StopDistance, null)
.AsSyntaxNodeOrToken(),
Assignment(nameof(JumpDestination.DelaySeconds), jumpDestination.DelaySeconds, null)
.AsSyntaxNodeOrToken(),
Assignment(nameof(JumpDestination.Type), jumpDestination.Type, default)
.AsSyntaxNodeOrToken()))));
}
else if (value is ExcelRef excelRef)

View File

@ -0,0 +1,44 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"Disabled": true,
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002279,
"Position": {
"X": -196.8872,
"Y": 18.459997,
"Z": 59.952637
},
"TerritoryId": 130,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1001709,
"Position": {
"X": -240.4975,
"Y": 18.7,
"Z": 85.58777
},
"TerritoryId": 130,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_CLSTHM020_00345_Q1_001_1",
"Yes": true
}
]
}
]
}
]
}

View File

@ -0,0 +1,29 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"Disabled": true,
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002277,
"Position": {
"X": -97.550964,
"Y": 7.05,
"Z": 23.605652
},
"TerritoryId": 131,
"InteractionType": "AcceptQuest",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_CLSGLA020_00253_Q1_000_1",
"Yes": true
}
]
}
]
}
]
}

View File

@ -0,0 +1,22 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"Disabled": true,
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001286,
"Position": {
"X": -88.9754,
"Y": 2.55,
"Z": -51.163513
},
"TerritoryId": 130,
"InteractionType": "AcceptQuest"
}
]
}
]
}

View File

@ -207,7 +207,8 @@
"AethernetShortcut": [
"[Limsa Lominsa] Aetheryte Plaza",
"[Limsa Lominsa] Marauders' Guild"
]
],
"NextQuestId": 1099
}
]
}

View File

@ -0,0 +1,75 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1006757,
"Position": {
"X": -4.4709473,
"Y": 44.999886,
"Z": -250.56848
},
"TerritoryId": 128,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1007837,
"Position": {
"X": 256.82446,
"Y": -3.0527449,
"Z": 60.9292
},
"TerritoryId": 139,
"InteractionType": "SinglePlayerDuty",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"Fly": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1007845,
"Position": {
"X": 256.33618,
"Y": -3.2069032,
"Z": 58.091064
},
"StopDistance": 5,
"TerritoryId": 139,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1006757,
"Position": {
"X": -4.4709473,
"Y": 44.999886,
"Z": -250.56848
},
"TerritoryId": 128,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Limsa Lominsa",
"AethernetShortcut": [
"[Limsa Lominsa] Aetheryte Plaza",
"[Limsa Lominsa] Marauders' Guild"
],
"NextQuestId": 1100
}
]
}
]
}

View File

@ -0,0 +1,190 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1006757,
"Position": {
"X": -4.4709473,
"Y": 44.999886,
"Z": -250.56848
},
"TerritoryId": 128,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -260.8949,
"Y": -17.148405,
"Z": -346.92633
},
"TerritoryId": 156,
"InteractionType": "WalkTo",
"AetheryteShortcut": "Mor Dhona",
"Fly": true
},
{
"DataId": 2002715,
"Position": {
"X": -259.02197,
"Y": -15.762573,
"Z": -344.71655
},
"StopDistance": 4.5,
"TerritoryId": 156,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
1949,
2285
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2002716,
"Position": {
"X": -259.02197,
"Y": -15.94574,
"Z": -344.71655
},
"StopDistance": 4.5,
"TerritoryId": 156,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1003818,
"Position": {
"X": 157.36621,
"Y": 7.7920074,
"Z": 98.924194
},
"TerritoryId": 131,
"InteractionType": "Interact",
"AetheryteShortcut": "Ul'dah",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
"[Ul'dah] Weavers' Guild"
]
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1004093,
"Position": {
"X": -25.162231,
"Y": 12.200003,
"Z": 110.795654
},
"TerritoryId": 131,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ul'dah] Weavers' Guild",
"[Ul'dah] Goldsmiths' Guild"
]
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1000691,
"Position": {
"X": 71.97681,
"Y": 8,
"Z": -166.52173
},
"TerritoryId": 133,
"InteractionType": "Interact",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Leatherworkers' Guild & Shaded Bower"
]
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1000357,
"Position": {
"X": 68.314575,
"Y": 8.199997,
"Z": -170.51965
},
"TerritoryId": 133,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1006757,
"Position": {
"X": -4.4709473,
"Y": 44.999886,
"Z": -250.56848
},
"TerritoryId": 128,
"InteractionType": "EquipItem",
"ItemId": 2905,
"AetheryteShortcut": "Limsa Lominsa",
"AethernetShortcut": [
"[Limsa Lominsa] Aetheryte Plaza",
"[Limsa Lominsa] Marauders' Guild"
]
},
{
"TerritoryId": 128,
"InteractionType": "EquipItem",
"ItemId": 3689
},
{
"TerritoryId": 128,
"InteractionType": "EquipItem",
"ItemId": 3466
},
{
"TerritoryId": 128,
"InteractionType": "EquipItem",
"ItemId": 3897
},
{
"DataId": 1006757,
"Position": {
"X": -4.4709473,
"Y": 44.999886,
"Z": -250.56848
},
"TerritoryId": 128,
"InteractionType": "CompleteQuest",
"NextQuestId": 1101
}
]
}
]
}

View File

@ -0,0 +1,215 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1006757,
"Position": {
"X": -4.4709473,
"Y": 44.999886,
"Z": -250.56848
},
"TerritoryId": 128,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1006332,
"Position": {
"X": 426.96265,
"Y": 8.373348,
"Z": 20.004517
},
"TerritoryId": 139,
"InteractionType": "Interact",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"Fly": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1007843,
"Position": {
"X": 388.08264,
"Y": 7.8583374,
"Z": 40.512573
},
"TerritoryId": 139,
"InteractionType": "Action",
"Action": "Esuna",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"Position": {
"X": 423.76727,
"Y": 4.109605,
"Z": 74.008965
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Mount": true,
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
-128
]
},
{
"DataId": 1007844,
"Position": {
"X": 417.16638,
"Y": 3.6468506,
"Z": 59.64746
},
"TerritoryId": 139,
"InteractionType": "Action",
"Action": "Esuna",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1007840,
"Position": {
"X": 427.2068,
"Y": 7.6130996,
"Z": 141.34424
},
"TerritoryId": 139,
"InteractionType": "Action",
"Action": "Esuna",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
8
]
},
{
"Position": {
"X": 477.80576,
"Y": 10.397504,
"Z": 104.84231
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
-32
],
"SkipIf": [
"FlyingUnlocked"
]
},
{
"DataId": 1007842,
"Position": {
"X": 477.25635,
"Y": 8.499207,
"Z": 108.07959
},
"StopDistance": 0.5,
"TerritoryId": 139,
"InteractionType": "Action",
"Action": "Esuna",
"Fly": true,
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1007841,
"Position": {
"X": 503.04407,
"Y": 16.468494,
"Z": 72.46509
},
"TerritoryId": 139,
"InteractionType": "Action",
"Action": "Esuna",
"Fly": true,
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1006332,
"Position": {
"X": 426.96265,
"Y": 8.373348,
"Z": 20.004517
},
"TerritoryId": 139,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1006757,
"Position": {
"X": -4.4709473,
"Y": 44.999886,
"Z": -250.56848
},
"TerritoryId": 128,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Limsa Lominsa",
"AethernetShortcut": [
"[Limsa Lominsa] Aetheryte Plaza",
"[Limsa Lominsa] Marauders' Guild"
],
"NextQuestId": 1102
}
]
}
]
}

View File

@ -0,0 +1,114 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1006757,
"Position": {
"X": -4.4709473,
"Y": 44.999886,
"Z": -250.56848
},
"TerritoryId": 128,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1007838,
"Position": {
"X": 256.36682,
"Y": -3.2069032,
"Z": 58.091064
},
"TerritoryId": 139,
"InteractionType": "SinglePlayerDuty",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"Fly": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1007838,
"Position": {
"X": 256.36682,
"Y": -3.2069032,
"Z": 58.091064
},
"StopDistance": 5,
"TerritoryId": 139,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1007846,
"Position": {
"X": 262.80603,
"Y": -2.852741,
"Z": 63.1875
},
"StopDistance": 5,
"TerritoryId": 139,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 1007847,
"Position": {
"X": 257.98413,
"Y": -3.4,
"Z": 49.05774
},
"TerritoryId": 139,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1007849,
"Position": {
"X": 231.79968,
"Y": 5.18473,
"Z": 61.142822
},
"TerritoryId": 139,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -68,7 +68,8 @@
},
"TerritoryId": 132,
"InteractionType": "Interact",
"Comment": "Pick up Class Quest"
"Comment": "Pick up Class Quest",
"Disabled": true
},
{
"Position": {

View File

@ -137,7 +137,8 @@
},
"TerritoryId": 133,
"InteractionType": "Interact",
"Comment": "Pick up Class Quest"
"Comment": "Pick up Class Quest",
"Disabled": true
},
{
"DataId": 1000100,

View File

@ -105,7 +105,8 @@
},
"TerritoryId": 133,
"InteractionType": "Interact",
"Comment": "Pick up Class Quest"
"Comment": "Pick up Class Quest",
"Disabled": true
},
{
"TerritoryId": 133,

View File

@ -28,103 +28,8 @@
"Z": 3.5552979
},
"TerritoryId": 181,
"InteractionType": "Interact",
"Comment": "Required to accept this Quest; should link to a QuestId"
},
{
"DataId": 1000969,
"Position": {
"X": 7.9193726,
"Y": 40.000175,
"Z": 17.471558
},
"TerritoryId": 181,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"ExcelSheet": "quest/001/ManSea001_00107",
"Prompt": "TEXT_MANSEA001_00107_Q1_000_1",
"Yes": true
}
]
},
{
"DataId": 2001563,
"Position": {
"X": 3.616333,
"Y": 20.004517,
"Z": 9.750427
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest; the next few entries should be run as part of a separate quest"
},
{
"DataId": 2001564,
"Position": {
"X": -3.0671387,
"Y": 20.004517,
"Z": 9.964111
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 2001565,
"Position": {
"X": -11.39856,
"Y": 19.97406,
"Z": 6.6376343
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 2001566,
"Position": {
"X": -18.32611,
"Y": 20.004517,
"Z": 1.7241821
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 2001567,
"Position": {
"X": -30.47229,
"Y": 19.97406,
"Z": 0.8086548
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 2001568,
"Position": {
"X": -44.724243,
"Y": 20.004517,
"Z": -0.5036011
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 1003604,
"Position": {
"X": -60.44104,
"Y": 18.00033,
"Z": -4.348877
},
"TerritoryId": 129,
"InteractionType": "Interact",
"Comment": "Quest Turn-In (Making a Name)"
"InteractionType": "AcceptQuest",
"PickUpQuestId": 111
},
{
"TerritoryId": 129,
@ -234,7 +139,8 @@
},
"TerritoryId": 128,
"InteractionType": "Interact",
"Comment": "Pick up Class Quest"
"Comment": "Pick up Class Quest",
"Disabled": true
},
{
"DataId": 1000972,

View File

@ -28,108 +28,13 @@
"Z": 3.5552979
},
"TerritoryId": 181,
"InteractionType": "Interact",
"Comment": "Required to accept this Quest; should link to a QuestId"
},
{
"DataId": 1000969,
"Position": {
"X": 7.9193726,
"Y": 40.000175,
"Z": 17.471558
},
"TerritoryId": 181,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"ExcelSheet": "quest/001/ManSea001_00107",
"Prompt": "TEXT_MANSEA001_00107_Q1_000_1",
"Yes": true
}
]
},
{
"DataId": 2001563,
"Position": {
"X": 3.616333,
"Y": 20.004517,
"Z": 9.750427
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest; the next few entries should be run as part of a separate quest"
},
{
"DataId": 2001564,
"Position": {
"X": -3.0671387,
"Y": 20.004517,
"Z": 9.964111
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 2001565,
"Position": {
"X": -11.39856,
"Y": 19.97406,
"Z": 6.6376343
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 2001566,
"Position": {
"X": -18.32611,
"Y": 20.004517,
"Z": 1.7241821
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 2001567,
"Position": {
"X": -30.47229,
"Y": 19.97406,
"Z": 0.8086548
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 2001568,
"Position": {
"X": -44.724243,
"Y": 20.004517,
"Z": -0.5036011
},
"TerritoryId": 129,
"InteractionType": "Interact",
"$": "Making a Name: can't abandon quest"
},
{
"DataId": 1003604,
"Position": {
"X": -60.44104,
"Y": 18.00033,
"Z": -4.348877
},
"TerritoryId": 129,
"InteractionType": "Interact",
"Comment": "Quest Turn-In (Making a Name)"
"InteractionType": "AcceptQuest",
"PickUpQuestId": 111
},
{
"TerritoryId": 129,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Gridania",
"Aetheryte": "Limsa Lominsa",
"CompletionQuestVariablesFlags": [
null,
null,
@ -200,7 +105,8 @@
},
"TerritoryId": 129,
"InteractionType": "Interact",
"Comment": "Pick up Class Quest"
"Comment": "Pick up Class Quest",
"Disabled": true
},
{
"TerritoryId": 129,

View File

@ -31,35 +31,9 @@
"Z": -13.260071
},
"TerritoryId": 128,
"InteractionType": "Interact",
"InteractionType": "AcceptQuest",
"Comment": "Accepting 'Rising to the Challenge'"
},
{
"DataId": 1003598,
"Position": {
"X": -12.069946,
"Y": 40.00053,
"Z": 11.459534
},
"TerritoryId": 128,
"InteractionType": "Interact",
"Comment": "'Rising to the Challenge'"
},
{
"DataId": 1005410,
"Position": {
"X": -182.45215,
"Y": 1.9999955,
"Z": 208.75867
},
"TerritoryId": 129,
"InteractionType": "Interact",
"Comment": "'Rising to the Challenge'",
"AethernetShortcut": [
"[Limsa Lominsa] The Aftcastle",
"[Limsa Lominsa] Fishermens' Guild"
]
},
{
"DataId": 1003621,
"Position": {
@ -68,7 +42,8 @@
"Z": 208.66711
},
"TerritoryId": 129,
"InteractionType": "Interact"
"InteractionType": "Interact",
"Comment": "NG+: Requires manual teleport to Lower Decks"
}
]
},

View File

@ -0,0 +1,52 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001500,
"Position": {
"X": 81.77307,
"Y": 1.051391,
"Z": 311.23828
},
"TerritoryId": 141,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1001455,
"Position": {
"X": 59.952637,
"Y": 0.99176025,
"Z": 255.8479
},
"StopDistance": 7,
"TerritoryId": 141,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001541,
"Position": {
"X": -99.4126,
"Y": -11.39856,
"Z": -41.73346
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,56 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001447,
"Position": {
"X": -32.6391,
"Y": -1.0332576,
"Z": -148.51611
},
"TerritoryId": 141,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2000268,
"Position": {
"X": 25.680908,
"Y": 13.076904,
"Z": 47.80652
},
"TerritoryId": 141,
"InteractionType": "Combat",
"EnemySpawnType": "AfterItemUse",
"ItemId": 2000212,
"KillEnemyDataIds": [
187
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001447,
"Position": {
"X": -32.6391,
"Y": -1.0332576,
"Z": -148.51611
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,201 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001578,
"Position": {
"X": -35.446716,
"Y": -2.057618,
"Z": -154.95538
},
"TerritoryId": 141,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1002947,
"Position": {
"X": -95.71985,
"Y": -11.35,
"Z": -44.449524
},
"TerritoryId": 141,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1002949,
"Position": {
"X": -82.71924,
"Y": -11.350104,
"Z": -36.66742
},
"StopDistance": 2,
"TerritoryId": 141,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 1002948,
"Position": {
"X": -80.46088,
"Y": -12.785964,
"Z": -39.44464
},
"StopDistance": 7,
"TerritoryId": 141,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1002950,
"Position": {
"X": -80.76605,
"Y": -12.819771,
"Z": -34.439636
},
"StopDistance": 7,
"TerritoryId": 141,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1002951,
"Position": {
"X": -80.094604,
"Y": -12.790767,
"Z": -33.463074
},
"StopDistance": 7,
"TerritoryId": 141,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1002947,
"Position": {
"X": -95.71985,
"Y": -11.35,
"Z": -44.449524
},
"TerritoryId": 141,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"Position": {
"X": -199.35687,
"Y": -2.8170738,
"Z": 57.860172
},
"TerritoryId": 141,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -215.15814,
"Y": -30.64667,
"Z": 96.92529
},
"TerritoryId": 141,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"DataId": 1002955,
"Position": {
"X": -228.47339,
"Y": -30.853842,
"Z": 117.29602
},
"TerritoryId": 141,
"InteractionType": "SinglePlayerDuty"
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1002947,
"Position": {
"X": -95.71985,
"Y": -11.35,
"Z": -44.449524
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Ul'dah",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
"[Ul'dah] Adventurers' Guild"
]
}
]
}
]
}

View File

@ -0,0 +1,36 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002065,
"Position": {
"X": 60.9292,
"Y": 45.14234,
"Z": -205.005
},
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1002061,
"Position": {
"X": 240.98572,
"Y": 58.357986,
"Z": -160.99799
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,57 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002061,
"Position": {
"X": 240.98572,
"Y": 58.357986,
"Z": -160.99799
},
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 203.66704,
"Y": 51.853172,
"Z": -150.48145
},
"TerritoryId": 140,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 136,
"MinimumKillCount": 4
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1002058,
"Position": {
"X": 59.616943,
"Y": 45.157562,
"Z": -215.89996
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,61 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002058,
"Position": {
"X": 59.616943,
"Y": 45.157562,
"Z": -215.89996
},
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 263.7443,
"Y": 53.7287,
"Z": -12.175757
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
},
{
"DataId": 1001604,
"Position": {
"X": -257.64862,
"Y": -0.28353235,
"Z": 25.223145
},
"TerritoryId": 141,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001605,
"Position": {
"X": 94.46863,
"Y": 0.34075314,
"Z": -272.60242
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
}
]
}
]
}

View File

@ -0,0 +1,37 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001605,
"Position": {
"X": 94.46863,
"Y": 0.34075314,
"Z": -272.60242
},
"TerritoryId": 141,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1002058,
"Position": {
"X": 59.616943,
"Y": 45.157562,
"Z": -215.89996
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Western Thanalan - Horizon"
}
]
}
]
}

View File

@ -0,0 +1,36 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002058,
"Position": {
"X": 59.616943,
"Y": 45.157562,
"Z": -215.89996
},
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1002066,
"Position": {
"X": -176.95892,
"Y": 15.652092,
"Z": -270.98505
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,46 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002067,
"Position": {
"X": -178.94263,
"Y": 15.632084,
"Z": -269.9779
},
"StopDistance": 7,
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": -289.1099,
"Y": 15.249638,
"Z": -209.01831
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
},
{
"DataId": 1002068,
"Position": {
"X": -284.50446,
"Y": 13.480675,
"Z": -144.9455
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,60 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002071,
"Position": {
"X": -324.78827,
"Y": 17.58331,
"Z": -127.61127
},
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -243.01067,
"Y": 15.438055,
"Z": -256.949
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
},
{
"DataId": 1003816,
"Position": {
"X": -235.21783,
"Y": 15.910468,
"Z": -293.1411
},
"TerritoryId": 140,
"InteractionType": "SinglePlayerDuty"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1002058,
"Position": {
"X": 59.616943,
"Y": 45.157562,
"Z": -215.89996
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,57 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001541,
"Position": {
"X": -99.4126,
"Y": -11.39856,
"Z": -41.73346
},
"TerritoryId": 141,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 141,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Central Thanalan - Black Brush Station"
},
{
"DataId": 1001447,
"Position": {
"X": -32.6391,
"Y": -1.0332576,
"Z": -148.51611
},
"TerritoryId": 141,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001447,
"Position": {
"X": -32.6391,
"Y": -1.0332576,
"Z": -148.51611
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest",
"Comment": "All starting gear (except the hat) is ilvl 5 already"
}
]
}
]
}

View File

@ -0,0 +1,54 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001605,
"Position": {
"X": 94.46863,
"Y": 0.34075314,
"Z": -272.60242
},
"TerritoryId": 141,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 125.61467,
"Y": 29.092033,
"Z": -14.67918
},
"TerritoryId": 141,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
355
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001605,
"Position": {
"X": 94.46863,
"Y": 0.34075314,
"Z": -272.60242
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,107 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002061,
"Position": {
"X": 240.98572,
"Y": 58.357986,
"Z": -160.99799
},
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2001368,
"Position": {
"X": 297.56616,
"Y": 62.546753,
"Z": -194.04901
},
"TerritoryId": 140,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
187
],
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 2001735,
"Position": {
"X": 318.31836,
"Y": 63.523315,
"Z": -200.9461
},
"TerritoryId": 140,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
187
],
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 2001369,
"Position": {
"X": 293.01892,
"Y": 63.46228,
"Z": -236.16394
},
"TerritoryId": 140,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
187
],
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1002061,
"Position": {
"X": 240.98572,
"Y": 58.357986,
"Z": -160.99799
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,366 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1004004,
"Position": {
"X": -139.29962,
"Y": 4.1,
"Z": -113.481445
},
"TerritoryId": 130,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1004433,
"Position": {
"X": -23.605713,
"Y": 83.19999,
"Z": -2.3041382
},
"TerritoryId": 130,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ul'dah] Adventurers' Guild",
"[Ul'dah] Airship Landing"
],
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_MANWIL200_00528_Q1_000_1",
"Yes": true
}
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2001667,
"Position": {
"X": -45.365112,
"Y": 84.09241,
"Z": -0.80877686
},
"TerritoryId": 130,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_MANWIL200_00528_Q2_000_1",
"Yes": true
}
]
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1002703,
"Position": {
"X": -12.375122,
"Y": 91.499985,
"Z": -0.5340576
},
"TerritoryId": 128,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_MANWIL200_00528_Q7_000_1",
"Yes": true
}
]
},
{
"DataId": 1002693,
"Position": {
"X": -6.515625,
"Y": 91.49996,
"Z": -13.656921
},
"TerritoryId": 128,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1003583,
"Position": {
"X": -7.248047,
"Y": 91.49999,
"Z": -16.128845
},
"TerritoryId": 128,
"InteractionType": "Interact",
"TargetTerritoryId": 129,
"DialogueChoices": [
{
"Type": "List",
"ExcelSheet": "Warp",
"Prompt": null,
"Answer": 131094
}
]
},
{
"DataId": 1001029,
"Position": {
"X": 9.170593,
"Y": 20.999403,
"Z": -15.213318
},
"TerritoryId": 129,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 6,
"Steps": [
{
"TerritoryId": 129,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Limsa Lominsa"
},
{
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
},
{
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
},
{
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
"AethernetShortcut": [
"[Limsa Lominsa] Arcanists' Guild",
"[Limsa Lominsa] Hawkers' Alley"
]
},
{
"Position": {
"X": -83.8817,
"Y": 18.475962,
"Z": -29.903847
},
"TerritoryId": 129,
"InteractionType": "WalkTo",
"TargetTerritoryId": 128,
"Comment": "Walk to Culinarians' Guild",
"AethernetShortcut": [
"[Limsa Lominsa] Fishermens' Guild",
"[Limsa Lominsa] Aetheryte Plaza"
]
},
{
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
},
{
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
},
{
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Limsa Lominsa] The Aftcastle"
},
{
"DataId": 1002695,
"Position": {
"X": -25.92511,
"Y": 91.999954,
"Z": -3.6774292
},
"TerritoryId": 128,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Limsa Lominsa] The Aftcastle",
"[Limsa Lominsa] Airship Landing"
],
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_MANWIL200_00528_Q3_000_1",
"Yes": true
}
]
}
]
},
{
"Sequence": 7,
"Steps": [
{
"DataId": 2001670,
"Position": {
"X": -11.12384,
"Y": 92.0271,
"Z": 17.166382
},
"TerritoryId": 128,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_MANWIL200_00528_Q4_000_1",
"Yes": true
}
]
}
]
},
{
"Sequence": 8,
"Steps": [
{
"DataId": 1000109,
"Position": {
"X": 29.770264,
"Y": -19.000002,
"Z": 114.12219
},
"TerritoryId": 132,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_MANWIL200_00528_Q10_000_1",
"Yes": true
}
],
"Comment": "Gridania Arrivals Attendant"
},
{
"DataId": 1002830,
"Position": {
"X": 36.63684,
"Y": -18.800003,
"Z": 89.64673
},
"TerritoryId": 132,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"TerritoryId": 132,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Gridania"
},
{
"TerritoryId": 132,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Archers' Guild"
},
{
"Position": {
"X": 12.761639,
"Y": 1.2659149,
"Z": -18.021421
},
"TerritoryId": 132,
"InteractionType": "WalkTo",
"TargetTerritoryId": 133,
"AethernetShortcut": [
"[Gridania] Archers' Guild",
"[Gridania] Aetheryte Plaza"
]
},
{
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
},
{
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Lancers' Guild"
},
{
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
"AethernetShortcut": [
"[Gridania] Lancers' Guild",
"[Gridania] Leatherworkers' Guild & Shaded Bower"
]
},
{
"Position": {
"X": -174.09056,
"Y": 10.91981,
"Z": -162.12527
},
"TerritoryId": 133,
"InteractionType": "WalkTo"
},
{
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Botanists' Guild"
},
{
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Conjurers' Guild",
"AethernetShortcut": [
"[Gridania] Botanists' Guild",
"[Gridania] Mih Khetto's Amphitheatre"
]
},
{
"DataId": 1000460,
"Position": {
"X": -159.41101,
"Y": 4.054107,
"Z": -4.1047363
},
"TerritoryId": 133,
"InteractionType": "Interact"
}
]
}
]
}

View File

@ -0,0 +1,51 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1003995,
"Position": {
"X": 75.33374,
"Y": 2.135708,
"Z": 316.33472
},
"TerritoryId": 141,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1003996,
"Position": {
"X": 202.65503,
"Y": 14.136861,
"Z": 536.88855
},
"TerritoryId": 141,
"InteractionType": "SinglePlayerDuty"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1003995,
"Position": {
"X": 75.33374,
"Y": 2.135708,
"Z": 316.33472
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,110 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1004005,
"Position": {
"X": -123.88806,
"Y": 40,
"Z": 95.384155
},
"TerritoryId": 131,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ul'dah] Adventurers' Guild",
"[Ul'dah] Alchemists' Guild"
],
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_MANWIL007_00551_Q1_000_1",
"Yes": true
}
]
},
{
"DataId": 1004002,
"Position": {
"X": 1.0527954,
"Y": 0.014807776,
"Z": -1.6633301
},
"TerritoryId": 210,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2001427,
"Position": {
"X": 246.93665,
"Y": -17.105408,
"Z": -131.48706
},
"TerritoryId": 141,
"InteractionType": "Interact",
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1004005,
"Position": {
"X": -123.88806,
"Y": 40,
"Z": 95.384155
},
"TerritoryId": 131,
"InteractionType": "Interact",
"AetheryteShortcut": "Ul'dah",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
"[Ul'dah] Alchemists' Guild"
],
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_MANWIL007_00551_Q1_000_1",
"Yes": true
}
]
},
{
"DataId": 1004003,
"Position": {
"X": 0.015197754,
"Y": 0.014807776,
"Z": -1.6937866
},
"TerritoryId": 210,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,71 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 130,
"InteractionType": "EquipItem",
"ItemId": 4196
},
{
"DataId": 1001821,
"Position": {
"X": -24.124573,
"Y": 38.000004,
"Z": 85.31323
},
"TerritoryId": 131,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ul'dah] Adventurers' Guild",
"[Ul'dah] The Chamber of Rule"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 2001011,
"Position": {
"X": 0.015197754,
"Y": 1.9683228,
"Z": 8.132996
},
"TerritoryId": 178,
"InteractionType": "Interact",
"TargetTerritoryId": 130
},
{
"DataId": 1004004,
"Position": {
"X": -139.29962,
"Y": 4.1,
"Z": -113.481445
},
"TerritoryId": 130,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,160 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1003988,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.84338
},
"TerritoryId": 182,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 130,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Adventurers' Guild"
},
{
"Position": {
"X": 95.43315,
"Y": 4,
"Z": -105.26365
},
"TerritoryId": 130,
"InteractionType": "WalkTo"
},
{
"DataId": 1003908,
"Position": {
"X": 137.95679,
"Y": 4.041112,
"Z": -41.09259
},
"TerritoryId": 131,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Sapphire Avenue Exchange"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Weavers' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Miners' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Goldsmiths' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Gladiators' Guild"
},
{
"DataId": 1002277,
"Position": {
"X": -97.550964,
"Y": 7.05,
"Z": 23.605652
},
"TerritoryId": 131,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 1002277,
"Position": {
"X": -97.550964,
"Y": 7.05,
"Z": 23.605652
},
"TerritoryId": 131,
"InteractionType": "AcceptQuest",
"PickUpQuestId": 253,
"Disabled": true,
"Comment": "Level 1 class quest isn't finished"
},
{
"Position": {
"X": -112.64317,
"Y": 7.734872,
"Z": 9.960203
},
"TerritoryId": 131,
"InteractionType": "WalkTo"
},
{
"TerritoryId": 130,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Thaumaturges' Guild"
},
{
"TerritoryId": 130,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Ul'dah",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
"[Ul'dah] Adventurers' Guild"
]
}
]
}
]
}

View File

@ -0,0 +1,160 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1003988,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.84338
},
"TerritoryId": 182,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 130,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Adventurers' Guild"
},
{
"Position": {
"X": 95.43315,
"Y": 4,
"Z": -105.26365
},
"TerritoryId": 130,
"InteractionType": "WalkTo"
},
{
"DataId": 1003908,
"Position": {
"X": 137.95679,
"Y": 4.041112,
"Z": -41.09259
},
"TerritoryId": 131,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Sapphire Avenue Exchange"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Weavers' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Miners' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Goldsmiths' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Gladiators' Guild"
},
{
"Position": {
"X": -112.64317,
"Y": 7.734872,
"Z": 9.960203
},
"TerritoryId": 131,
"InteractionType": "WalkTo"
},
{
"TerritoryId": 130,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Thaumaturges' Guild"
},
{
"DataId": 1001286,
"Position": {
"X": -88.9754,
"Y": 2.55,
"Z": -51.163513
},
"TerritoryId": 130,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 1001286,
"Position": {
"X": -88.9754,
"Y": 2.55,
"Z": -51.163513
},
"TerritoryId": 130,
"InteractionType": "AcceptQuest",
"PickUpQuestId": 345,
"Disabled": true,
"Comment": "Level 1 class quest isn't finished"
},
{
"TerritoryId": 130,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Ul'dah",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
"[Ul'dah] Adventurers' Guild"
]
}
]
}
]
}

View File

@ -0,0 +1,160 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1003988,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.84338
},
"TerritoryId": 182,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 130,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Adventurers' Guild"
},
{
"Position": {
"X": 95.43315,
"Y": 4,
"Z": -105.26365
},
"TerritoryId": 130,
"InteractionType": "WalkTo"
},
{
"DataId": 1003908,
"Position": {
"X": 137.95679,
"Y": 4.041112,
"Z": -41.09259
},
"TerritoryId": 131,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Sapphire Avenue Exchange"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Weavers' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Miners' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Goldsmiths' Guild"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Gladiators' Guild"
},
{
"Position": {
"X": -112.64317,
"Y": 7.734872,
"Z": 9.960203
},
"TerritoryId": 131,
"InteractionType": "WalkTo"
},
{
"TerritoryId": 130,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Thaumaturges' Guild"
},
{
"DataId": 1002279,
"Position": {
"X": -196.8872,
"Y": 18.459997,
"Z": 59.952637
},
"TerritoryId": 130,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 1002279,
"Position": {
"X": -196.8872,
"Y": 18.459997,
"Z": 59.952637
},
"TerritoryId": 130,
"InteractionType": "AcceptQuest",
"PickUpQuestId": 345,
"Disabled": true,
"Comment": "Level 1 class quest isn't finished"
},
{
"TerritoryId": 130,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Ul'dah",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
"[Ul'dah] Adventurers' Guild"
]
}
]
}
]
}

View File

@ -0,0 +1,36 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1003987,
"Position": {
"X": 33.37146,
"Y": 4.0999947,
"Z": -151.99518
},
"TerritoryId": 182,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1003988,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.84338
},
"TerritoryId": 182,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,61 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001834,
"Position": {
"X": -23.331116,
"Y": 10,
"Z": -43.442444
},
"TerritoryId": 130,
"InteractionType": "Interact",
"TargetTerritoryId": 131
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] The Chamber of Rule"
},
{
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Alchemists' Guild"
},
{
"DataId": 1003995,
"Position": {
"X": 75.33374,
"Y": 2.135708,
"Z": 316.33472
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Ul'dah] Alchemists' Guild",
"[Ul'dah] Gate of Nald (Central Thanalan)"
]
}
]
}
]
}

View File

@ -0,0 +1,45 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"TerritoryId": 140,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Western Thanalan - Horizon",
"AethernetShortcut": [
"[Ul'dah] Adventurers' Guild",
"[Ul'dah] Gate of the Sultana (Western Thanalan)"
]
},
{
"DataId": 1002065,
"Position": {
"X": 60.9292,
"Y": 45.14234,
"Z": -205.005
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,41 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002058,
"Position": {
"X": 59.616943,
"Y": 45.157562,
"Z": -215.89996
},
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Ul'dah",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
"[Ul'dah] Adventurers' Guild"
]
}
]
}
]
}

View File

@ -0,0 +1,89 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1004002,
"Position": {
"X": 1.0527954,
"Y": 0.014807776,
"Z": -1.6633301
},
"TerritoryId": 210,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2001695,
"Position": {
"X": 0.0305846,
"Y": 0.92887,
"Z": 10.15652
},
"TerritoryId": 210,
"InteractionType": "Interact",
"TargetTerritoryId": 131
},
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ul'dah] Alchemists' Guild",
"[Ul'dah] Adventurers' Guild"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1004093,
"Position": {
"X": -25.162231,
"Y": 12.200003,
"Z": 110.795654
},
"TerritoryId": 131,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ul'dah] Adventurers' Guild",
"[Ul'dah] Goldsmiths' Guild"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1001353,
"Position": {
"X": 21.072632,
"Y": 7.45,
"Z": -78.78235
},
"TerritoryId": 130,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ul'dah] Goldsmiths' Guild",
"[Ul'dah] Adventurers' Guild"
]
}
]
}
]
}

View File

@ -0,0 +1,113 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1003995,
"Position": {
"X": 75.33374,
"Y": 2.135708,
"Z": 316.33472
},
"TerritoryId": 141,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1004601,
"Position": {
"X": -62.424683,
"Y": 4.642519,
"Z": 261.28015
},
"TerritoryId": 141,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1004600,
"Position": {
"X": 125.993774,
"Y": 14.462202,
"Z": 278.43127
},
"TerritoryId": 141,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"Position": {
"X": 117.63772,
"Y": 1.6851518,
"Z": 296.93826
},
"TerritoryId": 141,
"InteractionType": "WalkTo",
"DisableNavmesh": false,
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
-128
]
},
{
"DataId": 1004599,
"Position": {
"X": 89.86035,
"Y": 4.6361504,
"Z": 425.40625
},
"TerritoryId": 141,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1003995,
"Position": {
"X": 75.33374,
"Y": 2.135708,
"Z": 316.33472
},
"TerritoryId": 141,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,42 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002829,
"Position": {
"X": -157.03064,
"Y": 4.0492578,
"Z": -2.7314453
},
"StopDistance": 5,
"TerritoryId": 133,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1000972,
"Position": {
"X": 20.279175,
"Y": 40.19993,
"Z": -6.1189575
},
"TerritoryId": 128,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Limsa Lominsa",
"AethernetShortcut": [
"[Limsa Lominsa] Aetheryte Plaza",
"[Limsa Lominsa] The Aftcastle"
]
}
]
}
]
}

View File

@ -0,0 +1,172 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1002698,
"Position": {
"X": 8.499207,
"Y": 39.505493,
"Z": 3.5552979
},
"TerritoryId": 181,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1000969,
"Position": {
"X": 7.9193726,
"Y": 40.000175,
"Z": 17.471558
},
"TerritoryId": 181,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"ExcelSheet": "quest/001/ManSea001_00107",
"Prompt": "TEXT_MANSEA001_00107_Q1_000_1",
"Yes": true
}
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2001563,
"Position": {
"X": 3.616333,
"Y": 20.004517,
"Z": 9.750427
},
"TerritoryId": 129,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 2001564,
"Position": {
"X": -3.0671387,
"Y": 20.004517,
"Z": 9.964111
},
"TerritoryId": 129,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 2001565,
"Position": {
"X": -11.39856,
"Y": 19.97406,
"Z": 6.6376343
},
"TerritoryId": 129,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 2001566,
"Position": {
"X": -18.32611,
"Y": 20.004517,
"Z": 1.7241821
},
"TerritoryId": 129,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
},
{
"DataId": 2001567,
"Position": {
"X": -30.47229,
"Y": 19.97406,
"Z": 0.8086548
},
"TerritoryId": 129,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
8
]
},
{
"DataId": 2001568,
"Position": {
"X": -44.724243,
"Y": 20.004517,
"Z": -0.5036011
},
"TerritoryId": 129,
"InteractionType": "Interact",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
4
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1003604,
"Position": {
"X": -60.44104,
"Y": 18.00033,
"Z": -4.348877
},
"TerritoryId": 129,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,56 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "liza",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1005411,
"Position": {
"X": 13.412659,
"Y": 40.2,
"Z": -13.260071
},
"TerritoryId": 128,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1003598,
"Position": {
"X": -12.069946,
"Y": 40.00053,
"Z": 11.459534
},
"TerritoryId": 128,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1005410,
"Position": {
"X": -182.45215,
"Y": 1.9999955,
"Z": 208.75867
},
"TerritoryId": 129,
"InteractionType": "CompleteQuest",
"Comment": "'Rising to the Challenge'",
"AethernetShortcut": [
"[Limsa Lominsa] The Aftcastle",
"[Limsa Lominsa] Fishermens' Guild"
]
}
]
}
]
}

View File

@ -0,0 +1,74 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012287,
"Position": {
"X": -28.397034,
"Y": 100.969696,
"Z": -186.4195
},
"TerritoryId": 399,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 56.196793,
"Y": 83.32266,
"Z": -218.24187
},
"TerritoryId": 399,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
4506,
4507
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 104.56799,
"Y": 63.322918,
"Z": -218.18315
},
"TerritoryId": 399,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
4506,
4507
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012287,
"Position": {
"X": -28.397034,
"Y": 100.969696,
"Z": -186.4195
},
"TerritoryId": 399,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,84 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012102,
"Position": {
"X": 72.40405,
"Y": 205.6815,
"Z": 31.631958
},
"TerritoryId": 478,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 148.52824,
"Y": 207,
"Z": 117.84323
},
"TerritoryId": 478,
"InteractionType": "WalkTo",
"TargetTerritoryId": 399
},
{
"DataId": 2005878,
"Position": {
"X": 490.77588,
"Y": 83.7262,
"Z": -14.847046
},
"TerritoryId": 399,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 16 16 16 0 0 64"
},
{
"DataId": 2005879,
"Position": {
"X": 496.42163,
"Y": 83.7262,
"Z": 18.631226
},
"TerritoryId": 399,
"InteractionType": "Interact",
"$": "16 16 16 0 0 64 -> 32 17 32 0 0 96"
},
{
"DataId": 2005877,
"Position": {
"X": 458.70142,
"Y": 83.7262,
"Z": 34.74475
},
"TerritoryId": 399,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012102,
"Position": {
"X": 72.40405,
"Y": 205.6815,
"Z": 31.631958
},
"TerritoryId": 478,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Idyllshire"
}
]
}
]
}

View File

@ -0,0 +1,94 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012133,
"Position": {
"X": -26.840637,
"Y": 206.49944,
"Z": 28.67163
},
"TerritoryId": 478,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 71.86769,
"Y": 204.99998,
"Z": 145.98666
},
"TerritoryId": 478,
"InteractionType": "WalkTo",
"TargetTerritoryId": 399
},
{
"DataId": 1013651,
"Position": {
"X": -475.76105,
"Y": 155.8605,
"Z": -209.76581
},
"TerritoryId": 399,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -403.42465,
"Y": 154.8542,
"Z": 82.59637
},
"TerritoryId": 399,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
5042
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2005885,
"Position": {
"X": -403.2807,
"Y": 155.35205,
"Z": 82.84119
},
"TerritoryId": 399,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013651,
"Position": {
"X": -475.76105,
"Y": 155.8605,
"Z": -209.76581
},
"TerritoryId": 399,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,107 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012141,
"Position": {
"X": 35.690796,
"Y": 38.43,
"Z": 12.985352
},
"TerritoryId": 463,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2005337,
"Position": {
"X": 7.765594,
"Y": 38.9395,
"Z": -50.9989
},
"TerritoryId": 463,
"InteractionType": "Interact",
"TargetTerritoryId": 399
},
{
"DataId": 2006061,
"Position": {
"X": -486.93066,
"Y": 137.40747,
"Z": 701.3198
},
"TerritoryId": 399,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
44
],
"$": "0 0 0 0 0 0 -> 16 1 0 0 0 128"
},
{
"DataId": 2006062,
"Position": {
"X": -471.8548,
"Y": 137.40747,
"Z": 705.5619
},
"TerritoryId": 399,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
44
],
"$": "16 1 0 0 0 128 -> 33 1 0 0 0 192"
},
{
"DataId": 2006063,
"Position": {
"X": -473.50275,
"Y": 137.40747,
"Z": 685.3893
},
"TerritoryId": 399,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
44
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 2005336,
"Position": {
"X": -488.79227,
"Y": 138.93335,
"Z": 741.0543
},
"TerritoryId": 399,
"InteractionType": "Interact",
"TargetTerritoryId": 463
},
{
"DataId": 1012141,
"Position": {
"X": 35.690796,
"Y": 38.43,
"Z": 12.985352
},
"TerritoryId": 463,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,82 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1011952,
"Position": {
"X": -277.63788,
"Y": -184.59735,
"Z": 741.60376
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -333.82166,
"Y": -182.95169,
"Z": 718.7151
},
"TerritoryId": 401,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 4813,
"MinimumKillCount": 1,
"RewardItemId": 2001599,
"RewardItemCount": 1
}
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -333.82166,
"Y": -182.95169,
"Z": 718.7151
},
"TerritoryId": 401,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"ComplexCombatData": [
{
"DataId": 4813,
"MinimumKillCount": 1,
"RewardItemId": 2001599,
"RewardItemCount": 1
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1011952,
"Position": {
"X": -277.63788,
"Y": -184.59735,
"Z": 741.60376
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,52 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1014720,
"Position": {
"X": 13.809326,
"Y": 15.96505,
"Z": -13.870483
},
"TerritoryId": 419,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012055,
"Position": {
"X": -656.76355,
"Y": -117.32357,
"Z": 492.78992
},
"TerritoryId": 401,
"InteractionType": "Interact",
"AetheryteShortcut": "The Sea of Clouds - Camp Cloudtop"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1011952,
"Position": {
"X": -277.63788,
"Y": -184.59735,
"Z": 741.60376
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,74 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012069,
"Position": {
"X": -647.0283,
"Y": -51.05719,
"Z": -417.74628
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2005824,
"Position": {
"X": 204.8523,
"Y": 12.741211,
"Z": -596.2158
},
"TerritoryId": 401,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 16 1 16 0 0 128"
},
{
"DataId": 2005826,
"Position": {
"X": 224.93323,
"Y": 12.863342,
"Z": -653.3456
},
"TerritoryId": 401,
"InteractionType": "Interact",
"$": "16 1 16 0 0 128 -> 32 17 32 0 0 160"
},
{
"DataId": 2005825,
"Position": {
"X": 244.34265,
"Y": 38.345825,
"Z": -564.3549
},
"TerritoryId": 401,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012069,
"Position": {
"X": -647.0283,
"Y": -51.05719,
"Z": -417.74628
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "The Sea of Clouds - Ok' Zundu"
}
]
}
]
}

View File

@ -0,0 +1,76 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012068,
"Position": {
"X": -597.0398,
"Y": -51.05185,
"Z": -387.0451
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012072,
"Position": {
"X": -568.5969,
"Y": -50.649483,
"Z": -452.10956
},
"TerritoryId": 401,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 16 16 0 0 0 64"
},
{
"DataId": 1012071,
"Position": {
"X": -568.3833,
"Y": -50.605247,
"Z": -449.11877
},
"TerritoryId": 401,
"InteractionType": "Interact",
"$": "16 16 0 0 0 64 -> 32 17 0 0 0 96"
},
{
"DataId": 1012069,
"Position": {
"X": -647.0283,
"Y": -51.05719,
"Z": -417.74628
},
"TerritoryId": 401,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1014171,
"Position": {
"X": -373.43408,
"Y": -55.21164,
"Z": -630.0908
},
"TerritoryId": 401,
"InteractionType": "Say",
"ChatMessage": {
"Key": "TEXT_HEAVNZ706_01910_SAY_000_000"
}
}
]
}
]
}

View File

@ -0,0 +1,103 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013282,
"Position": {
"X": 304.1886,
"Y": -36.405907,
"Z": 332.69226
},
"TerritoryId": 138,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Western La Noscea - Aleport",
"SkipIf": [
"AetheryteShortcutIfInSameTerritory"
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Fly": true,
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake"
},
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Mount": true
},
{
"DataId": 1013339,
"Position": {
"X": 396.16992,
"Y": 8.113181,
"Z": 48.142212
},
"TerritoryId": 139,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Fly": true
},
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "CompleteQuest",
"NextQuestId": 598
}
]
}
]
}

View File

@ -0,0 +1,135 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1006746,
"Position": {
"X": 460.65454,
"Y": 8.309061,
"Z": 74.47925
},
"TerritoryId": 137,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
"SkipIf": [
"AetheryteShortcutIfInSameTerritory"
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Fly": true,
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake"
},
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1004349,
"Position": {
"X": 444.99866,
"Y": -4.487237,
"Z": -453.02515
},
"TerritoryId": 156,
"InteractionType": "Interact",
"Fly": true,
"AetheryteShortcut": "Mor Dhona",
"$": "0 0 0 0 0 0 -> 17 0 0 0 0 64"
},
{
"DataId": 1007067,
"Position": {
"X": 444.99866,
"Y": -4.3439503,
"Z": -446.00598
},
"TerritoryId": 156,
"InteractionType": "Interact",
"$": "17 0 0 0 0 64 -> 33 1 0 0 0 192"
},
{
"DataId": 1006550,
"Position": {
"X": 449.33228,
"Y": -12.436822,
"Z": -387.5639
},
"TerritoryId": 156,
"InteractionType": "Interact",
"Fly": true,
"StopDistance": 1
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2005571,
"Position": {
"X": 442.8015,
"Y": -19.516357,
"Z": -291.43213
},
"TerritoryId": 156,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Fly": true,
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake"
},
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "CompleteQuest",
"NextQuestId": 586
}
]
}
]
}

View File

@ -0,0 +1,69 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"SkipIf": [
"AetheryteShortcutIfInSameTerritory"
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1014199,
"Position": {
"X": 531.33435,
"Y": 348.49677,
"Z": -737.4227
},
"TerritoryId": 155,
"InteractionType": "SinglePlayerDuty",
"Fly": true,
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Fly": true,
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake"
},
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "CompleteQuest",
"NextQuestId": 588
}
]
}
]
}

View File

@ -0,0 +1,168 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"SkipIf": [
"AetheryteShortcutIfInSameTerritory"
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1011919,
"Position": {
"X": 497.82556,
"Y": -49.790283,
"Z": 11.825684
},
"TerritoryId": 398,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128"
},
{
"DataId": 1011921,
"Position": {
"X": 453.36072,
"Y": -51.141403,
"Z": 58.579346
},
"TerritoryId": 398,
"InteractionType": "Interact",
"$": "1 0 0 0 0 128 -> 2 0 0 0 0 160"
},
{
"DataId": 1011920,
"Position": {
"X": 519.8595,
"Y": -51.071976,
"Z": 88.24292
},
"TerritoryId": 398,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2005574,
"Position": {
"X": 447.07397,
"Y": -47.715027,
"Z": -283.68048
},
"TerritoryId": 398,
"InteractionType": "Interact",
"Fly": true,
"StopDistance": 0.25,
"SkipIf": [
"FlyingLocked"
]
},
{
"DataId": 2005574,
"Position": {
"X": 447.07397,
"Y": -47.715027,
"Z": -283.68048
},
"TerritoryId": 398,
"InteractionType": "Interact",
"Fly": false,
"SkipIf": [
"FlyingUnlocked"
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2005573,
"Position": {
"X": 441.94702,
"Y": -21.530518,
"Z": -545.03705
},
"TerritoryId": 398,
"InteractionType": "Combat",
"EnemySpawnType": "AfterItemUse",
"ItemId": 2001590,
"KillEnemyDataIds": [
4373
],
"Fly": true,
"StopDistance": 0.25,
"SkipIf": [
"FlyingLocked"
]
},
{
"DataId": 2005573,
"Position": {
"X": 441.94702,
"Y": -21.530518,
"Z": -545.03705
},
"TerritoryId": 398,
"InteractionType": "Combat",
"EnemySpawnType": "AfterItemUse",
"ItemId": 2001590,
"KillEnemyDataIds": [
4373
],
"Fly": false,
"StopDistance": 0.25,
"SkipIf": [
"FlyingUnlocked"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Fly": true,
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake"
},
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "CompleteQuest",
"NextQuestId": 596
}
]
}
]
}

View File

@ -0,0 +1,192 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"SkipIf": [
"AetheryteShortcutIfInSameTerritory"
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1013282,
"Position": {
"X": 304.1886,
"Y": -36.405907,
"Z": 332.69226
},
"TerritoryId": 138,
"InteractionType": "Interact",
"Fly": true,
"AetheryteShortcut": "Western La Noscea - Aleport"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1003584,
"Position": {
"X": 317.43335,
"Y": -36.325005,
"Z": 352.86487
},
"TerritoryId": 138,
"InteractionType": "Interact",
"TargetTerritoryId": 138
},
{
"DataId": 1013287,
"Position": {
"X": -297.6883,
"Y": -41.69223,
"Z": 408.5603
},
"TerritoryId": 138,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1013292,
"Position": {
"X": -229.8772,
"Y": -37.628788,
"Z": 545.15906
},
"TerritoryId": 138,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
4361,
4362
],
"Fly": true
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1013292,
"Position": {
"X": -229.8772,
"Y": -37.628788,
"Z": 545.15906
},
"TerritoryId": 138,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1013334,
"Position": {
"X": -276.60034,
"Y": -37.47169,
"Z": 586.96875
},
"TerritoryId": 138,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
4361,
4362
],
"Fly": true
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1013334,
"Position": {
"X": -276.60034,
"Y": -37.47169,
"Z": 586.96875
},
"TerritoryId": 138,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 7,
"Steps": [
{
"DataId": 1013338,
"Position": {
"X": -253.25403,
"Y": -39.465584,
"Z": 661.21924
},
"TerritoryId": 138,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
4402,
4403
],
"Fly": true
}
]
},
{
"Sequence": 8,
"Steps": [
{
"DataId": 1013337,
"Position": {
"X": -254.10852,
"Y": -39.315884,
"Z": 658.8082
},
"TerritoryId": 138,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013282,
"Position": {
"X": 304.1886,
"Y": -36.405907,
"Z": 332.69226
},
"TerritoryId": 138,
"InteractionType": "CompleteQuest",
"NextQuestId": 1677
}
]
}
]
}

View File

@ -0,0 +1,176 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"SkipIf": [
"AetheryteShortcutIfInSameTerritory"
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Mount": true
},
{
"DataId": 1013339,
"Position": {
"X": 396.16992,
"Y": 8.113181,
"Z": 48.142212
},
"TerritoryId": 139,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1014284,
"Position": {
"X": 384.2068,
"Y": -0.39099246,
"Z": 65.90369
},
"TerritoryId": 139,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1014284,
"Position": {
"X": 384.2068,
"Y": -0.39099246,
"Z": 65.90369
},
"TerritoryId": 139,
"InteractionType": "Emote",
"Emote": "slap"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1013304,
"Position": {
"X": 347.37158,
"Y": 3.0454707,
"Z": -9.445435
},
"TerritoryId": 139,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1013310,
"Position": {
"X": 354.63477,
"Y": 23.944334,
"Z": -133.44019
},
"TerritoryId": 139,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
4404,
4405
],
"Fly": true
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1013310,
"Position": {
"X": 354.63477,
"Y": 23.944334,
"Z": -133.44019
},
"TerritoryId": 139,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 7,
"Steps": [
{
"DataId": 1013307,
"Position": {
"X": 281.69678,
"Y": 38.53493,
"Z": -176.74524
},
"TerritoryId": 139,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Fly": true
},
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "CompleteQuest",
"NextQuestId": 601
}
]
}
]
}

View File

@ -0,0 +1,115 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013279,
"Position": {
"X": 441.70276,
"Y": 8.670496,
"Z": 18.814331
},
"TerritoryId": 139,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
"SkipIf": [
"AetheryteShortcutIfInSameTerritory"
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 427.1206,
"Y": 7.9075317,
"Z": 24.77774
},
"TerritoryId": 139,
"InteractionType": "WalkTo",
"Mount": true
},
{
"DataId": 1013316,
"Position": {
"X": 398.97766,
"Y": 8.611752,
"Z": 46.28064
},
"TerritoryId": 139,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1013316,
"Position": {
"X": 398.97766,
"Y": 8.611752,
"Z": 46.28064
},
"TerritoryId": 139,
"InteractionType": "Emote",
"Emote": "slap"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1006614,
"Position": {
"X": 65.87317,
"Y": -3.1181886,
"Z": 61.41748
},
"TerritoryId": 138,
"InteractionType": "Interact",
"Fly": true,
"StopDistance": 1
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1013312,
"Position": {
"X": -118.88306,
"Y": -25.500666,
"Z": 42.374268
},
"TerritoryId": 138,
"InteractionType": "SinglePlayerDuty",
"Fly": true
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013329,
"Position": {
"X": -109.9718,
"Y": -24.72433,
"Z": 63.553833
},
"TerritoryId": 138,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,103 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012694,
"Position": {
"X": -758.32764,
"Y": 123.72873,
"Z": 210.74231
},
"TerritoryId": 400,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -455.00378,
"Y": 43.619022,
"Z": 403.64548
},
"TerritoryId": 400,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
4479,
4481
],
"AetheryteShortcut": "The Churning Mists - Zenith"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": 149.1435,
"Y": -23.289272,
"Z": 177.45946
},
"TerritoryId": 400,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
4491
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2006224,
"Position": {
"X": 340.01672,
"Y": -25.375793,
"Z": -130.54095
},
"TerritoryId": 400,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818107
},
{
"Position": {
"X": 396.12845,
"Y": -29.186422,
"Z": -142.568
},
"TerritoryId": 400,
"InteractionType": "Combat",
"EnemySpawnType": "AutoOnEnterArea",
"KillEnemyDataIds": [
4479
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012698,
"Position": {
"X": 569.17664,
"Y": -1.1916885,
"Z": -370.22968
},
"TerritoryId": 400,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,120 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012698,
"Position": {
"X": 569.17664,
"Y": -1.1916885,
"Z": -370.22968
},
"TerritoryId": 400,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012720,
"Position": {
"X": -106.9505,
"Y": 15.168516,
"Z": -40.60431
},
"TerritoryId": 418,
"InteractionType": "Interact",
"AetheryteShortcut": "Ishgard",
"AethernetShortcut": [
"[Ishgard] Aetheryte Plaza",
"[Ishgard] Skysteel Manufactory"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1011217,
"Position": {
"X": 17.990356,
"Y": 16.009666,
"Z": -9.567444
},
"TerritoryId": 419,
"InteractionType": "Interact",
"TargetTerritoryId": 433,
"AethernetShortcut": [
"[Ishgard] Skysteel Manufactory",
"[Ishgard] The Last Vigil"
]
},
{
"DataId": 1012583,
"Position": {
"X": -2.1210327,
"Y": 0.009368893,
"Z": -9.567444
},
"TerritoryId": 433,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2005334,
"Position": {
"X": -0.015319824,
"Y": 1.1443481,
"Z": 13.199036
},
"TerritoryId": 433,
"InteractionType": "Interact",
"TargetTerritoryId": 419
},
{
"DataId": 1012709,
"Position": {
"X": 151.01843,
"Y": -12.634913,
"Z": -28.671753
},
"TerritoryId": 419,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ishgard] The Last Vigil",
"[Ishgard] Athenaeum Astrologicum"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012714,
"Position": {
"X": -160.54016,
"Y": 16.979584,
"Z": -39.96344
},
"TerritoryId": 418,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Ishgard] Athenaeum Astrologicum",
"[Ishgard] Skysteel Manufactory"
]
}
]
}
]
}

View File

@ -0,0 +1,177 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012721,
"Position": {
"X": -162.49341,
"Y": 16.979584,
"Z": -37.521973
},
"TerritoryId": 418,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 418,
"InteractionType": "UseItem",
"ItemId": 30362,
"TargetTerritoryId": 140
},
{
"Position": {
"X": -492.96475,
"Y": 20.999884,
"Z": -380.82272
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
},
{
"DataId": 2001711,
"Position": {
"X": -480.9181,
"Y": 18.00103,
"Z": -386.862
},
"TerritoryId": 140,
"InteractionType": "Interact",
"TargetTerritoryId": 212
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1013154,
"Position": {
"X": -6.881897,
"Y": 0,
"Z": -3.1281738
},
"TerritoryId": 212,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2001716,
"Position": {
"X": -15.701599,
"Y": 1.083313,
"Z": -0.015319824
},
"TerritoryId": 212,
"InteractionType": "Interact",
"TargetTerritoryId": 140
},
{
"Position": {
"X": -492.1446,
"Y": 20.88255,
"Z": -376.3636
},
"TerritoryId": 140,
"InteractionType": "WalkTo",
"Mount": true
},
{
"DataId": 1004019,
"Position": {
"X": -335.9579,
"Y": 13.983504,
"Z": -99.65674
},
"TerritoryId": 140,
"InteractionType": "Interact",
"Fly": true,
"TargetTerritoryId": 140
},
{
"DataId": 1002030,
"Position": {
"X": -296.315,
"Y": 16.964134,
"Z": 334.15735
},
"TerritoryId": 140,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 64"
},
{
"DataId": 1002014,
"Position": {
"X": -253.43713,
"Y": 33.23899,
"Z": 404.04358
},
"TerritoryId": 140,
"InteractionType": "Interact",
"$": "1 0 0 0 0 64 -> 2 0 0 0 0 192"
},
{
"DataId": 1002047,
"Position": {
"X": -223.80408,
"Y": 32.90774,
"Z": 401.9989
},
"TerritoryId": 140,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"Position": {
"X": -218.33546,
"Y": 35.25,
"Z": 432.04767
},
"TerritoryId": 140,
"InteractionType": "WalkTo",
"Fly": true
},
{
"DataId": 1013392,
"Position": {
"X": -207.99579,
"Y": 35.249992,
"Z": 431.44873
},
"TerritoryId": 140,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012729,
"Position": {
"X": -229.20581,
"Y": 33.907307,
"Z": 428.4275
},
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,56 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012729,
"Position": {
"X": -229.20581,
"Y": 33.907307,
"Z": 428.4275
},
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1001821,
"Position": {
"X": -24.124573,
"Y": 38.000004,
"Z": 85.31323
},
"TerritoryId": 131,
"InteractionType": "Interact",
"AetheryteShortcut": "Ul'dah",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
"[Ul'dah] The Chamber of Rule"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012731,
"Position": {
"X": -23.91095,
"Y": 37.760002,
"Z": 78.812744
},
"TerritoryId": 131,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,53 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012731,
"Position": {
"X": -23.91095,
"Y": 37.760002,
"Z": 78.812744
},
"TerritoryId": 131,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"TerritoryId": 156,
"DataId": 2002881,
"Position": {
"X": 21.133728,
"Y": 22.323914,
"Z": -631.281
},
"InteractionType": "Interact",
"TargetTerritoryId": 351,
"AetheryteShortcut": "Mor Dhona"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012733,
"Position": {
"X": -1.8768921,
"Y": 0,
"Z": -9.079163
},
"TerritoryId": 351,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,123 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012733,
"Position": {
"X": -1.8768921,
"Y": 0,
"Z": -9.079163
},
"TerritoryId": 351,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012717,
"Position": {
"X": -158.80066,
"Y": 17.066208,
"Z": -56.168518
},
"TerritoryId": 418,
"InteractionType": "Interact",
"AetheryteShortcut": "Ishgard",
"AethernetShortcut": [
"[Ishgard] Aetheryte Plaza",
"[Ishgard] Skysteel Manufactory"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1011217,
"Position": {
"X": 17.990356,
"Y": 16.009666,
"Z": -9.567444
},
"TerritoryId": 419,
"InteractionType": "Interact",
"TargetTerritoryId": 433,
"AethernetShortcut": [
"[Ishgard] Skysteel Manufactory",
"[Ishgard] The Last Vigil"
]
},
{
"DataId": 1012744,
"Position": {
"X": -2.3041382,
"Y": -9.313226E-10,
"Z": 5.9052124
},
"TerritoryId": 433,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2005334,
"Position": {
"X": -0.015319824,
"Y": 1.1443481,
"Z": 13.199036
},
"TerritoryId": 433,
"InteractionType": "Interact",
"TargetTerritoryId": 419
},
{
"DataId": 1011223,
"Position": {
"X": 114.579956,
"Y": 24.412834,
"Z": -11.062805
},
"TerritoryId": 418,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_HEAVNA332_01633_Q1_000_000",
"Yes": true
}
],
"AethernetShortcut": [
"[Ishgard] The Last Vigil",
"[Ishgard] The Forgotten Knight"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012589,
"Position": {
"X": 107.46924,
"Y": 24.37563,
"Z": -8.407776
},
"TerritoryId": 418,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,65 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012589,
"Position": {
"X": 107.46924,
"Y": 24.37563,
"Z": -8.407776
},
"TerritoryId": 418,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1013168,
"Position": {
"X": -187.18243,
"Y": 15.9939995,
"Z": -47.68445
},
"TerritoryId": 418,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ishgard] The Forgotten Knight",
"[Ishgard] Skysteel Manufactory"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"TerritoryId": 418,
"InteractionType": "Duty",
"ContentFinderConditionId": 39
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012746,
"Position": {
"X": 550.4386,
"Y": -1.1916885,
"Z": -354.94012
},
"TerritoryId": 400,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,37 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012746,
"Position": {
"X": 550.4386,
"Y": -1.1916885,
"Z": -354.94012
},
"TerritoryId": 400,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013172,
"Position": {
"X": -756.0998,
"Y": 123.72873,
"Z": 214.80127
},
"TerritoryId": 400,
"InteractionType": "CompleteQuest",
"Fly": true
}
]
}
]
}

View File

@ -0,0 +1,36 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1014110,
"Position": {
"X": -753.7194,
"Y": 123.572525,
"Z": 212.57336
},
"TerritoryId": 400,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012750,
"Position": {
"X": -163.89722,
"Y": 27.979128,
"Z": -116.41113
},
"TerritoryId": 418,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,56 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012750,
"Position": {
"X": -163.89722,
"Y": 27.979128,
"Z": -116.41113
},
"TerritoryId": 418,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1011217,
"Position": {
"X": 17.990356,
"Y": 16.009666,
"Z": -9.567444
},
"TerritoryId": 419,
"InteractionType": "Interact",
"TargetTerritoryId": 433,
"AethernetShortcut": [
"[Ishgard] Skysteel Manufactory",
"[Ishgard] The Last Vigil"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012753,
"Position": {
"X": 2.5787354,
"Y": -9.313226E-10,
"Z": 7.6447144
},
"TerritoryId": 433,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,103 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012751,
"Position": {
"X": -2.02948,
"Y": -9.313226E-10,
"Z": 6.362976
},
"TerritoryId": 433,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2005334,
"Position": {
"X": -0.015319824,
"Y": 1.1443481,
"Z": 13.199036
},
"TerritoryId": 433,
"InteractionType": "Interact",
"TargetTerritoryId": 419
},
{
"DataId": 1013381,
"Position": {
"X": 92.36279,
"Y": 15.094684,
"Z": 33.188354
},
"TerritoryId": 418,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ishgard] The Last Vigil",
"[Ishgard] The Forgotten Knight"
]
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1013342,
"Position": {
"X": 36.331665,
"Y": -12.020876,
"Z": 76.58496
},
"TerritoryId": 418,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 32"
},
{
"DataId": 1013341,
"Position": {
"X": 65.72058,
"Y": -12.008911,
"Z": 78.3551
},
"TerritoryId": 418,
"InteractionType": "Interact",
"$": "1 0 0 0 0 32 -> 2 0 0 0 0 96"
},
{
"DataId": 1013340,
"Position": {
"X": 144.57922,
"Y": -20.020874,
"Z": 54.276245
},
"TerritoryId": 418,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013332,
"Position": {
"X": 94.95691,
"Y": -22.000006,
"Z": 50.94983
},
"TerritoryId": 418,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,96 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013260,
"Position": {
"X": 104.38696,
"Y": 15.000005,
"Z": 25.558838
},
"TerritoryId": 418,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2005551,
"Position": {
"X": 38.254395,
"Y": -6.820801,
"Z": 76.34082
},
"TerritoryId": 418,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2005550,
"Position": {
"X": 84.58069,
"Y": -6.9733887,
"Z": 81.55945
},
"TerritoryId": 418,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1012768,
"Position": {
"X": 21.10321,
"Y": -12.020914,
"Z": 48.41687
},
"TerritoryId": 418,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1012773,
"Position": {
"X": 92.5459,
"Y": 15.00001,
"Z": 37.247192
},
"TerritoryId": 418,
"InteractionType": "SinglePlayerDuty"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012780,
"Position": {
"X": 86.38135,
"Y": 23.979128,
"Z": 12.802246
},
"TerritoryId": 418,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,114 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012780,
"Position": {
"X": 86.38135,
"Y": 23.979128,
"Z": 12.802246
},
"TerritoryId": 418,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012778,
"Position": {
"X": 84.58069,
"Y": 23.979126,
"Z": 10.452393
},
"TerritoryId": 418,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1012212,
"Position": {
"X": -6.790344,
"Y": 42.34489,
"Z": -207.04968
},
"TerritoryId": 419,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Ishgard] The Forgotten Knight",
"[Ishgard] The Tribunal"
]
}
]
},
{
"Sequence": 3,
"Steps": [
{
"TerritoryId": 419,
"InteractionType": "Duty",
"ContentFinderConditionId": 34
}
]
},
{
"Sequence": 4
},
{
"Sequence": 5,
"Steps": [
{
"DataId": 1012212,
"Position": {
"X": -6.790344,
"Y": 42.34489,
"Z": -207.04968
},
"TerritoryId": 419,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 6,
"Steps": [
{
"DataId": 1013101,
"Position": {
"X": 17.990356,
"Y": 16.009666,
"Z": -9.567444
},
"TerritoryId": 419,
"InteractionType": "Interact",
"TargetTerritoryId": 433
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013227,
"Position": {
"X": 14.877502,
"Y": 16.009666,
"Z": -4.196289
},
"TerritoryId": 419,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,64 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013227,
"Position": {
"X": 14.877502,
"Y": 16.009666,
"Z": -4.196289
},
"TerritoryId": 419,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1011223,
"Position": {
"X": 114.579956,
"Y": 24.412834,
"Z": -11.062805
},
"TerritoryId": 418,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_HEAVNA405_01641_SCENE00020_EVENTAREA_WARP_YESNO_TITLE",
"Yes": true
}
],
"AethernetShortcut": [
"[Ishgard] The Last Vigil",
"[Ishgard] The Forgotten Knight"
]
},
{
"DataId": 1013183,
"Position": {
"X": -0.015319824,
"Y": 0.019999694,
"Z": -6.302063
},
"TerritoryId": 428,
"InteractionType": "CompleteQuest",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_HEAVNA405_01641_Q1_000_000",
"Answer": "TEXT_HEAVNA405_01641_A1_000_001"
}
]
}
]
}
]
}

View File

@ -0,0 +1,40 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013384,
"Position": {
"X": 112.291016,
"Y": 24.390423,
"Z": -4.4709473
},
"TerritoryId": 418,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013261,
"Position": {
"X": -158.49548,
"Y": 17.066208,
"Z": -56.26001
},
"TerritoryId": 418,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Ishgard] The Forgotten Knight",
"[Ishgard] Skysteel Manufactory"
]
}
]
}
]
}

View File

@ -0,0 +1,73 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013385,
"Position": {
"X": -158.37347,
"Y": 17,
"Z": -54.276367
},
"TerritoryId": 418,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1013077,
"Position": {
"X": 147.53943,
"Y": -12.634913,
"Z": -26.199768
},
"TerritoryId": 419,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1013125,
"Position": {
"X": 148.60754,
"Y": -12.634913,
"Z": -13.443237
},
"TerritoryId": 419,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_HEAVNA502_01643_Q1_000_000",
"Yes": true
}
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013085,
"Position": {
"X": -805.53906,
"Y": -57.828876,
"Z": 157.64087
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,80 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013085,
"Position": {
"X": -805.53906,
"Y": -57.828876,
"Z": 157.64087
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2006228,
"Position": {
"X": -747.097,
"Y": -57.09793,
"Z": 163.8361
},
"TerritoryId": 401,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818116
},
{
"Position": {
"X": -703.7623,
"Y": -61.975857,
"Z": 113.54166
},
"TerritoryId": 401,
"InteractionType": "Emote",
"Emote": "lookout",
"StopDistance": 0.25
}
]
},
{
"Sequence": 2,
"Steps": [
{
"Position": {
"X": -761.80145,
"Y": -39.054474,
"Z": 77.39858
},
"TerritoryId": 401,
"InteractionType": "Emote",
"Emote": "lookout",
"StopDistance": 0.25,
"Comment": "Solo Duty triggered by emoting?"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013089,
"Position": {
"X": -751.6747,
"Y": -35.95642,
"Z": 18.722778
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,82 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013089,
"Position": {
"X": -751.6747,
"Y": -35.95642,
"Z": 18.722778
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1013093,
"Position": {
"X": -749.1112,
"Y": -35.956425,
"Z": 22.049255
},
"TerritoryId": 401,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2006229,
"Position": {
"X": -759.4263,
"Y": -9.201294,
"Z": -110.85681
},
"TerritoryId": 401,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818117
},
{
"DataId": 1013090,
"Position": {
"X": -650.93463,
"Y": -58.6966,
"Z": -337.2397
},
"TerritoryId": 401,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"TerritoryId": 401,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "The Sea of Clouds - Ok' Zundu"
},
{
"DataId": 1013095,
"Position": {
"X": -560.69275,
"Y": -52.30738,
"Z": -427.57312
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,79 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013096,
"Position": {
"X": -541.34436,
"Y": -37.144257,
"Z": -384.48163
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1013123,
"Position": {
"X": -538.0178,
"Y": -37.04666,
"Z": -392.0501
},
"TerritoryId": 401,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2006234,
"Position": {
"X": -564.8127,
"Y": -36.68513,
"Z": -349.0807
},
"TerritoryId": 401,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818122
},
{
"DataId": 1012070,
"Position": {
"X": -554.0704,
"Y": -57.62821,
"Z": -547.4174
},
"TerritoryId": 401,
"InteractionType": "Emote",
"Emote": "lookout",
"Comment": "Replace with /bow"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1014570,
"Position": {
"X": -583.032,
"Y": -52.126114,
"Z": -447.4403
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,109 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1014570,
"Position": {
"X": -583.032,
"Y": -52.126114,
"Z": -447.4403
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012064,
"Position": {
"X": -542.7787,
"Y": -37.11544,
"Z": -386.7094
},
"TerritoryId": 401,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2006231,
"Position": {
"X": -180.34644,
"Y": -14.938599,
"Z": -543.1144
},
"TerritoryId": 401,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818119
},
{
"DataId": 1013386,
"Position": {
"X": -155.62683,
"Y": -14.153783,
"Z": -541.558
},
"TerritoryId": 401,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1013387,
"Position": {
"X": -154.34503,
"Y": -14.730623,
"Z": -537.56006
},
"TerritoryId": 401,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_HEAVNA506_01647_Q1_000_000",
"Yes": true
}
]
}
]
},
{
"Sequence": 4,
"Steps": [
{
"TerritoryId": 401,
"InteractionType": "Duty",
"ContentFinderConditionId": 88
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1014575,
"Position": {
"X": -156.66437,
"Y": -14.153766,
"Z": -543.0228
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,52 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1014575,
"Position": {
"X": -156.66437,
"Y": -14.153766,
"Z": -543.0228
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1013100,
"Position": {
"X": -582.63525,
"Y": -52.094604,
"Z": -447.13513
},
"TerritoryId": 401,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012195,
"Position": {
"X": -155.93195,
"Y": -14.153762,
"Z": -542.1378
},
"TerritoryId": 401,
"InteractionType": "CompleteQuest",
"Fly": true
}
]
}
]
}

View File

@ -0,0 +1,36 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013386,
"Position": {
"X": -155.62683,
"Y": -14.153783,
"Z": -541.558
},
"TerritoryId": 401,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013111,
"Position": {
"X": 162.89001,
"Y": -15.134373,
"Z": 37.094604
},
"TerritoryId": 419,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,72 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013112,
"Position": {
"X": 162.005,
"Y": -15.134371,
"Z": 38.52893
},
"TerritoryId": 419,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1011223,
"Position": {
"X": 114.579956,
"Y": 24.412834,
"Z": -11.062805
},
"TerritoryId": 418,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_HEAVNA601_01650_SCENE00008_EVENTAREA_WARP_YESNO_TITLE",
"Yes": true
}
],
"AethernetShortcut": [
"[Ishgard] Athenaeum Astrologicum",
"[Ishgard] The Forgotten Knight"
]
},
{
"DataId": 1013183,
"Position": {
"X": -0.015319824,
"Y": 0.019999694,
"Z": -6.302063
},
"TerritoryId": 428,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013162,
"Position": {
"X": 92.36279,
"Y": 15.094684,
"Z": 33.188354
},
"TerritoryId": 418,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,74 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1013162,
"Position": {
"X": 92.36279,
"Y": 15.094684,
"Z": 33.188354
},
"TerritoryId": 418,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012389,
"Position": {
"X": -133.31812,
"Y": 4.1,
"Z": -111.77234
},
"TerritoryId": 130,
"InteractionType": "Interact",
"AetheryteShortcut": "Ul'dah"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1012391,
"Position": {
"X": -202.62463,
"Y": -31.015825,
"Z": 105.088745
},
"TerritoryId": 141,
"InteractionType": "Interact",
"Fly": true,
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012394,
"Position": {
"X": -158.1903,
"Y": 4,
"Z": -21.194885
},
"TerritoryId": 133,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Gridania",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Conjurers' Guild"
]
}
]
}
]
}

View File

@ -0,0 +1,102 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012394,
"Position": {
"X": -158.1903,
"Y": 4,
"Z": -21.194885
},
"TerritoryId": 133,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1000460,
"Position": {
"X": -159.41101,
"Y": 4.054107,
"Z": -4.1047363
},
"TerritoryId": 133,
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_HEAVNA603_01652_SCENE00007_EVENTAREA_WARP_YESNO_TITLE",
"Yes": true
}
]
},
{
"DataId": 1003027,
"Position": {
"X": 4.8981323,
"Y": -1.92944,
"Z": -0.19836426
},
"TerritoryId": 205,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1012396,
"Position": {
"X": -153.1853,
"Y": 4,
"Z": -14.938599
},
"TerritoryId": 133,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1006756,
"Position": {
"X": -16.891846,
"Y": 10.17425,
"Z": -246.87573
},
"TerritoryId": 133,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Gridania] Conjurers' Guild",
"[Gridania] Lancers' Guild"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012398,
"Position": {
"X": 35.538208,
"Y": -8,
"Z": 98.13074
},
"TerritoryId": 132,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,74 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012398,
"Position": {
"X": 35.538208,
"Y": -8,
"Z": 98.13074
},
"TerritoryId": 132,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1000691,
"Position": {
"X": 71.97681,
"Y": 8,
"Z": -166.52173
},
"TerritoryId": 133,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 16 17 0 0 0 128",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Leatherworkers' Guild & Shaded Bower"
]
},
{
"DataId": 1000692,
"Position": {
"X": -258.8083,
"Y": -5.7735243,
"Z": -27.267883
},
"TerritoryId": 133,
"InteractionType": "Interact",
"AethernetShortcut": [
"[Gridania] Leatherworkers' Guild & Shaded Bower",
"[Gridania] Conjurers' Guild"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012398,
"Position": {
"X": 35.538208,
"Y": -8,
"Z": 98.13074
},
"TerritoryId": 132,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Gridania] Conjurers' Guild",
"[Gridania] Airship Landing"
]
}
]
}
]
}

View File

@ -0,0 +1,53 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012400,
"Position": {
"X": 35.843384,
"Y": -8,
"Z": 99.35144
},
"TerritoryId": 132,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012401,
"Position": {
"X": -8.560364,
"Y": 5.4681287,
"Z": 40.6958
},
"TerritoryId": 418,
"InteractionType": "Interact",
"AetheryteShortcut": "Ishgard"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012406,
"Position": {
"X": 587.45703,
"Y": -50.811344,
"Z": 69.16907
},
"TerritoryId": 398,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "The Dravanian Forelands - Tailfeather"
}
]
}
]
}

View File

@ -0,0 +1,104 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012406,
"Position": {
"X": 587.45703,
"Y": -50.811344,
"Z": 69.16907
},
"TerritoryId": 398,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": -793.8348,
"Y": -122.09079,
"Z": 577.7538
},
"TerritoryId": 398,
"InteractionType": "WalkTo",
"Fly": true,
"AetheryteShortcut": "The Dravanian Forelands - Anyx Trine"
},
{
"Position": {
"X": -802.08453,
"Y": -122.82994,
"Z": 577.8909
},
"TerritoryId": 398,
"InteractionType": "WalkTo",
"TargetTerritoryId": 399
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2006205,
"Position": {
"X": 729.21326,
"Y": 134.93542,
"Z": 150.89636
},
"TerritoryId": 399,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818083
},
{
"DataId": 2006208,
"Position": {
"X": 98.89368,
"Y": 73.07532,
"Z": -174.36487
},
"TerritoryId": 399,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818086
},
{
"Position": {
"X": -229.85187,
"Y": 107.00484,
"Z": -632.70197
},
"TerritoryId": 399,
"InteractionType": "WalkTo",
"TargetTerritoryId": 478
}
]
},
{
"Sequence": 255,
"Steps": [
{
"TerritoryId": 478,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Idyllshire"
},
{
"DataId": 1012097,
"Position": {
"X": 73.3501,
"Y": 205.88956,
"Z": 23.483582
},
"TerritoryId": 478,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,83 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012097,
"Position": {
"X": 73.3501,
"Y": 205.88956,
"Z": 23.483582
},
"TerritoryId": 478,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012410,
"Position": {
"X": 71.732666,
"Y": 205.62819,
"Z": 26.901611
},
"TerritoryId": 478,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1014413,
"Position": {
"X": -42.008118,
"Y": 205.79572,
"Z": 3.4332886
},
"TerritoryId": 478,
"InteractionType": "Say",
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 64",
"ChatMessage": {
"Key": "TEXT_HEAVNA607_01656_SAYTODO_000"
}
},
{
"DataId": 1012413,
"Position": {
"X": -69.230286,
"Y": 205.88773,
"Z": -68.61987
},
"TerritoryId": 478,
"InteractionType": "Say",
"ChatMessage": {
"Key": "TEXT_HEAVNA607_01656_SAYTODO_000"
}
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012097,
"Position": {
"X": 73.3501,
"Y": 205.88956,
"Z": 23.483582
},
"TerritoryId": 478,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,77 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012097,
"Position": {
"X": 73.3501,
"Y": 205.88956,
"Z": 23.483582
},
"TerritoryId": 478,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 148.52824,
"Y": 207,
"Z": 117.84323
},
"TerritoryId": 478,
"InteractionType": "WalkTo",
"TargetTerritoryId": 399
},
{
"DataId": 1012416,
"Position": {
"X": 365.83496,
"Y": 80.11144,
"Z": 6.3324585
},
"TerritoryId": 399,
"InteractionType": "SinglePlayerDuty"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1012418,
"Position": {
"X": 352.65125,
"Y": 77.859474,
"Z": -5.9052734
},
"TerritoryId": 399,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012097,
"Position": {
"X": 73.3501,
"Y": 205.88956,
"Z": 23.483582
},
"TerritoryId": 478,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Idyllshire"
}
]
}
]
}

View File

@ -0,0 +1,51 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012097,
"Position": {
"X": 73.3501,
"Y": 205.88956,
"Z": 23.483582
},
"TerritoryId": 478,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012419,
"Position": {
"X": 78.96533,
"Y": 203.98001,
"Z": 133.1654
},
"TerritoryId": 478,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012421,
"Position": {
"X": 77.98877,
"Y": 203.98,
"Z": 127.91626
},
"TerritoryId": 478,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,102 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012421,
"Position": {
"X": 77.98877,
"Y": 203.98,
"Z": 127.91626
},
"TerritoryId": 478,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"Position": {
"X": 71.86769,
"Y": 204.99998,
"Z": 145.98666
},
"TerritoryId": 478,
"InteractionType": "WalkTo",
"TargetTerritoryId": 399
},
{
"DataId": 2006210,
"Position": {
"X": -487.48004,
"Y": 144.64026,
"Z": -285.359
},
"TerritoryId": 399,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818088
},
{
"DataId": 2006214,
"Position": {
"X": -452.38422,
"Y": 138.10938,
"Z": 678.18713
},
"TerritoryId": 399,
"InteractionType": "AttuneAetherCurrent",
"AetherCurrentId": 2818092
},
{
"DataId": 1012423,
"Position": {
"X": -476.58502,
"Y": 137.42972,
"Z": 702.6931
},
"TerritoryId": 399,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 2005532,
"Position": {
"X": -488.76178,
"Y": 138.99438,
"Z": 742.12244
},
"TerritoryId": 399,
"InteractionType": "Combat",
"EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [
4375
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012423,
"Position": {
"X": -476.58502,
"Y": 137.42972,
"Z": 702.6931
},
"TerritoryId": 399,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,113 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012138,
"Position": {
"X": 19.272095,
"Y": 38.43,
"Z": 15.854065
},
"TerritoryId": 463,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012138,
"Position": {
"X": 19.272095,
"Y": 38.43,
"Z": 15.854065
},
"TerritoryId": 463,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1012426,
"Position": {
"X": 23.971863,
"Y": 38.43,
"Z": 3.5552979
},
"TerritoryId": 463,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2005337,
"Position": {
"X": 7.765594,
"Y": 38.9395,
"Z": -50.9989
},
"TerritoryId": 463,
"InteractionType": "Interact",
"TargetTerritoryId": 399
},
{
"DataId": 1012427,
"Position": {
"X": 300.46533,
"Y": 232.541,
"Z": 767.87964
},
"TerritoryId": 399,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 4,
"Steps": [
{
"TerritoryId": 399,
"InteractionType": "Duty",
"ContentFinderConditionId": 31
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 2005336,
"Position": {
"X": -488.79227,
"Y": 138.93335,
"Z": 741.0543
},
"TerritoryId": 399,
"InteractionType": "Interact",
"TargetTerritoryId": 463
},
{
"DataId": 1012138,
"Position": {
"X": 19.272095,
"Y": 38.43,
"Z": 15.854065
},
"TerritoryId": 463,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,76 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012138,
"Position": {
"X": 19.272095,
"Y": 38.43,
"Z": 15.854065
},
"TerritoryId": 463,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012422,
"Position": {
"X": -475.79156,
"Y": 137.42972,
"Z": 701.4724
},
"TerritoryId": 399,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1012380,
"Position": {
"X": 124.46777,
"Y": 24.458836,
"Z": 0.47296143
},
"TerritoryId": 418,
"InteractionType": "Interact",
"StopDistance": 5,
"AetheryteShortcut": "Ishgard",
"AethernetShortcut": [
"[Ishgard] Aetheryte Plaza",
"[Ishgard] The Forgotten Knight"
]
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1013163,
"Position": {
"X": 167.0404,
"Y": -14.313367,
"Z": 51.285522
},
"TerritoryId": 419,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Ishgard] The Forgotten Knight",
"[Ishgard] Athenaeum Astrologicum"
]
}
]
}
]
}

View File

@ -0,0 +1,137 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012430,
"Position": {
"X": 165.94177,
"Y": -14.34896,
"Z": 51.651733
},
"TerritoryId": 419,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1013166,
"Position": {
"X": 168.29175,
"Y": -14.52896,
"Z": 41.153564
},
"TerritoryId": 419,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1013167,
"Position": {
"X": 125.68848,
"Y": 24.458836,
"Z": 2.456604
},
"TerritoryId": 418,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 16 1 0 0 0 128",
"AethernetShortcut": [
"[Ishgard] Athenaeum Astrologicum",
"[Ishgard] The Forgotten Knight"
]
},
{
"DataId": 1013161,
"Position": {
"X": 92.36279,
"Y": 15.094684,
"Z": 33.188354
},
"TerritoryId": 418,
"InteractionType": "Interact",
"$": "16 1 0 0 0 128 -> 33 1 0 0 0 192"
},
{
"DataId": 1012251,
"Position": {
"X": 12.313965,
"Y": -12.020877,
"Z": 40.268433
},
"TerritoryId": 418,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 1011217,
"Position": {
"X": 17.990356,
"Y": 16.009666,
"Z": -9.567444
},
"TerritoryId": 419,
"InteractionType": "Interact",
"TargetTerritoryId": 433,
"AethernetShortcut": [
"[Ishgard] The Brume",
"[Ishgard] The Last Vigil"
]
},
{
"DataId": 1012397,
"Position": {
"X": 4.0131226,
"Y": -9.313226E-10,
"Z": 5.661072
},
"TerritoryId": 433,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 2005334,
"Position": {
"X": -0.001443714,
"Y": 1.1515,
"Z": 13.2236
},
"TerritoryId": 433,
"InteractionType": "Interact",
"TargetTerritoryId": 419
},
{
"DataId": 1012430,
"Position": {
"X": 165.94177,
"Y": -14.34896,
"Z": 51.651733
},
"TerritoryId": 419,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [
"[Ishgard] The Last Vigil",
"[Ishgard] Athenaeum Astrologicum"
]
}
]
}
]
}

View File

@ -0,0 +1,89 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012430,
"Position": {
"X": 165.94177,
"Y": -14.34896,
"Z": 51.651733
},
"TerritoryId": 419,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1012431,
"Position": {
"X": 180.16321,
"Y": -16.028961,
"Z": 34.6532
},
"TerritoryId": 419,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1012430,
"Position": {
"X": 165.94177,
"Y": -14.34896,
"Z": 51.651733
},
"TerritoryId": 419,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3
},
{
"Sequence": 4,
"Steps": [
{
"DataId": 1012854,
"Position": {
"X": -861.84485,
"Y": -184.293,
"Z": -659.2356
},
"TerritoryId": 402,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"TerritoryId": 402,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Azys Lla - Helix"
},
{
"DataId": 1012792,
"Position": {
"X": -650.1717,
"Y": -176.45021,
"Z": -565.14844
},
"TerritoryId": 402,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,103 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012792,
"Position": {
"X": -650.1717,
"Y": -176.45021,
"Z": -565.14844
},
"TerritoryId": 402,
"InteractionType": "AcceptQuest"
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 2006237,
"Position": {
"X": -637.6898,
"Y": -176.47064,
"Z": -558.3734
},
"TerritoryId": 402,
"InteractionType": "Interact",
"$": "0 0 0 0 0 0 -> 17 0 0 0 0 64"
},
{
"DataId": 2006236,
"Position": {
"X": -649.7139,
"Y": -176.47064,
"Z": -538.6893
},
"TerritoryId": 402,
"InteractionType": "Interact",
"$": "17 0 0 0 0 64 -> 33 1 0 0 0 192"
},
{
"DataId": 2006238,
"Position": {
"X": -645.16675,
"Y": -174.57855,
"Z": -477.92786
},
"TerritoryId": 402,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1014675,
"Position": {
"X": -638.3612,
"Y": -176.4502,
"Z": -578.6679
},
"TerritoryId": 402,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2005565,
"Position": {
"X": -428.0614,
"Y": -166.21655,
"Z": -411.88678
},
"TerritoryId": 402,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1014675,
"Position": {
"X": -638.3612,
"Y": -176.4502,
"Z": -578.6679
},
"TerritoryId": 402,
"InteractionType": "CompleteQuest"
}
]
}
]
}

View File

@ -0,0 +1,88 @@
{
"$schema": "https://carvel.li/questionable/quest-1.0",
"Author": "JerryWester",
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{
"DataId": 1012796,
"Position": {
"X": -639.8871,
"Y": -176.4502,
"Z": -579.3393
},
"TerritoryId": 402,
"InteractionType": "AcceptQuest",
"DialogueChoices": [
{
"Type": "List",
"Prompt": "TEXT_HEAVNA703_01665_Q1_000_000",
"Answer": "TEXT_HEAVNA703_01665_A1_000_003"
}
]
}
]
},
{
"Sequence": 1,
"Steps": [
{
"DataId": 1014677,
"Position": {
"X": -642.9083,
"Y": -176.4502,
"Z": -577.5082
},
"TerritoryId": 402,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1012797,
"Position": {
"X": -166.36914,
"Y": -162.10732,
"Z": -490.898
},
"TerritoryId": 402,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 3,
"Steps": [
{
"DataId": 2006363,
"Position": {
"X": -145.7164,
"Y": -154.816,
"Z": -503.1721
},
"TerritoryId": 402,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1012802,
"Position": {
"X": 235.98071,
"Y": -72.83498,
"Z": -619.8978
},
"TerritoryId": 402,
"InteractionType": "CompleteQuest"
}
]
}
]
}

Some files were not shown because too many files have changed in this diff Show More