forked from liza/Questionable
Compare commits
30 Commits
42ec4ed355
...
9d79780138
Author | SHA1 | Date | |
---|---|---|---|
9d79780138 | |||
4009aa307d | |||
a0f7e6f081 | |||
0a702ce361 | |||
1ea5ae9e40 | |||
0294c433de | |||
f1a9654700 | |||
9696b5470a | |||
4985c9d550 | |||
325b529337 | |||
517fec212f | |||
39f698242d | |||
527fa3440e | |||
26e881abc3 | |||
cd72beca89 | |||
a9b25e3722 | |||
07b4765478 | |||
e6a9c21c0f | |||
7ee7df90b8 | |||
3acae0bd98 | |||
b7e901761b | |||
0bc2d6b2b2 | |||
e105bacea7 | |||
8c621cc1c4 | |||
5628992524 | |||
7140577935 | |||
fc1852139f | |||
cc0c972bae | |||
36ed78bcea | |||
4416dfeccf |
26
QuestPathGenerator.Tests/QuestGeneratorTest.cs
Normal file
26
QuestPathGenerator.Tests/QuestGeneratorTest.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using Questionable.Model.V1;
|
||||
using Questionable.QuestPathGenerator;
|
||||
using Xunit;
|
||||
|
||||
namespace QuestPathGenerator.Tests;
|
||||
|
||||
public sealed class QuestGeneratorTest
|
||||
{
|
||||
[Fact]
|
||||
public void SyntaxNodeListWithNullValues()
|
||||
{
|
||||
var complexCombatData = new ComplexCombatData
|
||||
{
|
||||
DataId = 47,
|
||||
IgnoreQuestMarker = true,
|
||||
MinimumKillCount = 1,
|
||||
};
|
||||
|
||||
var list =
|
||||
RoslynShortcuts.SyntaxNodeList(
|
||||
RoslynShortcuts.AssignmentList(nameof(ComplexCombatData.CompletionQuestVariablesFlags),
|
||||
complexCombatData.CompletionQuestVariablesFlags)).ToList();
|
||||
|
||||
Assert.Empty(list);
|
||||
}
|
||||
}
|
22
QuestPathGenerator.Tests/QuestPathGenerator.Tests.csproj
Normal file
22
QuestPathGenerator.Tests/QuestPathGenerator.Tests.csproj
Normal file
@ -0,0 +1,22 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<LangVersion>12</LangVersion>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
<IsTestProject>true</IsTestProject>
|
||||
</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"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\QuestPathGenerator\QuestPathGenerator.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
@ -80,7 +80,11 @@ public class QuestSourceGenerator : ISourceGenerator
|
||||
|
||||
var quest = questNode.Deserialize<QuestRoot>()!;
|
||||
if (quest.Disabled)
|
||||
continue;
|
||||
{
|
||||
quest.Author = [];
|
||||
quest.QuestSequence = [];
|
||||
quest.TerritoryBlacklist = [];
|
||||
}
|
||||
|
||||
quests.Add((id, quest));
|
||||
}
|
||||
@ -204,38 +208,45 @@ public class QuestSourceGenerator : ISourceGenerator
|
||||
|
||||
private static IEnumerable<SyntaxNodeOrToken> CreateQuestInitializer(ushort questId, QuestRoot quest)
|
||||
{
|
||||
return new SyntaxNodeOrToken[]
|
||||
try
|
||||
{
|
||||
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 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)
|
||||
};
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
throw new Exception($"QuestGen[{questId}]: {e.Message}", e);
|
||||
}
|
||||
}
|
||||
|
||||
private static ExpressionSyntax CreateQuestSequence(List<QuestSequence> sequences)
|
||||
@ -317,13 +328,15 @@ public class QuestSourceGenerator : ISourceGenerator
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.Sprint), step.Sprint, emptyStep.Sprint)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.IgnoreDistanceToObject), step.IgnoreDistanceToObject, emptyStep.IgnoreDistanceToObject)
|
||||
Assignment(nameof(QuestStep.IgnoreDistanceToObject),
|
||||
step.IgnoreDistanceToObject, emptyStep.IgnoreDistanceToObject)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.Comment), step.Comment, emptyStep.Comment)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.Aetheryte), step.Aetheryte, emptyStep.Aetheryte)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.AethernetShard), step.AethernetShard, emptyStep.AethernetShard)
|
||||
Assignment(nameof(QuestStep.AethernetShard), step.AethernetShard,
|
||||
emptyStep.AethernetShard)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.AetheryteShortcut), step.AetheryteShortcut,
|
||||
emptyStep.AetheryteShortcut)
|
||||
@ -353,6 +366,10 @@ public class QuestSourceGenerator : ISourceGenerator
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(QuestStep.ComplexCombatData), step.ComplexCombatData)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.CombatDelaySecondsAtStart),
|
||||
step.CombatDelaySecondsAtStart,
|
||||
emptyStep.CombatDelaySecondsAtStart)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.JumpDestination), step.JumpDestination,
|
||||
emptyStep.JumpDestination)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
@ -361,6 +378,9 @@ public class QuestSourceGenerator : ISourceGenerator
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(QuestStep.SkipIf), step.SkipIf)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(QuestStep.RequiredQuestVariables),
|
||||
step.RequiredQuestVariables)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(QuestStep.CompletionQuestVariablesFlags),
|
||||
step.CompletionQuestVariablesFlags)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
@ -368,11 +388,14 @@ public class QuestSourceGenerator : ISourceGenerator
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(QuestStep.PointMenuChoices), step.PointMenuChoices)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.PickUpQuestId), step.PickUpQuestId, emptyStep.PickUpQuestId)
|
||||
Assignment(nameof(QuestStep.PickUpQuestId), step.PickUpQuestId,
|
||||
emptyStep.PickUpQuestId)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.TurnInQuestId), step.TurnInQuestId, emptyStep.TurnInQuestId)
|
||||
Assignment(nameof(QuestStep.TurnInQuestId), step.TurnInQuestId,
|
||||
emptyStep.TurnInQuestId)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.NextQuestId), step.NextQuestId, emptyStep.NextQuestId)
|
||||
Assignment(nameof(QuestStep.NextQuestId), step.NextQuestId,
|
||||
emptyStep.NextQuestId)
|
||||
.AsSyntaxNodeOrToken()))))),
|
||||
Token(SyntaxKind.CommaToken),
|
||||
}.ToArray())));
|
||||
|
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Numerics;
|
||||
using Microsoft.CodeAnalysis;
|
||||
@ -14,7 +15,7 @@ public static class RoslynShortcuts
|
||||
{
|
||||
public static IEnumerable<SyntaxNodeOrToken> SyntaxNodeList(params SyntaxNodeOrToken?[] nodes)
|
||||
{
|
||||
nodes = nodes.Where(x => x != null).ToArray();
|
||||
nodes = nodes.Where(x => x != null && x.Value.RawKind != 0).ToArray();
|
||||
if (nodes.Length == 0)
|
||||
return [];
|
||||
|
||||
@ -31,190 +32,251 @@ public static class RoslynShortcuts
|
||||
|
||||
public static ExpressionSyntax LiteralValue<T>(T? value)
|
||||
{
|
||||
if (value is string s)
|
||||
return LiteralExpression(SyntaxKind.StringLiteralExpression, Literal(s));
|
||||
else if (value is bool b)
|
||||
return LiteralExpression(b ? SyntaxKind.TrueLiteralExpression : SyntaxKind.FalseLiteralExpression);
|
||||
else if (value is short i16)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(i16));
|
||||
else if (value is int i32)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(i32));
|
||||
else if (value is ushort u16)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(u16));
|
||||
else if (value is uint u32)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(u32));
|
||||
else if (value is float f)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(f));
|
||||
else if (value != null && value.GetType().IsEnum)
|
||||
return MemberAccessExpression(
|
||||
SyntaxKind.SimpleMemberAccessExpression,
|
||||
IdentifierName(value.GetType().Name),
|
||||
IdentifierName(value.GetType().GetEnumName(value)!));
|
||||
else if (value is Vector3 vector)
|
||||
try
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(Vector3)))
|
||||
.WithArgumentList(
|
||||
ArgumentList(
|
||||
SeparatedList<ArgumentSyntax>(
|
||||
new SyntaxNodeOrToken[]
|
||||
{
|
||||
Argument(LiteralValue(vector.X)),
|
||||
Token(SyntaxKind.CommaToken),
|
||||
Argument(LiteralValue(vector.Y)),
|
||||
Token(SyntaxKind.CommaToken),
|
||||
Argument(LiteralValue(vector.Z))
|
||||
})));
|
||||
}
|
||||
else if (value is AethernetShortcut aethernetShortcut)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(AethernetShortcut)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment<EAetheryteLocation?>(nameof(AethernetShortcut.From), aethernetShortcut.From,
|
||||
null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment<EAetheryteLocation?>(nameof(AethernetShortcut.To), aethernetShortcut.To,
|
||||
null)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is ChatMessage chatMessage)
|
||||
{
|
||||
ChatMessage emptyMessage = new();
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(ChatMessage)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment(nameof(ChatMessage.ExcelSheet), chatMessage.ExcelSheet,
|
||||
emptyMessage.ExcelSheet)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(ChatMessage.Key), chatMessage.Key,
|
||||
emptyMessage.Key)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is DialogueChoice dialogueChoice)
|
||||
{
|
||||
DialogueChoice emptyChoice = new();
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(DialogueChoice)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment<EDialogChoiceType?>(nameof(DialogueChoice.Type), dialogueChoice.Type, null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.ExcelSheet), dialogueChoice.ExcelSheet,
|
||||
emptyChoice.ExcelSheet)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.Prompt), dialogueChoice.Prompt, emptyChoice.Prompt)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.Yes), dialogueChoice.Yes, emptyChoice.Yes)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.Answer), dialogueChoice.Answer, emptyChoice.Answer)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.DataId), dialogueChoice.DataId, emptyChoice.DataId)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is JumpDestination jumpDestination)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(JumpDestination)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment<Vector3?>(nameof(JumpDestination.Position), jumpDestination.Position, null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(JumpDestination.StopDistance), jumpDestination.StopDistance, null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(JumpDestination.DelaySeconds), jumpDestination.DelaySeconds, null)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is ExcelRef excelRef)
|
||||
{
|
||||
if (excelRef.Type == ExcelRef.EType.Key)
|
||||
if (value is string s)
|
||||
return LiteralExpression(SyntaxKind.StringLiteralExpression, Literal(s));
|
||||
else if (value is bool b)
|
||||
return LiteralExpression(b ? SyntaxKind.TrueLiteralExpression : SyntaxKind.FalseLiteralExpression);
|
||||
else if (value is short i16)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(i16));
|
||||
else if (value is int i32)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(i32));
|
||||
else if (value is byte u8)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(u8));
|
||||
else if (value is ushort u16)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(u16));
|
||||
else if (value is uint u32)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(u32));
|
||||
else if (value is float f)
|
||||
return LiteralExpression(SyntaxKind.NumericLiteralExpression, Literal(f));
|
||||
else if (value != null && value.GetType().IsEnum)
|
||||
return MemberAccessExpression(
|
||||
SyntaxKind.SimpleMemberAccessExpression,
|
||||
IdentifierName(value.GetType().Name),
|
||||
IdentifierName(value.GetType().GetEnumName(value)!));
|
||||
else if (value is Vector3 vector)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(ExcelRef)))
|
||||
IdentifierName(nameof(Vector3)))
|
||||
.WithArgumentList(
|
||||
ArgumentList(
|
||||
SingletonSeparatedList(
|
||||
Argument(LiteralValue(excelRef.AsKey())))));
|
||||
SeparatedList<ArgumentSyntax>(
|
||||
new SyntaxNodeOrToken[]
|
||||
{
|
||||
Argument(LiteralValue(vector.X)),
|
||||
Token(SyntaxKind.CommaToken),
|
||||
Argument(LiteralValue(vector.Y)),
|
||||
Token(SyntaxKind.CommaToken),
|
||||
Argument(LiteralValue(vector.Z))
|
||||
})));
|
||||
}
|
||||
else if (excelRef.Type == ExcelRef.EType.RowId)
|
||||
else if (value is AethernetShortcut aethernetShortcut)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(ExcelRef)))
|
||||
IdentifierName(nameof(AethernetShortcut)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment<EAetheryteLocation?>(nameof(AethernetShortcut.From),
|
||||
aethernetShortcut.From,
|
||||
null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment<EAetheryteLocation?>(nameof(AethernetShortcut.To), aethernetShortcut.To,
|
||||
null)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is ChatMessage chatMessage)
|
||||
{
|
||||
ChatMessage emptyMessage = new();
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(ChatMessage)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment(nameof(ChatMessage.ExcelSheet), chatMessage.ExcelSheet,
|
||||
emptyMessage.ExcelSheet)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(ChatMessage.Key), chatMessage.Key,
|
||||
emptyMessage.Key)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is DialogueChoice dialogueChoice)
|
||||
{
|
||||
DialogueChoice emptyChoice = new();
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(DialogueChoice)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment<EDialogChoiceType?>(nameof(DialogueChoice.Type), dialogueChoice.Type,
|
||||
null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.ExcelSheet), dialogueChoice.ExcelSheet,
|
||||
emptyChoice.ExcelSheet)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.Prompt), dialogueChoice.Prompt, emptyChoice.Prompt)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.Yes), dialogueChoice.Yes, emptyChoice.Yes)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.Answer), dialogueChoice.Answer, emptyChoice.Answer)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DialogueChoice.DataId), dialogueChoice.DataId, emptyChoice.DataId)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is JumpDestination jumpDestination)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(JumpDestination)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment<Vector3?>(nameof(JumpDestination.Position), jumpDestination.Position,
|
||||
null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(JumpDestination.StopDistance), jumpDestination.StopDistance, null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(JumpDestination.DelaySeconds), jumpDestination.DelaySeconds, null)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is ExcelRef excelRef)
|
||||
{
|
||||
if (excelRef.Type == ExcelRef.EType.Key)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(ExcelRef)))
|
||||
.WithArgumentList(
|
||||
ArgumentList(
|
||||
SingletonSeparatedList(
|
||||
Argument(LiteralValue(excelRef.AsKey())))));
|
||||
}
|
||||
else if (excelRef.Type == ExcelRef.EType.RowId)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(ExcelRef)))
|
||||
.WithArgumentList(
|
||||
ArgumentList(
|
||||
SingletonSeparatedList(
|
||||
Argument(LiteralValue(excelRef.AsRowId())))));
|
||||
}
|
||||
else
|
||||
throw new Exception($"Unsupported ExcelRef type {excelRef.Type}");
|
||||
}
|
||||
else if (value is ComplexCombatData complexCombatData)
|
||||
{
|
||||
var emptyData = new ComplexCombatData();
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(ComplexCombatData)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment(nameof(ComplexCombatData.DataId), complexCombatData.DataId,
|
||||
emptyData.DataId)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(ComplexCombatData.MinimumKillCount),
|
||||
complexCombatData.MinimumKillCount, emptyData.MinimumKillCount)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(ComplexCombatData.RewardItemId), complexCombatData.RewardItemId,
|
||||
emptyData.RewardItemId)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(ComplexCombatData.RewardItemCount),
|
||||
complexCombatData.RewardItemCount,
|
||||
emptyData.RewardItemCount)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(ComplexCombatData.CompletionQuestVariablesFlags),
|
||||
complexCombatData.CompletionQuestVariablesFlags),
|
||||
Assignment(nameof(ComplexCombatData.IgnoreQuestMarker),
|
||||
complexCombatData.IgnoreQuestMarker,
|
||||
emptyData.IgnoreQuestMarker)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
else if (value is QuestWorkValue qwv)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(QuestWorkValue)))
|
||||
.WithArgumentList(
|
||||
ArgumentList(
|
||||
SingletonSeparatedList(
|
||||
Argument(LiteralValue(excelRef.AsRowId())))));
|
||||
SeparatedList<ArgumentSyntax>(
|
||||
new SyntaxNodeOrToken[]
|
||||
{
|
||||
Argument(LiteralValue(qwv.High)),
|
||||
Token(SyntaxKind.CommaToken),
|
||||
Argument(LiteralValue(qwv.Low))
|
||||
})));
|
||||
}
|
||||
else
|
||||
throw new Exception($"Unsupported ExcelRef type {excelRef.Type}");
|
||||
else if (value is List<QuestWorkValue> list)
|
||||
{
|
||||
return CollectionExpression(
|
||||
SeparatedList<CollectionElementSyntax>(
|
||||
SyntaxNodeList(list.Select(x => ExpressionElement(
|
||||
LiteralValue(x)).AsSyntaxNodeOrToken()).ToArray())));
|
||||
}
|
||||
else if (value is null)
|
||||
return LiteralExpression(SyntaxKind.NullLiteralExpression);
|
||||
}
|
||||
else if (value is ComplexCombatData complexCombatData)
|
||||
catch (Exception e)
|
||||
{
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(ComplexCombatData)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment(nameof(ComplexCombatData.DataId), complexCombatData.DataId, default(uint))
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(ComplexCombatData.MinimumKillCount), complexCombatData.MinimumKillCount, null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(ComplexCombatData.RewardItemId), complexCombatData.RewardItemId, null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(ComplexCombatData.RewardItemCount), complexCombatData.RewardItemCount, null)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(ComplexCombatData.CompletionQuestVariablesFlags), complexCombatData.CompletionQuestVariablesFlags)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}else if (value is null)
|
||||
return LiteralExpression(SyntaxKind.NullLiteralExpression);
|
||||
else
|
||||
throw new Exception($"Unsupported data type {value.GetType()} = {value}");
|
||||
throw new Exception($"Unable to handle literal [{value}]: {e.StackTrace}", e);
|
||||
}
|
||||
|
||||
throw new Exception($"Unsupported data type {value.GetType()} = {value}");
|
||||
}
|
||||
|
||||
public static AssignmentExpressionSyntax? Assignment<T>(string name, T? value, T? defaultValue)
|
||||
{
|
||||
if (value == null && defaultValue == null)
|
||||
return null;
|
||||
try
|
||||
{
|
||||
if (value == null && defaultValue == null)
|
||||
return null;
|
||||
|
||||
if (value != null && defaultValue != null && value.Equals(defaultValue))
|
||||
return null;
|
||||
if (value != null && defaultValue != null && value.Equals(defaultValue))
|
||||
return null;
|
||||
|
||||
return AssignmentExpression(
|
||||
SyntaxKind.SimpleAssignmentExpression,
|
||||
IdentifierName(name),
|
||||
LiteralValue(value));
|
||||
return AssignmentExpression(
|
||||
SyntaxKind.SimpleAssignmentExpression,
|
||||
IdentifierName(name),
|
||||
LiteralValue(value));
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
throw new Exception($"Unable to handle assignment [{name}]: {e.Message}", e);
|
||||
}
|
||||
}
|
||||
|
||||
public static AssignmentExpressionSyntax? AssignmentList<T>(string name, IEnumerable<T> value)
|
||||
public static AssignmentExpressionSyntax? AssignmentList<T>(string name, IEnumerable<T>? value)
|
||||
{
|
||||
IEnumerable<T> list = value.ToList();
|
||||
if (!list.Any())
|
||||
return null;
|
||||
try
|
||||
{
|
||||
if (value == null)
|
||||
return null;
|
||||
|
||||
return AssignmentExpression(
|
||||
SyntaxKind.SimpleAssignmentExpression,
|
||||
IdentifierName(name),
|
||||
CollectionExpression(
|
||||
SeparatedList<CollectionElementSyntax>(
|
||||
SyntaxNodeList(list.Select(x => ExpressionElement(
|
||||
LiteralValue(x)).AsSyntaxNodeOrToken()).ToArray())
|
||||
)));
|
||||
IEnumerable<T> list = value.ToList();
|
||||
if (!list.Any())
|
||||
return null;
|
||||
|
||||
return AssignmentExpression(
|
||||
SyntaxKind.SimpleAssignmentExpression,
|
||||
IdentifierName(name),
|
||||
CollectionExpression(
|
||||
SeparatedList<CollectionElementSyntax>(
|
||||
SyntaxNodeList(list.Select(x => ExpressionElement(
|
||||
LiteralValue(x)).AsSyntaxNodeOrToken()).ToArray())
|
||||
)));
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
throw new Exception($"Unable to handle list [{name}]: {e.StackTrace}", e);
|
||||
}
|
||||
}
|
||||
|
||||
public static SyntaxNodeOrToken? AsSyntaxNodeOrToken(this SyntaxNode? node)
|
||||
|
@ -115,7 +115,8 @@
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol"
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"NextQuestId": 1051
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -0,0 +1,105 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006764,
|
||||
"Position": {
|
||||
"X": 9.689453,
|
||||
"Y": 65.05541,
|
||||
"Z": 46.37207
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002307,
|
||||
"Position": {
|
||||
"X": 95.8114,
|
||||
"Y": 74.143555,
|
||||
"Z": -45.731323
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2,
|
||||
12
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006768,
|
||||
"Position": {
|
||||
"X": 9.689453,
|
||||
"Y": 65.162186,
|
||||
"Z": 44.99878
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006783,
|
||||
"Position": {
|
||||
"X": -11.490112,
|
||||
"Y": 69.24614,
|
||||
"Z": 30.289062
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"NextQuestId": 1052,
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,281 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -586.4241,
|
||||
"Y": 236.18538,
|
||||
"Z": 411.9264
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-128
|
||||
],
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
],
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -608.9161,
|
||||
"Y": 247.47685,
|
||||
"Z": 420.84274
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
1918
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002308,
|
||||
"Position": {
|
||||
"X": -583.82544,
|
||||
"Y": 234.97363,
|
||||
"Z": 410.94055
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -52.048523,
|
||||
"Y": 0.869751,
|
||||
"Z": 359.39575
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
1919
|
||||
],
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||
"Fly": true,
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
],
|
||||
"Comment": "TODO Verify enemy id"
|
||||
},
|
||||
{
|
||||
"DataId": 2002309,
|
||||
"Position": {
|
||||
"X": -52.048523,
|
||||
"Y": 0.869751,
|
||||
"Z": 359.39575
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-32
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -283.92462,
|
||||
"Y": 15.060608,
|
||||
"Z": -774.6853
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
1920
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002310,
|
||||
"Position": {
|
||||
"X": -283.92462,
|
||||
"Y": 15.060608,
|
||||
"Z": -774.6853
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 3684
|
||||
},
|
||||
{
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 3460
|
||||
},
|
||||
{
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 3891
|
||||
},
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002311,
|
||||
"Position": {
|
||||
"X": -282.7345,
|
||||
"Y": 33.798706,
|
||||
"Z": 300.98413
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 1921,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
],
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2002311,
|
||||
"Position": {
|
||||
"X": -282.7345,
|
||||
"Y": 33.798706,
|
||||
"Z": 300.98413
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"NextQuestId": 1053,
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 573.56177,
|
||||
"Y": 347.98422,
|
||||
"Z": -760.73724
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 1922,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
],
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002312,
|
||||
"Position": {
|
||||
"X": 579.4918,
|
||||
"Y": 347.79883,
|
||||
"Z": -764.3702
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"NextQuestId": 1054,
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,70 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006771,
|
||||
"Position": {
|
||||
"X": 89.829834,
|
||||
"Y": 66.04188,
|
||||
"Z": 18.753235
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006774,
|
||||
"Position": {
|
||||
"X": -11.367981,
|
||||
"Y": 69.20081,
|
||||
"Z": 30.258545
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006746,
|
||||
"Position": {
|
||||
"X": 460.65454,
|
||||
"Y": 8.309061,
|
||||
"Z": 74.47925
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -31,6 +31,7 @@
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2000766,
|
||||
"GroundTarget": true,
|
||||
"KillEnemyDataIds": [
|
||||
46
|
||||
],
|
||||
@ -131,6 +132,7 @@
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2000766,
|
||||
"GroundTarget": true,
|
||||
"KillEnemyDataIds": [
|
||||
46
|
||||
],
|
||||
|
@ -1,6 +1,9 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"TerritoryBlacklist": [
|
||||
309
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
@ -33,7 +33,6 @@
|
||||
},
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"StopDistance": 5,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Northern Thanalan - Camp Bluefog"
|
||||
},
|
||||
|
@ -0,0 +1,162 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"PickUpQuestId": 1047
|
||||
},
|
||||
{
|
||||
"DataId": 2001717,
|
||||
"Position": {
|
||||
"X": 25.50043,
|
||||
"Y": 2.099999,
|
||||
"Z": 0
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212,
|
||||
"SkipIf": [
|
||||
"WakingSandsMainArea"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1007533,
|
||||
"Position": {
|
||||
"X": -0.80877686,
|
||||
"Y": -3,
|
||||
"Z": -47.80658
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"$": "0 0 0 0 0 0 -> 17 0 0 0 0 128",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1007534,
|
||||
"Position": {
|
||||
"X": 1.4800415,
|
||||
"Y": -3.0000014,
|
||||
"Z": -48.722107
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"$": "17 0 0 0 0 128 -> 33 16 0 0 0 192",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1007531,
|
||||
"Position": {
|
||||
"X": 0.16778564,
|
||||
"Y": -3.0000012,
|
||||
"Z": -52.71997
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"$": "33 16 0 0 0 192 -> 49 17 0 0 0 224",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1007530,
|
||||
"Position": {
|
||||
"X": 1.296936,
|
||||
"Y": -3.0000012,
|
||||
"Z": -52.262207
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"$": "49 17 0 0 0 224 -> 65 17 16 0 0 240",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1007478,
|
||||
"Position": {
|
||||
"X": -2.822998,
|
||||
"Y": -3.0000014,
|
||||
"Z": -56.229553
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007722,
|
||||
"Position": {
|
||||
"X": 2.4871826,
|
||||
"Y": 5.1752613E-07,
|
||||
"Z": 4.5929565
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,87 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000168,
|
||||
"Position": {
|
||||
"X": -75.48645,
|
||||
"Y": -0.5013741,
|
||||
"Z": -5.081299
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -105.23075,
|
||||
"Y": 1.3112462,
|
||||
"Z": 7.6441884
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "WalkTo",
|
||||
"TargetTerritoryId": 133
|
||||
},
|
||||
{
|
||||
"DataId": 1000460,
|
||||
"Position": {
|
||||
"X": -159.41101,
|
||||
"Y": 4.054107,
|
||||
"Z": -4.1047363
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 205
|
||||
},
|
||||
{
|
||||
"DataId": 1003027,
|
||||
"Position": {
|
||||
"X": 4.8981323,
|
||||
"Y": -1.92944,
|
||||
"Z": -0.19836426
|
||||
},
|
||||
"TerritoryId": 205,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001216,
|
||||
"Position": {
|
||||
"X": 45.87172,
|
||||
"Y": 7.763558,
|
||||
"Z": 47.41661
|
||||
},
|
||||
"TerritoryId": 205,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 133
|
||||
},
|
||||
{
|
||||
"DataId": 1000692,
|
||||
"Position": {
|
||||
"X": -258.8083,
|
||||
"Y": -5.7735243,
|
||||
"Z": -27.267883
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,300 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": ["JerryWester", "liza"],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000692,
|
||||
"Position": {
|
||||
"X": -258.8083,
|
||||
"Y": -5.7735243,
|
||||
"Z": -27.267883
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008275,
|
||||
"Position": {
|
||||
"X": 180.01062,
|
||||
"Y": -2.265522,
|
||||
"Z": -245.50244
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Conjurers' Guild",
|
||||
"[Gridania] Lancers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001263,
|
||||
"Position": {
|
||||
"X": 181.41443,
|
||||
"Y": -2.3519497,
|
||||
"Z": -240.40594
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 152
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -548.81665,
|
||||
"Y": 10.813553,
|
||||
"Z": 63.75964
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "WalkTo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008276,
|
||||
"Position": {
|
||||
"X": -542.9313,
|
||||
"Y": 11.20175,
|
||||
"Z": 62.241577
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -496.3975,
|
||||
"Y": 7.8566074,
|
||||
"Z": 71.93724
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 47,
|
||||
"IgnoreQuestMarker": true,
|
||||
"MinimumKillCount": 1
|
||||
}
|
||||
],
|
||||
"Mount": false,
|
||||
"Sprint": false
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -393.63492,
|
||||
"Y": -0.28167063,
|
||||
"Z": 72.2678
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 2483,
|
||||
"IgnoreQuestMarker": true,
|
||||
"MinimumKillCount": 3
|
||||
}
|
||||
],
|
||||
"Mount": false,
|
||||
"Sprint": false
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -359.14633,
|
||||
"Y": 4.4168873,
|
||||
"Z": 63.1877
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 2484,
|
||||
"IgnoreQuestMarker": true,
|
||||
"MinimumKillCount": 1
|
||||
}
|
||||
],
|
||||
"Mount": false,
|
||||
"Sprint": false
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -324.51694,
|
||||
"Y": 8.511529,
|
||||
"Z": 69.76721
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 2485,
|
||||
"IgnoreQuestMarker": true,
|
||||
"MinimumKillCount": 2
|
||||
}
|
||||
],
|
||||
"Mount": false,
|
||||
"Sprint": false
|
||||
},
|
||||
{
|
||||
"DataId": 2482,
|
||||
"Position": {
|
||||
"X": -238.72742,
|
||||
"Y": 7.8999486,
|
||||
"Z": 64.43884
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "WaitForNpcAtPosition",
|
||||
"NpcWaitDistance": 5,
|
||||
"Mount": false,
|
||||
"Sprint": false
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -242.57193,
|
||||
"Y": 11.837363,
|
||||
"Z": 19.533478
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 2487,
|
||||
"IgnoreQuestMarker": true,
|
||||
"MinimumKillCount": 2
|
||||
},
|
||||
{
|
||||
"DataId": 2488,
|
||||
"IgnoreQuestMarker": true,
|
||||
"MinimumKillCount": 1
|
||||
}
|
||||
],
|
||||
"Mount": false,
|
||||
"Sprint": false,
|
||||
"CombatDelaySecondsAtStart": 3
|
||||
},
|
||||
{
|
||||
"DataId": 2482,
|
||||
"Position": {
|
||||
"X": -315.8217,
|
||||
"Y": 11.905772,
|
||||
"Z": -34.105675
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "WaitForNpcAtPosition",
|
||||
"Mount": false,
|
||||
"Sprint": false,
|
||||
"NpcWaitDistance": 5
|
||||
},
|
||||
{
|
||||
"DataId": 2003347,
|
||||
"Position": {
|
||||
"X": -318.62366,
|
||||
"Y": 12.25293,
|
||||
"Z": -35.05005
|
||||
},
|
||||
"StopDistance": 4,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008277,
|
||||
"Position": {
|
||||
"X": -317.6776,
|
||||
"Y": 12.293127,
|
||||
"Z": -37.30841
|
||||
},
|
||||
"StopDistance": 4,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003046,
|
||||
"Position": {
|
||||
"X": -318.62366,
|
||||
"Y": 12.25293,
|
||||
"Z": -35.080566
|
||||
},
|
||||
"StopDistance": 4,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"DelaySecondsAtStart": 3
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 66
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -139.69998,
|
||||
"Y": 8.511277,
|
||||
"Z": 279.65753
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil"
|
||||
},
|
||||
{
|
||||
"DataId": 1007862,
|
||||
"Position": {
|
||||
"X": -140.03204,
|
||||
"Y": 8.647825,
|
||||
"Z": 280.8728
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,108 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006751,
|
||||
"Position": {
|
||||
"X": -139.45221,
|
||||
"Y": 8.712891,
|
||||
"Z": 281.69678
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000460,
|
||||
"Position": {
|
||||
"X": -159.41101,
|
||||
"Y": 4.054107,
|
||||
"Z": -4.1047363
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 205,
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1003027,
|
||||
"Position": {
|
||||
"X": 4.8981323,
|
||||
"Y": -1.92944,
|
||||
"Z": -0.19836426
|
||||
},
|
||||
"TerritoryId": 205,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 205,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"DataId": 2001715,
|
||||
"Position": {
|
||||
"X": 23.23944,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
231
QuestPaths/2.x - A Realm Reborn/MSQ-2/1192_The Gifted.json
Normal file
231
QuestPaths/2.x - A Realm Reborn/MSQ-2/1192_The Gifted.json
Normal file
@ -0,0 +1,231 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001717,
|
||||
"Position": {
|
||||
"X": 25.497803,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1007478,
|
||||
"Position": {
|
||||
"X": -2.822998,
|
||||
"Y": -3.0000014,
|
||||
"Z": -56.229553
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001717,
|
||||
"Position": {
|
||||
"X": 25.497803,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 2001716,
|
||||
"Position": {
|
||||
"X": -15.701599,
|
||||
"Y": 1.083313,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -461.71686,
|
||||
"Y": 23.192137,
|
||||
"Z": -369.12787
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -470.87872,
|
||||
"Y": 22.698383,
|
||||
"Z": -439.40274
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2477
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -386.44818,
|
||||
"Y": 24.74541,
|
||||
"Z": -501.20456
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2478
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -366.75403,
|
||||
"Y": 16.426182,
|
||||
"Z": -628.9341
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2479
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -327.01913,
|
||||
"Y": 14.785374,
|
||||
"Z": -780.03625
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2480,
|
||||
2481
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007751,
|
||||
"Position": {
|
||||
"X": -325.185,
|
||||
"Y": 14.7073965,
|
||||
"Z": -784.3595
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 140,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"DataId": 2001715,
|
||||
"Position": {
|
||||
"X": 23.23944,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,102 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008597,
|
||||
"Position": {
|
||||
"X": 57.66382,
|
||||
"Y": 44.999996,
|
||||
"Z": -220.93542
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002058,
|
||||
"Position": {
|
||||
"X": 59.616943,
|
||||
"Y": 45.157562,
|
||||
"Z": -215.89996
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 175.90674,
|
||||
"Y": 52.66078,
|
||||
"Z": -53.850098
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2003561,
|
||||
"Position": {
|
||||
"X": 175.06665,
|
||||
"Y": 52.628296,
|
||||
"Z": -51.651794
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2853,
|
||||
2877
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008598,
|
||||
"Position": {
|
||||
"X": 140.45923,
|
||||
"Y": 55.321606,
|
||||
"Z": -33.066345
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002058,
|
||||
"Position": {
|
||||
"X": 59.616943,
|
||||
"Y": 45.157562,
|
||||
"Z": -215.89996
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,215 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008597,
|
||||
"Position": {
|
||||
"X": 57.66382,
|
||||
"Y": 44.999996,
|
||||
"Z": -220.93542
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1008600,
|
||||
"Position": {
|
||||
"X": -516.35004,
|
||||
"Y": 14.956879,
|
||||
"Z": -370.47382
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -22.823868,
|
||||
"Y": 37.760002,
|
||||
"Z": 80.06303
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008604,
|
||||
"Position": {
|
||||
"X": 34.77527,
|
||||
"Y": 7.1999946,
|
||||
"Z": -93.91931
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] The Chamber of Rule",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008608,
|
||||
"Position": {
|
||||
"X": 33.188354,
|
||||
"Y": 7.199998,
|
||||
"Z": -95.384155
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001353,
|
||||
"Position": {
|
||||
"X": 21.072632,
|
||||
"Y": 7.45,
|
||||
"Z": -78.78235
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"$": "0 0 0 0 0 0 -> 0 1 16 0 0 0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001968,
|
||||
"Position": {
|
||||
"X": 136.0647,
|
||||
"Y": 4.0099874,
|
||||
"Z": -67.85687
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Adventurers' Guild",
|
||||
"[Ul'dah] Sapphire Avenue Exchange"
|
||||
],
|
||||
"$": "0 1 16 0 0 0 -> 17 1 0 0 0 64",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001966,
|
||||
"Position": {
|
||||
"X": 126.7262,
|
||||
"Y": 4.01,
|
||||
"Z": -83.84839
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001353,
|
||||
"Position": {
|
||||
"X": 21.072632,
|
||||
"Y": 7.45,
|
||||
"Z": -78.78235
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Sapphire Avenue Exchange",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008608,
|
||||
"Position": {
|
||||
"X": 33.188354,
|
||||
"Y": 7.199998,
|
||||
"Z": -95.384155
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008616,
|
||||
"Position": {
|
||||
"X": -18.265076,
|
||||
"Y": 36.013893,
|
||||
"Z": 57.938477
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Adventurers' Guild",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
109
QuestPaths/2.x - A Realm Reborn/MSQ-2/1352_Why We Adventure.json
Normal file
109
QuestPaths/2.x - A Realm Reborn/MSQ-2/1352_Why We Adventure.json
Normal file
@ -0,0 +1,109 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008639,
|
||||
"Position": {
|
||||
"X": -497.94766,
|
||||
"Y": 19.009045,
|
||||
"Z": -354.75702
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -406.26895,
|
||||
"Y": 23.167036,
|
||||
"Z": -351.92947
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008632,
|
||||
"Position": {
|
||||
"X": -388.6931,
|
||||
"Y": 23,
|
||||
"Z": -350.94226
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2003573,
|
||||
"Position": {
|
||||
"X": 184.64929,
|
||||
"Y": 52.140015,
|
||||
"Z": 29.06836
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2848
|
||||
],
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008640,
|
||||
"Position": {
|
||||
"X": 126.17676,
|
||||
"Y": 49.276558,
|
||||
"Z": -173.23572
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008623,
|
||||
"Position": {
|
||||
"X": 24.887451,
|
||||
"Y": 6.999997,
|
||||
"Z": -80.03363
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008542,
|
||||
"Position": {
|
||||
"X": 0.8086548,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.557434
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001029,
|
||||
"Position": {
|
||||
"X": 9.170593,
|
||||
"Y": 20.999403,
|
||||
"Z": -15.213318
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 198,
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Prompt": "TEXT_GAIUSE212_01356_Q1_000_1",
|
||||
"Type": "YesNo",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1002694,
|
||||
"Position": {
|
||||
"X": -0.045776367,
|
||||
"Y": 1.6001425,
|
||||
"Z": -7.0039062
|
||||
},
|
||||
"TerritoryId": 198,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 256.67426,
|
||||
"Y": 1.7067826,
|
||||
"Z": 216.63573
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 62.872204,
|
||||
"Y": -3.1182384,
|
||||
"Z": 61.10103
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006614,
|
||||
"Position": {
|
||||
"X": 65.87317,
|
||||
"Y": -3.1181886,
|
||||
"Z": 61.41748
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,136 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006614,
|
||||
"Position": {
|
||||
"X": 65.87317,
|
||||
"Y": -3.1181886,
|
||||
"Z": 61.41748
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -205.63104,
|
||||
"Y": -38.72321,
|
||||
"Z": -114.53675
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008683,
|
||||
"Position": {
|
||||
"X": -208.45355,
|
||||
"Y": -38.993774,
|
||||
"Z": -113.29828
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2001214
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -450.67154,
|
||||
"Y": -41.88713,
|
||||
"Z": -238.96031
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2861,
|
||||
2862,
|
||||
2863
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008684,
|
||||
"Position": {
|
||||
"X": -451.77386,
|
||||
"Y": -41.985073,
|
||||
"Z": -237.72034
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"$": "0 0 0 0 0 0 -> 1 16 0 0 0 128",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1008685,
|
||||
"Position": {
|
||||
"X": -450.33954,
|
||||
"Y": -41.83395,
|
||||
"Z": -240.13129
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 63.72484,
|
||||
"Y": -3.1182368,
|
||||
"Z": 60.3442
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006614,
|
||||
"Position": {
|
||||
"X": 65.87317,
|
||||
"Y": -3.1181886,
|
||||
"Z": 61.41748
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,128 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006614,
|
||||
"Position": {
|
||||
"X": 65.87317,
|
||||
"Y": -3.1181886,
|
||||
"Z": 61.41748
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -209.9414,
|
||||
"Y": -42.109043,
|
||||
"Z": -248.07559
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2890,
|
||||
2891
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -194.26031,
|
||||
"Y": -40.771305,
|
||||
"Z": -323.02054
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2892,
|
||||
2893,
|
||||
2894,
|
||||
2895
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -301.09625,
|
||||
"Y": -41.52895,
|
||||
"Z": -327.2867
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
2896,
|
||||
2897,
|
||||
2898
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -405.274,
|
||||
"Y": -32.782516,
|
||||
"Z": -296.08218
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008706,
|
||||
"Position": {
|
||||
"X": -404.8371,
|
||||
"Y": -32.810974,
|
||||
"Z": -297.23047
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008803,
|
||||
"Position": {
|
||||
"X": -418.90594,
|
||||
"Y": -35.708496,
|
||||
"Z": -400.50354
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,160 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008803,
|
||||
"Position": {
|
||||
"X": -418.90594,
|
||||
"Y": -35.708496,
|
||||
"Z": -400.50354
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001029,
|
||||
"Position": {
|
||||
"X": 9.170593,
|
||||
"Y": 20.999403,
|
||||
"Z": -15.213318
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSE216_01360_Q1_000_1",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1002694,
|
||||
"Position": {
|
||||
"X": -0.045776367,
|
||||
"Y": 1.6001425,
|
||||
"Z": -7.0039062
|
||||
},
|
||||
"TerritoryId": 198,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008679,
|
||||
"Position": {
|
||||
"X": -1.2055054,
|
||||
"Y": 1.6041331,
|
||||
"Z": -3.830017
|
||||
},
|
||||
"TerritoryId": 198,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001835,
|
||||
"Position": {
|
||||
"X": 0.0235393,
|
||||
"Y": 2.330988,
|
||||
"Z": 9.8216
|
||||
},
|
||||
"TerritoryId": 198,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 129
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 709.16064,
|
||||
"Y": 66.00693,
|
||||
"Z": -285.91016
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1008692,
|
||||
"Position": {
|
||||
"X": 712.8556,
|
||||
"Y": 66.027,
|
||||
"Z": -279.07227
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 706.98395,
|
||||
"Y": 66.00693,
|
||||
"Z": -286.78662
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 152.25397,
|
||||
"Y": 14.095841,
|
||||
"Z": 668.4288
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Lower La Noscea - Moraby Drydocks"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 156.7082,
|
||||
"Y": 8.973654,
|
||||
"Z": 584.51135
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008693,
|
||||
"Position": {
|
||||
"X": 155.47412,
|
||||
"Y": 8.973654,
|
||||
"Z": 584.1306
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,71 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"TerritoryBlacklist": [
|
||||
281
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008693,
|
||||
"Position": {
|
||||
"X": 155.47412,
|
||||
"Y": 8.973654,
|
||||
"Z": 584.1306
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 72
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001029,
|
||||
"Position": {
|
||||
"X": 9.170593,
|
||||
"Y": 20.999403,
|
||||
"Z": -15.213318
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSE217_01361_Q1_000_1",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1002694,
|
||||
"Position": {
|
||||
"X": -0.045776367,
|
||||
"Y": 1.6001425,
|
||||
"Z": -7.0039062
|
||||
},
|
||||
"TerritoryId": 198,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,40 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001029,
|
||||
"Position": {
|
||||
"X": 9.170593,
|
||||
"Y": 20.999403,
|
||||
"Z": -15.213318
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008694,
|
||||
"Position": {
|
||||
"X": -117.265625,
|
||||
"Y": 9.999865,
|
||||
"Z": 154.7417
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008696,
|
||||
"Position": {
|
||||
"X": -115.58716,
|
||||
"Y": 9.999781,
|
||||
"Z": 156.08447
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008579,
|
||||
"Position": {
|
||||
"X": 1.0223389,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.731323
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,79 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008579,
|
||||
"Position": {
|
||||
"X": 1.0223389,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.731323
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": -1,
|
||||
"Z": -29.25
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": 3,
|
||||
"Z": 27.5
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"DataId": 1009239,
|
||||
"Position": {
|
||||
"X": 18.32605,
|
||||
"Y": 21.252728,
|
||||
"Z": -639.7345
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008623,
|
||||
"Position": {
|
||||
"X": 24.887451,
|
||||
"Y": 6.999997,
|
||||
"Z": -80.03363
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
158
QuestPaths/2.x - A Realm Reborn/MSQ-2/1443_Desperate Times.json
Normal file
158
QuestPaths/2.x - A Realm Reborn/MSQ-2/1443_Desperate Times.json
Normal file
@ -0,0 +1,158 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008623,
|
||||
"Position": {
|
||||
"X": 24.887451,
|
||||
"Y": 6.999997,
|
||||
"Z": -80.03363
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008700,
|
||||
"Position": {
|
||||
"X": -132.52466,
|
||||
"Y": 4.1,
|
||||
"Z": -111.92493
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Adventurers' Guild",
|
||||
"[Ul'dah] Aetheryte Plaza"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004576,
|
||||
"Position": {
|
||||
"X": -141.64954,
|
||||
"Y": 4.1,
|
||||
"Z": -114.67157
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001484,
|
||||
"Position": {
|
||||
"X": 93.247925,
|
||||
"Y": 0.34075317,
|
||||
"Z": -272.60242
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001605,
|
||||
"Position": {
|
||||
"X": 94.46863,
|
||||
"Y": 0.34075314,
|
||||
"Z": -272.60242
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 177.75328,
|
||||
"Y": -1,
|
||||
"Z": -316.30814
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006359,
|
||||
"Position": {
|
||||
"X": 177.203,
|
||||
"Y": -1,
|
||||
"Z": -317.86072
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009049,
|
||||
"Position": {
|
||||
"X": 187.54858,
|
||||
"Y": -1,
|
||||
"Z": -302.93738
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009049,
|
||||
"Position": {
|
||||
"X": 187.54858,
|
||||
"Y": -1,
|
||||
"Z": -302.93738
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Emote": "soothe"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
45
QuestPaths/2.x - A Realm Reborn/MSQ-2/1446_Revolution.json
Normal file
45
QuestPaths/2.x - A Realm Reborn/MSQ-2/1446_Revolution.json
Normal file
@ -0,0 +1,45 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004576,
|
||||
"Position": {
|
||||
"X": -141.64954,
|
||||
"Y": 4.1,
|
||||
"Z": -114.67157
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001821,
|
||||
"Position": {
|
||||
"X": -24.124573,
|
||||
"Y": 38.000004,
|
||||
"Z": 85.31323
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009057,
|
||||
"Position": {
|
||||
"X": -25.497864,
|
||||
"Y": 38.010006,
|
||||
"Z": 83.359985
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008579,
|
||||
"Position": {
|
||||
"X": 1.0223389,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.731323
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,90 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008579,
|
||||
"Position": {
|
||||
"X": 1.0223389,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.731323
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000168,
|
||||
"Position": {
|
||||
"X": -75.48645,
|
||||
"Y": -0.5013741,
|
||||
"Z": -5.081299
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -105.118355,
|
||||
"Y": 1.308924,
|
||||
"Z": 8.009593
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "WalkTo",
|
||||
"TargetTerritoryId": 133
|
||||
},
|
||||
{
|
||||
"DataId": 1000460,
|
||||
"Position": {
|
||||
"X": -159.41101,
|
||||
"Y": 4.054107,
|
||||
"Z": -4.1047363
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 205
|
||||
},
|
||||
{
|
||||
"DataId": 1003027,
|
||||
"Position": {
|
||||
"X": 4.8981323,
|
||||
"Y": -1.92944,
|
||||
"Z": -0.19836426
|
||||
},
|
||||
"TerritoryId": 205,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009097,
|
||||
"Position": {
|
||||
"X": 22.87323,
|
||||
"Y": -3.7749445,
|
||||
"Z": 211.16956
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,112 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009097,
|
||||
"Position": {
|
||||
"X": 22.87323,
|
||||
"Y": -3.7749445,
|
||||
"Z": 211.16956
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000460,
|
||||
"Position": {
|
||||
"X": -159.41101,
|
||||
"Y": 4.054107,
|
||||
"Z": -4.1047363
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 205,
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1003027,
|
||||
"Position": {
|
||||
"X": 4.8981323,
|
||||
"Y": -1.92944,
|
||||
"Z": -0.19836426
|
||||
},
|
||||
"TerritoryId": 205,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009096,
|
||||
"Position": {
|
||||
"X": -158.12933,
|
||||
"Y": 4.1921,
|
||||
"Z": -17.013855
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,134 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008980,
|
||||
"Position": {
|
||||
"X": 8.712891,
|
||||
"Y": 0.009977885,
|
||||
"Z": -3.8911133
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 2.9754639,
|
||||
"Z": 27.481445
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"DataId": 1009282,
|
||||
"Position": {
|
||||
"X": 132.95178,
|
||||
"Y": -2.2044632,
|
||||
"Z": -556.2372
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1009021,
|
||||
"Position": {
|
||||
"X": 2.9144287,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.130188
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,507 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009021,
|
||||
"Position": {
|
||||
"X": 2.9144287,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.130188
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009128,
|
||||
"Position": {
|
||||
"X": 1.1443481,
|
||||
"Y": 19.999985,
|
||||
"Z": -15.640564
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003282,
|
||||
"Position": {
|
||||
"X": -3.03656,
|
||||
"Y": 48.168007,
|
||||
"Z": -261.70752
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Marauders' Guild"
|
||||
],
|
||||
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 64",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000915,
|
||||
"Position": {
|
||||
"X": 18.387085,
|
||||
"Y": 47.600006,
|
||||
"Z": -162.12714
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"$": "1 0 0 0 0 64 -> 2 0 0 0 0 96",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000918,
|
||||
"Position": {
|
||||
"X": 84.09241,
|
||||
"Y": 44.399914,
|
||||
"Z": 132.34143
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Marauders' Guild",
|
||||
"[Limsa Lominsa] The Aftcastle"
|
||||
],
|
||||
"$": "2 0 0 0 0 96 -> 3 0 0 0 0 112",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001000,
|
||||
"Position": {
|
||||
"X": -32.028687,
|
||||
"Y": 41.499985,
|
||||
"Z": 208.39233
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"$": "3 0 0 0 0 112 -> 4 0 0 0 0 120",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009133,
|
||||
"Position": {
|
||||
"X": -189.13562,
|
||||
"Y": 41.249943,
|
||||
"Z": 179.40027
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009129,
|
||||
"Position": {
|
||||
"X": -22.110352,
|
||||
"Y": 91.999985,
|
||||
"Z": -11.6427
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Airship Landing"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002695,
|
||||
"Position": {
|
||||
"X": -25.92511,
|
||||
"Y": 91.999954,
|
||||
"Z": -3.6774292
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 132
|
||||
},
|
||||
{
|
||||
"DataId": 1009130,
|
||||
"Position": {
|
||||
"X": -157.00012,
|
||||
"Y": 4,
|
||||
"Z": -20.187744
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009138,
|
||||
"Position": {
|
||||
"X": -35.324707,
|
||||
"Y": 7.117063,
|
||||
"Z": -110.76526
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Conjurers' Guild",
|
||||
"[Gridania] Mih Khetto's Amphitheatre"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_GAIUSE316_01457_Q1_000_142",
|
||||
"Answer": "TEXT_GAIUSE316_01457_A1_000_143"
|
||||
}
|
||||
],
|
||||
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000248,
|
||||
"Position": {
|
||||
"X": 143.05322,
|
||||
"Y": 14.250365,
|
||||
"Z": -250.72101
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Mih Khetto's Amphitheatre",
|
||||
"[Gridania] Lancers' Guild"
|
||||
],
|
||||
"$": "1 0 0 0 0 128 -> 2 0 0 0 0 160",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006263,
|
||||
"Position": {
|
||||
"X": 36.819946,
|
||||
"Y": 16.351469,
|
||||
"Z": -334.5846
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"$": "2 0 0 0 0 160 -> 3 0 0 0 0 176",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009139,
|
||||
"Position": {
|
||||
"X": -14.328308,
|
||||
"Y": 9.999907,
|
||||
"Z": -262.68408
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009131,
|
||||
"Position": {
|
||||
"X": 25.864014,
|
||||
"Y": -19.000002,
|
||||
"Z": 98.68005
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Airship Landing"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000106,
|
||||
"Position": {
|
||||
"X": 29.007324,
|
||||
"Y": -19.000002,
|
||||
"Z": 105.485596
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 130
|
||||
},
|
||||
{
|
||||
"DataId": 1004339,
|
||||
"Position": {
|
||||
"X": -25.986206,
|
||||
"Y": 81.799995,
|
||||
"Z": -31.99823
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 131
|
||||
},
|
||||
{
|
||||
"DataId": 1009132,
|
||||
"Position": {
|
||||
"X": -5.142395,
|
||||
"Y": 29.999989,
|
||||
"Z": 19.272095
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009135,
|
||||
"Position": {
|
||||
"X": -89.3111,
|
||||
"Y": 7.008094,
|
||||
"Z": -10.025269
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] The Chamber of Rule",
|
||||
"[Ul'dah] Gladiators' Guild"
|
||||
],
|
||||
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009136,
|
||||
"Position": {
|
||||
"X": 65.35437,
|
||||
"Y": 14.005002,
|
||||
"Z": 102.46423
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Gladiators' Guild",
|
||||
"[Ul'dah] Miners' Guild"
|
||||
],
|
||||
"$": "1 0 0 0 0 128 -> 2 0 0 0 0 192",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001691,
|
||||
"Position": {
|
||||
"X": 142.16821,
|
||||
"Y": 7.4920034,
|
||||
"Z": 104.72266
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"$": "2 0 0 0 0 192 -> 3 0 0 0 0 200",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001679,
|
||||
"Position": {
|
||||
"X": 140.48975,
|
||||
"Y": 4.0099983,
|
||||
"Z": -59.80017
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Weavers' Guild",
|
||||
"[Ul'dah] Sapphire Avenue Exchange"
|
||||
],
|
||||
"$": "3 0 0 0 0 200 -> 4 0 0 0 0 232",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1001657,
|
||||
"Position": {
|
||||
"X": 94.80432,
|
||||
"Y": 7.9804688,
|
||||
"Z": -34.042908
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009132,
|
||||
"Position": {
|
||||
"X": -5.142395,
|
||||
"Y": 29.999989,
|
||||
"Z": 19.272095
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Sapphire Avenue Exchange",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1009021,
|
||||
"Position": {
|
||||
"X": 2.9144287,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.130188
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,85 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 2.9754639,
|
||||
"Z": 27.481445
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 241.6061,
|
||||
"Y": 303.12494,
|
||||
"Z": -199.86047
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,261 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 240.43533,
|
||||
"Y": 303.94617,
|
||||
"Z": -200.04732
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -423.6362,
|
||||
"Y": 266.62988,
|
||||
"Z": -205.92511
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -431.37878,
|
||||
"Y": 259.79306,
|
||||
"Z": -194.97882
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -423.87833,
|
||||
"Y": 266.9849,
|
||||
"Z": -205.68484
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": false
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -429.45197,
|
||||
"Y": 217.99948,
|
||||
"Z": -296.54102
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -418.48892,
|
||||
"Y": 221.5,
|
||||
"Z": -288.05304
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -417.80032,
|
||||
"Y": 223.3749,
|
||||
"Z": -291.7167
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1009081,
|
||||
"Position": {
|
||||
"X": -413.93152,
|
||||
"Y": 224.99988,
|
||||
"Z": -298.2987
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -419.1515,
|
||||
"Y": 221.49998,
|
||||
"Z": -288.4794
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -429.70523,
|
||||
"Y": 217.9995,
|
||||
"Z": -297.22086
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -701.3538,
|
||||
"Y": 224.22969,
|
||||
"Z": -31.912737
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
3119,
|
||||
3120
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009087,
|
||||
"Position": {
|
||||
"X": -868.13153,
|
||||
"Y": 226.16986,
|
||||
"Z": 8.132996
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009087,
|
||||
"Position": {
|
||||
"X": -868.13153,
|
||||
"Y": 226.16986,
|
||||
"Z": 8.132996
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -427.42563,
|
||||
"Y": 265.09998,
|
||||
"Z": -211.80003
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 241.14075,
|
||||
"Y": 303,
|
||||
"Z": -200.08086
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,321 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1008997,
|
||||
"Position": {
|
||||
"X": -5.8442383,
|
||||
"Y": 0.51025796,
|
||||
"Z": -9.628479
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 2.9754639,
|
||||
"Z": 27.481445
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-2
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009147,
|
||||
"Position": {
|
||||
"X": 41.153564,
|
||||
"Y": 20.495003,
|
||||
"Z": -650.44635
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"$": "0 128 0 0 0 0 -> 1 112 0 0 0 2",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
2
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009143,
|
||||
"Position": {
|
||||
"X": 86.778076,
|
||||
"Y": 28.34813,
|
||||
"Z": -625.94037
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"$": "1 112 0 0 0 2 -> 2 96 0 0 0 34",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009148,
|
||||
"Position": {
|
||||
"X": 71.091675,
|
||||
"Y": 33.06652,
|
||||
"Z": -698.3597
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"$": "2 96 0 0 0 34 -> 3 80 0 0 0 35",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
1
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009145,
|
||||
"Position": {
|
||||
"X": 55.832764,
|
||||
"Y": 25.5776,
|
||||
"Z": -703.6698
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"$": "3 80 0 0 0 35 -> 4 64 0 0 0 43",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009146,
|
||||
"Position": {
|
||||
"X": 47.80652,
|
||||
"Y": 31.164318,
|
||||
"Z": -744.9912
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"$": "4 64 0 0 0 43 -> 5 48 0 0 0 47",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
4
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009142,
|
||||
"Position": {
|
||||
"X": 22.384888,
|
||||
"Y": 29.024387,
|
||||
"Z": -735.4696
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true,
|
||||
"$": "5 48 0 0 0 47 -> 6 32 0 0 0 111",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 20.33117,
|
||||
"Y": 32.412514,
|
||||
"Z": -710.2311
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009141,
|
||||
"Position": {
|
||||
"X": 22.171326,
|
||||
"Y": 32.41251,
|
||||
"Z": -711.4214
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"$": "6 32 0 0 0 111 -> 7 16 0 0 0 239",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 19.0689,
|
||||
"Y": 28.620823,
|
||||
"Z": -687.8293
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009144,
|
||||
"Position": {
|
||||
"X": 20.61493,
|
||||
"Y": 28.620823,
|
||||
"Z": -688.38025
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1009021,
|
||||
"Position": {
|
||||
"X": 2.9144287,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.130188
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,64 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010844,
|
||||
"Position": {
|
||||
"X": 3.0670166,
|
||||
"Y": 0.009977885,
|
||||
"Z": -4.287842
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010845,
|
||||
"Position": {
|
||||
"X": -17.227417,
|
||||
"Y": -10.015114,
|
||||
"Z": -18.509216
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,95 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010845,
|
||||
"Position": {
|
||||
"X": -17.227417,
|
||||
"Y": -10.015114,
|
||||
"Z": -18.509216
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010846,
|
||||
"Position": {
|
||||
"X": 349.08057,
|
||||
"Y": 23.131361,
|
||||
"Z": 103.80713
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010847,
|
||||
"Position": {
|
||||
"X": 333.6079,
|
||||
"Y": -11.123097,
|
||||
"Z": 141.55786
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
363,
|
||||
372,
|
||||
364,
|
||||
2844
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005112,
|
||||
"Position": {
|
||||
"X": 199.6947,
|
||||
"Y": -14.725037,
|
||||
"Z": 162.46277
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010849,
|
||||
"Position": {
|
||||
"X": 192.401,
|
||||
"Y": -27.487204,
|
||||
"Z": 199.32861
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
103
QuestPaths/2.x - A Realm Reborn/MSQ-2/365_Best Laid Schemes.json
Normal file
103
QuestPaths/2.x - A Realm Reborn/MSQ-2/365_Best Laid Schemes.json
Normal file
@ -0,0 +1,103 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010849,
|
||||
"Position": {
|
||||
"X": 192.401,
|
||||
"Y": -27.487204,
|
||||
"Z": 199.32861
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005113,
|
||||
"Position": {
|
||||
"X": 192.88928,
|
||||
"Y": -26.657532,
|
||||
"Z": 203.60107
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"$": "0 0 0 0 0 0 -> 0 16 0 0 0 0"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010850,
|
||||
"Position": {
|
||||
"X": 53.3302,
|
||||
"Y": 10.000122,
|
||||
"Z": -10.208313
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Weavers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010853,
|
||||
"Position": {
|
||||
"X": 137.25476,
|
||||
"Y": 4,
|
||||
"Z": -20.584473
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Weavers' Guild",
|
||||
"[Ul'dah] Sapphire Avenue Exchange"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 1010891,
|
||||
"Position": {
|
||||
"X": -3.6774292,
|
||||
"Y": 0.01804012,
|
||||
"Z": -7.034485
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
185
QuestPaths/2.x - A Realm Reborn/MSQ-2/366_The Rising Chorus.json
Normal file
185
QuestPaths/2.x - A Realm Reborn/MSQ-2/366_The Rising Chorus.json
Normal file
@ -0,0 +1,185 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010891,
|
||||
"Position": {
|
||||
"X": -3.6774292,
|
||||
"Y": 0.01804012,
|
||||
"Z": -7.034485
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": -1,
|
||||
"Z": -29.25
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": 3,
|
||||
"Z": 27.5
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 337.01373,
|
||||
"Y": -27.808102,
|
||||
"Z": -369.0958
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010881,
|
||||
"Position": {
|
||||
"X": 336.3545,
|
||||
"Y": -27.808832,
|
||||
"Z": -369.7414
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 32
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010881,
|
||||
"Position": {
|
||||
"X": 336.3545,
|
||||
"Y": -27.808832,
|
||||
"Z": -369.7414
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010857,
|
||||
"Position": {
|
||||
"X": 2.5481567,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.008118
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010858,
|
||||
"Position": {
|
||||
"X": -1.9074707,
|
||||
"Y": 0,
|
||||
"Z": -3.1281738
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,139 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006646,
|
||||
"Position": {
|
||||
"X": -29.953552,
|
||||
"Y": 46.99734,
|
||||
"Z": 32.547485
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010924,
|
||||
"Position": {
|
||||
"X": -72.129456,
|
||||
"Y": 47,
|
||||
"Z": -8.86554
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010867,
|
||||
"Position": {
|
||||
"X": -133.92847,
|
||||
"Y": 59.668938,
|
||||
"Z": -94.22449
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -255.52438,
|
||||
"Y": 60.28413,
|
||||
"Z": -65.027
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
55,
|
||||
64,
|
||||
3566
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -264.6515,
|
||||
"Y": 82.28975,
|
||||
"Z": -178.98473
|
||||
},
|
||||
"StopDistance": 1,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
62,
|
||||
3657,
|
||||
3566
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010876,
|
||||
"Position": {
|
||||
"X": -110.36853,
|
||||
"Y": 64.861916,
|
||||
"Z": -127.27557
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -29.703922,
|
||||
"Y": 46.983063,
|
||||
"Z": 31.031008
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006646,
|
||||
"Position": {
|
||||
"X": -29.953552,
|
||||
"Y": 46.99734,
|
||||
"Z": 32.547485
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,92 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006646,
|
||||
"Position": {
|
||||
"X": -29.953552,
|
||||
"Y": 46.99734,
|
||||
"Z": 32.547485
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 140.28381,
|
||||
"Y": 31.425474,
|
||||
"Z": 23.662958
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010879,
|
||||
"Position": {
|
||||
"X": 136.33923,
|
||||
"Y": 31.9962,
|
||||
"Z": 16.098267
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 84
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011000,
|
||||
"Position": {
|
||||
"X": -0.07635498,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.25226
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
176
QuestPaths/2.x - A Realm Reborn/MSQ-2/370_Mask of Grief.json
Normal file
176
QuestPaths/2.x - A Realm Reborn/MSQ-2/370_Mask of Grief.json
Normal file
@ -0,0 +1,176 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": -1,
|
||||
"Z": -29.25
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010903,
|
||||
"Position": {
|
||||
"X": 24.887451,
|
||||
"Y": -1,
|
||||
"Z": -1.0223389
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": 3,
|
||||
"Z": 27.5
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 26.405773,
|
||||
"Y": 29.49983,
|
||||
"Z": -767.3998
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 25.629164,
|
||||
"Y": 28.999998,
|
||||
"Z": -823.2204
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1001304,
|
||||
"Position": {
|
||||
"X": 25.589355,
|
||||
"Y": 29,
|
||||
"Z": -825.37573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 26.405773,
|
||||
"Y": 29.49983,
|
||||
"Z": -767.3998
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -145.66704,
|
||||
"Y": 43.906273,
|
||||
"Z": -189.70813
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010929,
|
||||
"Position": {
|
||||
"X": -146.80713,
|
||||
"Y": 43.495255,
|
||||
"Z": -187.39612
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010930,
|
||||
"Position": {
|
||||
"X": -1.2664795,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.069153
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,135 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010930,
|
||||
"Position": {
|
||||
"X": -1.2664795,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.069153
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010931,
|
||||
"Position": {
|
||||
"X": 232.50171,
|
||||
"Y": 302,
|
||||
"Z": -190.93622
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -123.426254,
|
||||
"Y": 301.84348,
|
||||
"Z": -283.14267
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010942,
|
||||
"Position": {
|
||||
"X": -132.12793,
|
||||
"Y": 304.28772,
|
||||
"Z": -298.3902
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
],
|
||||
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 16"
|
||||
},
|
||||
{
|
||||
"DataId": 1010940,
|
||||
"Position": {
|
||||
"X": -143.23651,
|
||||
"Y": 304.15378,
|
||||
"Z": -289.35687
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
],
|
||||
"$": "1 0 0 0 0 16 -> 2 0 0 0 0 80"
|
||||
},
|
||||
{
|
||||
"DataId": 1010941,
|
||||
"Position": {
|
||||
"X": -157.00012,
|
||||
"Y": 304.1538,
|
||||
"Z": -308.1255
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
],
|
||||
"$": "2 0 0 0 0 80 -> 3 0 0 0 0 112"
|
||||
},
|
||||
{
|
||||
"DataId": 1010939,
|
||||
"Position": {
|
||||
"X": -152.69702,
|
||||
"Y": 304.1538,
|
||||
"Z": -321.21765
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010951,
|
||||
"Position": {
|
||||
"X": -144.1825,
|
||||
"Y": 304.15393,
|
||||
"Z": -300.7401
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
112
QuestPaths/2.x - A Realm Reborn/MSQ-2/372_The Wyrm's Roar.json
Normal file
112
QuestPaths/2.x - A Realm Reborn/MSQ-2/372_The Wyrm's Roar.json
Normal file
@ -0,0 +1,112 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010951,
|
||||
"Position": {
|
||||
"X": -144.1825,
|
||||
"Y": 304.15393,
|
||||
"Z": -300.7401
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 241.6446,
|
||||
"Y": 303.12494,
|
||||
"Z": -199.8039
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007603,
|
||||
"Position": {
|
||||
"X": 264.91187,
|
||||
"Y": 302.26236,
|
||||
"Z": -223.71259
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSE603_00372_FORTEMPSGUARD00054_Q1_000_1",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1009974,
|
||||
"Position": {
|
||||
"X": 3.8604736,
|
||||
"Y": 0.014982708,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 395,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 4.0818396,
|
||||
"Y": 0,
|
||||
"Z": 6.262639
|
||||
},
|
||||
"TerritoryId": 395,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -2.7646873,
|
||||
"Y": 0.0149827,
|
||||
"Z": 6.104938
|
||||
},
|
||||
"TerritoryId": 395,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010953,
|
||||
"Position": {
|
||||
"X": -2.7924194,
|
||||
"Y": 0.014982709,
|
||||
"Z": -0.7477417
|
||||
},
|
||||
"TerritoryId": 395,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,59 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010953,
|
||||
"Position": {
|
||||
"X": -2.7924194,
|
||||
"Y": 0.014982709,
|
||||
"Z": -0.7477417
|
||||
},
|
||||
"TerritoryId": 395,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010896,
|
||||
"Position": {
|
||||
"X": 0.503479,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.61847
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -26,7 +26,6 @@
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"StopDistance": 5,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Northern Thanalan - Ceruleum Processing Plant"
|
||||
},
|
||||
|
@ -1,6 +1,9 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"TerritoryBlacklist": [
|
||||
1043
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
215
QuestPaths/2.x - A Realm Reborn/MSQ-2/3874_Moving On.json
Normal file
215
QuestPaths/2.x - A Realm Reborn/MSQ-2/3874_Moving On.json
Normal file
@ -0,0 +1,215 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001717,
|
||||
"Position": {
|
||||
"X": 25.50043,
|
||||
"Y": 2.099999,
|
||||
"Z": 0
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1007722,
|
||||
"Position": {
|
||||
"X": 2.4871826,
|
||||
"Y": 5.1752613E-07,
|
||||
"Z": 4.5929565
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007534,
|
||||
"Position": {
|
||||
"X": 1.4800415,
|
||||
"Y": -3.0000014,
|
||||
"Z": -48.722107
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"PickUpQuestId": 1048
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 618.9289,
|
||||
"Y": 23.936241,
|
||||
"Z": 458.50406
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol"
|
||||
},
|
||||
{
|
||||
"DataId": 1006273,
|
||||
"Position": {
|
||||
"X": 619.0126,
|
||||
"Y": 23.936245,
|
||||
"Z": 455.10022
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006306,
|
||||
"Position": {
|
||||
"X": -25.864075,
|
||||
"Y": 71.787285,
|
||||
"Z": -36.78955
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -27.752865,
|
||||
"Y": 72.71639,
|
||||
"Z": -22.499773
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -117.34223,
|
||||
"Y": 86.050835,
|
||||
"Z": -4.656612
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006309,
|
||||
"Position": {
|
||||
"X": -116.56372,
|
||||
"Y": 86.051636,
|
||||
"Z": -5.874817
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 9.1786175,
|
||||
"Y": 71.18964,
|
||||
"Z": -17.323349
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006305,
|
||||
"Position": {
|
||||
"X": 10.60498,
|
||||
"Y": 71.47817,
|
||||
"Z": -16.617126
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 17.898853,
|
||||
"Y": 52.634007,
|
||||
"Z": 489.2221
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1007738,
|
||||
"Position": {
|
||||
"X": 29.129395,
|
||||
"Y": 54.01148,
|
||||
"Z": 484.9469
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
320
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007738,
|
||||
"Position": {
|
||||
"X": 29.129395,
|
||||
"Y": 54.01148,
|
||||
"Z": 484.9469
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007752,
|
||||
"Position": {
|
||||
"X": -35.111023,
|
||||
"Y": 70.34483,
|
||||
"Z": 4.043579
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,51 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007739,
|
||||
"Position": {
|
||||
"X": -34.53119,
|
||||
"Y": 70.347595,
|
||||
"Z": 2.7618408
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001715,
|
||||
"Position": {
|
||||
"X": 23.23944,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,99 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1003785,
|
||||
"Position": {
|
||||
"X": -489.8299,
|
||||
"Y": 21.48999,
|
||||
"Z": -381.97913
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001711,
|
||||
"Position": {
|
||||
"X": -480.91858,
|
||||
"Y": 17.990356,
|
||||
"Z": -386.862
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 2001715,
|
||||
"Position": {
|
||||
"X": 23.23944,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000168,
|
||||
"Position": {
|
||||
"X": -75.48645,
|
||||
"Y": -0.5013741,
|
||||
"Z": -5.081299
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Gridania"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,100 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006693,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001717,
|
||||
"Position": {
|
||||
"X": 25.497803,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1007478,
|
||||
"Position": {
|
||||
"X": -2.822998,
|
||||
"Y": -3.0000014,
|
||||
"Z": -56.229553
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010954,
|
||||
"Position": {
|
||||
"X": 24.2771,
|
||||
"Y": 20.04223,
|
||||
"Z": -679.9573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1007724,
|
||||
"Position": {
|
||||
"X": 1.0223389,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.79236
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
67
QuestPaths/2.x - A Realm Reborn/MSQ-2/3879_Still Waters.json
Normal file
67
QuestPaths/2.x - A Realm Reborn/MSQ-2/3879_Still Waters.json
Normal file
@ -0,0 +1,67 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007724,
|
||||
"Position": {
|
||||
"X": 1.0223389,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.79236
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008595,
|
||||
"Position": {
|
||||
"X": 79.60632,
|
||||
"Y": 46.311092,
|
||||
"Z": -251.69757
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002058,
|
||||
"Position": {
|
||||
"X": 59.616943,
|
||||
"Y": 45.157562,
|
||||
"Z": -215.89996
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008597,
|
||||
"Position": {
|
||||
"X": 57.66382,
|
||||
"Y": 44.999996,
|
||||
"Z": -220.93542
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,59 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008616,
|
||||
"Position": {
|
||||
"X": -18.265076,
|
||||
"Y": 36.013893,
|
||||
"Z": 57.938477
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008700,
|
||||
"Position": {
|
||||
"X": -132.52466,
|
||||
"Y": 4.1,
|
||||
"Z": -111.92493
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] The Chamber of Rule",
|
||||
"[Ul'dah] Aetheryte Plaza"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008623,
|
||||
"Position": {
|
||||
"X": 24.887451,
|
||||
"Y": 6.999997,
|
||||
"Z": -80.03363
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
179
QuestPaths/2.x - A Realm Reborn/MSQ-2/3881_Yugiri's Game.json
Normal file
179
QuestPaths/2.x - A Realm Reborn/MSQ-2/3881_Yugiri's Game.json
Normal file
@ -0,0 +1,179 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008623,
|
||||
"Position": {
|
||||
"X": 24.887451,
|
||||
"Y": 6.999997,
|
||||
"Z": -80.03363
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1008639,
|
||||
"Position": {
|
||||
"X": -497.94766,
|
||||
"Y": 19.009045,
|
||||
"Z": -354.75702
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -432.60025,
|
||||
"Y": 25.983873,
|
||||
"Z": -369.20984
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008628,
|
||||
"Position": {
|
||||
"X": -431.8761,
|
||||
"Y": 25.983873,
|
||||
"Z": -368.36804
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -414.27258,
|
||||
"Y": 23.113977,
|
||||
"Z": -394.49655
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008636,
|
||||
"Position": {
|
||||
"X": -415.91516,
|
||||
"Y": 23.113977,
|
||||
"Z": -394.6136
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 64",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -405.65857,
|
||||
"Y": 23.008797,
|
||||
"Z": -337.7979
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008637,
|
||||
"Position": {
|
||||
"X": -406.05786,
|
||||
"Y": 23.008799,
|
||||
"Z": -339.9558
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"$": "1 0 0 0 0 64 -> 2 0 0 0 0 96",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -443.07297,
|
||||
"Y": 30.999876,
|
||||
"Z": -328.30157
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008635,
|
||||
"Position": {
|
||||
"X": -444.29694,
|
||||
"Y": 30.999878,
|
||||
"Z": -329.64075
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -496.36285,
|
||||
"Y": 19.00904,
|
||||
"Z": -354.65195
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1008639,
|
||||
"Position": {
|
||||
"X": -497.94766,
|
||||
"Y": 19.009045,
|
||||
"Z": -354.75702
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
108
QuestPaths/2.x - A Realm Reborn/MSQ-2/3882_All Due Respect.json
Normal file
108
QuestPaths/2.x - A Realm Reborn/MSQ-2/3882_All Due Respect.json
Normal file
@ -0,0 +1,108 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008623,
|
||||
"Position": {
|
||||
"X": 24.887451,
|
||||
"Y": 6.999997,
|
||||
"Z": -80.03363
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008659,
|
||||
"Position": {
|
||||
"X": 26.474365,
|
||||
"Y": 20.174328,
|
||||
"Z": -679.74365
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008547,
|
||||
"Position": {
|
||||
"X": 0.77819824,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.487183
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008554,
|
||||
"Position": {
|
||||
"X": 1.6326294,
|
||||
"Y": -1.9957249,
|
||||
"Z": -41.916565
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,89 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009049,
|
||||
"Position": {
|
||||
"X": 187.54858,
|
||||
"Y": -1,
|
||||
"Z": -302.93738
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009050,
|
||||
"Position": {
|
||||
"X": 57.419678,
|
||||
"Y": -5.5366235,
|
||||
"Z": -1.2664795
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2852,
|
||||
3114,
|
||||
3115,
|
||||
3116,
|
||||
3117
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009050,
|
||||
"Position": {
|
||||
"X": 57.419678,
|
||||
"Y": -5.5366235,
|
||||
"Z": -1.2664795
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 187.86679,
|
||||
"Y": -1,
|
||||
"Z": -301.48148
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009049,
|
||||
"Position": {
|
||||
"X": 187.54858,
|
||||
"Y": -1,
|
||||
"Z": -302.93738
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,106 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009049,
|
||||
"Position": {
|
||||
"X": 187.54858,
|
||||
"Y": -1,
|
||||
"Z": -302.93738
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -141.48044,
|
||||
"Y": 4.2354183,
|
||||
"Z": 232.0292
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009055,
|
||||
"Position": {
|
||||
"X": -142.74823,
|
||||
"Y": 4.2354183,
|
||||
"Z": 232.77625
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 57.739433,
|
||||
"Y": -1.247997,
|
||||
"Z": 343.4356
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009056,
|
||||
"Position": {
|
||||
"X": 58.27417,
|
||||
"Y": -1.2500068,
|
||||
"Z": 342.2445
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009175,
|
||||
"Position": {
|
||||
"X": 59.433838,
|
||||
"Y": -1.2516545,
|
||||
"Z": 341.26794
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004576,
|
||||
"Position": {
|
||||
"X": -141.64954,
|
||||
"Y": 4.1,
|
||||
"Z": -114.67157
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,119 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"TerritoryBlacklist": [
|
||||
374
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009097,
|
||||
"Position": {
|
||||
"X": 22.87323,
|
||||
"Y": -3.7749445,
|
||||
"Z": 211.16956
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009098,
|
||||
"Position": {
|
||||
"X": 262.71448,
|
||||
"Y": -8.995881,
|
||||
"Z": -77.92786
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1033555,
|
||||
"Position": {
|
||||
"X": 193.59119,
|
||||
"Y": -22.344374,
|
||||
"Z": -399.8932
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009119,
|
||||
"Position": {
|
||||
"X": 106.85889,
|
||||
"Y": -27.487057,
|
||||
"Z": -366.3844
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 190.23474,
|
||||
"Y": -31.415636,
|
||||
"Z": -218.26653
|
||||
},
|
||||
"StopDistance": 0.25,
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 77
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009097,
|
||||
"Position": {
|
||||
"X": 22.87323,
|
||||
"Y": -3.7749445,
|
||||
"Z": 211.16956
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
114
QuestPaths/2.x - A Realm Reborn/MSQ-2/3886_Chasing Ivy.json
Normal file
114
QuestPaths/2.x - A Realm Reborn/MSQ-2/3886_Chasing Ivy.json
Normal file
@ -0,0 +1,114 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010010,
|
||||
"Position": {
|
||||
"X": -50.94995,
|
||||
"Y": -3.440948,
|
||||
"Z": 20.58435
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010017,
|
||||
"Position": {
|
||||
"X": 22.171326,
|
||||
"Y": 1.1999999,
|
||||
"Z": 28.854736
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010018,
|
||||
"Position": {
|
||||
"X": 49.729126,
|
||||
"Y": -8.046955,
|
||||
"Z": 100.20593
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 49.68947,
|
||||
"Y": -8.046954,
|
||||
"Z": 100.59061
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 38.482037,
|
||||
"Y": -9.182595,
|
||||
"Z": 124.36735
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 40.59977,
|
||||
"Y": -18.800003,
|
||||
"Z": 103.46791
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010012,
|
||||
"Position": {
|
||||
"X": 23.910828,
|
||||
"Y": -18.800003,
|
||||
"Z": 89.89087
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"DisableNavmesh": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010018,
|
||||
"Position": {
|
||||
"X": 49.729126,
|
||||
"Y": -8.046955,
|
||||
"Z": 100.20593
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,158 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010018,
|
||||
"Position": {
|
||||
"X": 49.729126,
|
||||
"Y": -8.046955,
|
||||
"Z": 100.20593
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001263,
|
||||
"Position": {
|
||||
"X": 181.41443,
|
||||
"Y": -2.3519497,
|
||||
"Z": -240.40594
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 152,
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Lancers' Guild"
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1010020,
|
||||
"Position": {
|
||||
"X": -569.39044,
|
||||
"Y": 9.822195,
|
||||
"Z": 65.171265
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -300.50375,
|
||||
"Y": 0.39631903,
|
||||
"Z": 268.70343
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010037,
|
||||
"Position": {
|
||||
"X": -300.98425,
|
||||
"Y": 0.4458849,
|
||||
"Z": 267.84155
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -172.96619,
|
||||
"Y": 1.4138634,
|
||||
"Z": 147.4101
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010038,
|
||||
"Position": {
|
||||
"X": -173.66296,
|
||||
"Y": 1.4696703,
|
||||
"Z": 146.83752
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009987,
|
||||
"Position": {
|
||||
"X": -207.69055,
|
||||
"Y": 4.192081,
|
||||
"Z": 100.26697
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010147,
|
||||
"Position": {
|
||||
"X": 0.8086548,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.67035
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
124
QuestPaths/2.x - A Realm Reborn/MSQ-2/3888_Aether on Demand.json
Normal file
124
QuestPaths/2.x - A Realm Reborn/MSQ-2/3888_Aether on Demand.json
Normal file
@ -0,0 +1,124 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010858,
|
||||
"Position": {
|
||||
"X": -1.9074707,
|
||||
"Y": 0,
|
||||
"Z": -3.1281738
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010890,
|
||||
"Position": {
|
||||
"X": 31.967651,
|
||||
"Y": -1,
|
||||
"Z": 2.9144287
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010860,
|
||||
"Position": {
|
||||
"X": 2.822876,
|
||||
"Y": -1.995725,
|
||||
"Z": -41.24518
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010858,
|
||||
"Position": {
|
||||
"X": -1.9074707,
|
||||
"Y": 0,
|
||||
"Z": -3.1281738
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010861,
|
||||
"Position": {
|
||||
"X": -63.523376,
|
||||
"Y": 46.999992,
|
||||
"Z": 25.192627
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006646,
|
||||
"Position": {
|
||||
"X": -29.953552,
|
||||
"Y": 46.99734,
|
||||
"Z": 32.547485
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,216 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010896,
|
||||
"Position": {
|
||||
"X": 0.503479,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.61847
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010911,
|
||||
"Position": {
|
||||
"X": -3.7385254,
|
||||
"Y": 0.01804012,
|
||||
"Z": -9.353821
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 2.9754639,
|
||||
"Z": 27.481445
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010954,
|
||||
"Position": {
|
||||
"X": 24.2771,
|
||||
"Y": 20.04223,
|
||||
"Z": -679.9573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010958,
|
||||
"Position": {
|
||||
"X": 47.745483,
|
||||
"Y": 20.665741,
|
||||
"Z": -685.1759
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 16",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1010955,
|
||||
"Position": {
|
||||
"X": 103.440796,
|
||||
"Y": 31.606796,
|
||||
"Z": -739.559
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"$": "1 0 0 0 0 16 -> 2 0 0 0 0 144",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 68.349144,
|
||||
"Y": 50,
|
||||
"Z": -776.29706
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010956,
|
||||
"Position": {
|
||||
"X": 68.86389,
|
||||
"Y": 50,
|
||||
"Z": -774.3496
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"$": "2 0 0 0 0 144 -> 3 0 0 0 0 208",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 26.19157,
|
||||
"Y": 29.595585,
|
||||
"Z": -768.4571
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010957,
|
||||
"Position": {
|
||||
"X": 33.676636,
|
||||
"Y": 29,
|
||||
"Z": -789.08984
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 26.19157,
|
||||
"Y": 29.595585,
|
||||
"Z": -768.4571
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010961,
|
||||
"Position": {
|
||||
"X": 33.279907,
|
||||
"Y": 20.495003,
|
||||
"Z": -655.20715
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,154 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010961,
|
||||
"Position": {
|
||||
"X": 33.279907,
|
||||
"Y": 20.495003,
|
||||
"Z": -655.20715
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009057,
|
||||
"Position": {
|
||||
"X": -25.497864,
|
||||
"Y": 38.010006,
|
||||
"Z": 83.359985
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009057,
|
||||
"Position": {
|
||||
"X": -25.497864,
|
||||
"Y": 38.010006,
|
||||
"Z": 83.359985
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -123.426254,
|
||||
"Y": 301.84348,
|
||||
"Z": -283.14267
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1006454,
|
||||
"Position": {
|
||||
"X": -168.84113,
|
||||
"Y": 304.1538,
|
||||
"Z": -328.66406
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -497.33295,
|
||||
"Y": 206.35991,
|
||||
"Z": -363.85968
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
387,
|
||||
3659
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 127.06116,
|
||||
"Y": 373.5079,
|
||||
"Z": -653.1907
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"Fly": true,
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
398,
|
||||
3658
|
||||
],
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -133.9223,
|
||||
"Y": 304.15378,
|
||||
"Z": -292.65924
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006454,
|
||||
"Position": {
|
||||
"X": -168.84113,
|
||||
"Y": 304.1538,
|
||||
"Z": -328.66406
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,147 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2005060,
|
||||
"Position": {
|
||||
"X": -4.135254,
|
||||
"Y": 0.015197754,
|
||||
"Z": -9.628479
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011612,
|
||||
"Position": {
|
||||
"X": 7.736328,
|
||||
"Y": 0,
|
||||
"Z": -8.438293
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 2.9754639,
|
||||
"Z": 27.481445
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 29.414328,
|
||||
"Y": 21.232033,
|
||||
"Z": -652.65454
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1010979,
|
||||
"Position": {
|
||||
"X": 27.023682,
|
||||
"Y": 32.412476,
|
||||
"Z": -697.35254
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"StopDistance": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 29.414328,
|
||||
"Y": 21.232033,
|
||||
"Z": -652.65454
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,112 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010980,
|
||||
"Position": {
|
||||
"X": -341.6648,
|
||||
"Y": -2.3744712,
|
||||
"Z": 10.696533
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Arcanists' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000909,
|
||||
"Position": {
|
||||
"X": -326.37524,
|
||||
"Y": 12.899658,
|
||||
"Z": 9.994568
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005073,
|
||||
"Position": {
|
||||
"X": -1.0223389,
|
||||
"Y": 29.55664,
|
||||
"Z": 172.96094
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Arcanists' Guild",
|
||||
"[Limsa Lominsa] Zephyr Gate (Middle La Noscea)"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010981,
|
||||
"Position": {
|
||||
"X": 124.74243,
|
||||
"Y": 45.74832,
|
||||
"Z": 135.7594
|
||||
},
|
||||
"TerritoryId": 134,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000909,
|
||||
"Position": {
|
||||
"X": -326.37524,
|
||||
"Y": 12.899658,
|
||||
"Z": 9.994568
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Arcanists' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,126 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011020,
|
||||
"Position": {
|
||||
"X": -329.09137,
|
||||
"Y": 12.899738,
|
||||
"Z": 12.039368
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010982,
|
||||
"Position": {
|
||||
"X": 570.18384,
|
||||
"Y": 20.637413,
|
||||
"Z": 490.6233
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010983,
|
||||
"Position": {
|
||||
"X": 594.7814,
|
||||
"Y": 8.632993,
|
||||
"Z": 601.77
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005064,
|
||||
"Position": {
|
||||
"X": 602.9907,
|
||||
"Y": 8.987488,
|
||||
"Z": 577.66077
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
3660
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010983,
|
||||
"Position": {
|
||||
"X": 594.7814,
|
||||
"Y": 8.632993,
|
||||
"Z": 601.77
|
||||
},
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,230 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1011615,
|
||||
"Position": {
|
||||
"X": -1.3275757,
|
||||
"Y": 0,
|
||||
"Z": -2.7008667
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010984,
|
||||
"Position": {
|
||||
"X": -207.44641,
|
||||
"Y": 20.86788,
|
||||
"Z": 360.06702
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010985,
|
||||
"Position": {
|
||||
"X": -223.71259,
|
||||
"Y": 12.277637,
|
||||
"Z": 47.989624
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005065,
|
||||
"Position": {
|
||||
"X": -225.26898,
|
||||
"Y": 13.137939,
|
||||
"Z": 56.90088
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
23
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010985,
|
||||
"Position": {
|
||||
"X": -223.71259,
|
||||
"Y": 12.277637,
|
||||
"Z": 47.989624
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010986,
|
||||
"Position": {
|
||||
"X": 122.941895,
|
||||
"Y": 24.534142,
|
||||
"Z": 169.72607
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005066,
|
||||
"Position": {
|
||||
"X": 109.666504,
|
||||
"Y": 24.15503,
|
||||
"Z": 174.7616
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
24,
|
||||
130
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010986,
|
||||
"Position": {
|
||||
"X": 122.941895,
|
||||
"Y": 24.534142,
|
||||
"Z": 169.72607
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010987,
|
||||
"Position": {
|
||||
"X": -355.2453,
|
||||
"Y": 0.6691612,
|
||||
"Z": 459.3728
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005067,
|
||||
"Position": {
|
||||
"X": -338.42987,
|
||||
"Y": -0.07635498,
|
||||
"Z": 453.4828
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
305
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 11,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010987,
|
||||
"Position": {
|
||||
"X": -355.2453,
|
||||
"Y": 0.6691612,
|
||||
"Z": 459.3728
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010984,
|
||||
"Position": {
|
||||
"X": -207.44641,
|
||||
"Y": 20.86788,
|
||||
"Z": 360.06702
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,95 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010984,
|
||||
"Position": {
|
||||
"X": -207.44641,
|
||||
"Y": 20.86788,
|
||||
"Z": 360.06702
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010988,
|
||||
"Position": {
|
||||
"X": 618.40234,
|
||||
"Y": 22.52846,
|
||||
"Z": 105.63818
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005068,
|
||||
"Position": {
|
||||
"X": 604.57764,
|
||||
"Y": 24.032959,
|
||||
"Z": 105.119385
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010992,
|
||||
"Position": {
|
||||
"X": -6.149414,
|
||||
"Y": 29.99998,
|
||||
"Z": 19.150085
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,107 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010992,
|
||||
"Position": {
|
||||
"X": -6.149414,
|
||||
"Y": 29.99998,
|
||||
"Z": 19.150085
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001353,
|
||||
"Position": {
|
||||
"X": 21.072632,
|
||||
"Y": 7.45,
|
||||
"Z": -78.78235
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] The Chamber of Rule",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005069,
|
||||
"Position": {
|
||||
"X": -289.17377,
|
||||
"Y": 22.812195,
|
||||
"Z": -56.6568
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005070,
|
||||
"Position": {
|
||||
"X": -289.17377,
|
||||
"Y": 22.812195,
|
||||
"Z": -56.6568
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005072,
|
||||
"Position": {
|
||||
"X": -289.72308,
|
||||
"Y": 22.812195,
|
||||
"Z": -56.321106
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001353,
|
||||
"Position": {
|
||||
"X": 21.072632,
|
||||
"Y": 7.45,
|
||||
"Z": -78.78235
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Adventurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,88 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001353,
|
||||
"Position": {
|
||||
"X": 21.072632,
|
||||
"Y": 7.45,
|
||||
"Z": -78.78235
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010997,
|
||||
"Position": {
|
||||
"X": -22.354492,
|
||||
"Y": 38.010006,
|
||||
"Z": 83.42102
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Adventurers' Guild",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSE615_00427_Q1_000_012",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010998,
|
||||
"Position": {
|
||||
"X": 78.416016,
|
||||
"Y": -0.63573146,
|
||||
"Z": -166.33862
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 241.6061,
|
||||
"Y": 303.12494,
|
||||
"Z": -199.86047
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007603,
|
||||
"Position": {
|
||||
"X": 264.91187,
|
||||
"Y": 302.26236,
|
||||
"Z": -223.71259
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSE616_00428_FORTEMPSGUARD00428_Q1_000_000",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,108 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1011000,
|
||||
"Position": {
|
||||
"X": -0.07635498,
|
||||
"Y": -1.9957249,
|
||||
"Z": -42.25226
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 2.9754639,
|
||||
"Z": 27.481445
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"DataId": 2005045,
|
||||
"Position": {
|
||||
"X": -146.44086,
|
||||
"Y": 43.656006,
|
||||
"Z": -188.61682
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,6 +1,9 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"TerritoryBlacklist": [
|
||||
1049
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
@ -1,6 +1,10 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"TerritoryBlacklist": [
|
||||
1044,
|
||||
1048
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
|
@ -0,0 +1,89 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006454,
|
||||
"Position": {
|
||||
"X": -168.84113,
|
||||
"Y": 304.1538,
|
||||
"Z": -328.66406
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006454,
|
||||
"Position": {
|
||||
"X": -168.84113,
|
||||
"Y": 304.1538,
|
||||
"Z": -328.66406
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010978,
|
||||
"Position": {
|
||||
"X": -157.57996,
|
||||
"Y": 304.1538,
|
||||
"Z": -314.53424
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010897,
|
||||
"Position": {
|
||||
"X": 0.9613037,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -52,7 +52,7 @@
|
||||
"Y": 84,
|
||||
"Z": -3.768982
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
"Y": 84,
|
||||
"Z": -3.768982
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
|
@ -0,0 +1,79 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010078,
|
||||
"Position": {
|
||||
"X": 31.540405,
|
||||
"Y": -1,
|
||||
"Z": -0.80877686
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009959,
|
||||
"Position": {
|
||||
"X": 3.5248413,
|
||||
"Y": 0.009977884,
|
||||
"Z": -4.4404297
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008700,
|
||||
"Position": {
|
||||
"X": -132.52466,
|
||||
"Y": 4.1,
|
||||
"Z": -111.92493
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
274
QuestPaths/2.x - A Realm Reborn/MSQ-2/53_Back and Fourth.json
Normal file
274
QuestPaths/2.x - A Realm Reborn/MSQ-2/53_Back and Fourth.json
Normal file
@ -0,0 +1,274 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009961,
|
||||
"Position": {
|
||||
"X": -131.88379,
|
||||
"Y": 4.1,
|
||||
"Z": -109.63611
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 2.0206594,
|
||||
"Y": 0,
|
||||
"Z": -5.7291903
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010078,
|
||||
"Position": {
|
||||
"X": 31.540405,
|
||||
"Y": -1,
|
||||
"Z": -0.80877686
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 2.0206594,
|
||||
"Y": 0,
|
||||
"Z": -5.7291903
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 2.9754639,
|
||||
"Z": 27.481445
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"DataId": 1009962,
|
||||
"Position": {
|
||||
"X": -354.60443,
|
||||
"Y": -15.981883,
|
||||
"Z": -477.4395
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -455.26733,
|
||||
"Y": -4.2369456,
|
||||
"Z": -300.13348
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
61,
|
||||
62,
|
||||
63
|
||||
],
|
||||
"$": "0 0 0 0 0 0 -> 3 0 0 0 0 0",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009966,
|
||||
"Position": {
|
||||
"X": -455.89386,
|
||||
"Y": -4.098249,
|
||||
"Z": -302.72375
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -464.29688,
|
||||
"Y": -3.2168088,
|
||||
"Z": -231.61989
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
63,
|
||||
64,
|
||||
3566
|
||||
],
|
||||
"Fly": true,
|
||||
"$": "0 0 0 0 0 0 -> 16 3 0 0 0 128",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -542.5233,
|
||||
"Y": -1.7329574,
|
||||
"Z": -291.1239
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
55,
|
||||
3566
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -598.8258,
|
||||
"Y": -3.216822,
|
||||
"Z": -398.18915
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
61,
|
||||
62,
|
||||
55,
|
||||
64
|
||||
],
|
||||
"Fly": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009112,
|
||||
"Position": {
|
||||
"X": -355.45898,
|
||||
"Y": -16.030567,
|
||||
"Z": -477.04285
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 2.0206594,
|
||||
"Y": 0,
|
||||
"Z": -5.7291903
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010078,
|
||||
"Position": {
|
||||
"X": 31.540405,
|
||||
"Y": -1,
|
||||
"Z": -0.80877686
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,96 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010078,
|
||||
"Position": {
|
||||
"X": 31.540405,
|
||||
"Y": -1,
|
||||
"Z": -0.80877686
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 241.44713,
|
||||
"Y": 303.12494,
|
||||
"Z": -199.88608
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007603,
|
||||
"Position": {
|
||||
"X": 264.91187,
|
||||
"Y": 302.26236,
|
||||
"Z": -223.71259
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Mount": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSE403_00054_FORTEMPSGUARD00054_Q1_000_1",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,120 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009976,
|
||||
"Position": {
|
||||
"X": 261.58533,
|
||||
"Y": 302.19598,
|
||||
"Z": -223.10223
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Mount": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 241.25629,
|
||||
"Y": 303,
|
||||
"Z": -199.9688
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009979,
|
||||
"Position": {
|
||||
"X": -281.48322,
|
||||
"Y": 225.50882,
|
||||
"Z": 556.115
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 193.60997,
|
||||
"Y": 228.96082,
|
||||
"Z": 327.83392
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009982,
|
||||
"Position": {
|
||||
"X": 208.88062,
|
||||
"Y": 229.04996,
|
||||
"Z": 322.4994
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 241.44713,
|
||||
"Y": 303.12494,
|
||||
"Z": -199.88608
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1009977,
|
||||
"Position": {
|
||||
"X": 261.0055,
|
||||
"Y": 303.1,
|
||||
"Z": -198.59619
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009977,
|
||||
"Position": {
|
||||
"X": 261.0055,
|
||||
"Y": 303.1,
|
||||
"Z": -198.59619
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 241.25629,
|
||||
"Y": 303,
|
||||
"Z": -199.9688
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -424.22275,
|
||||
"Y": 265.1,
|
||||
"Z": -206.5006
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,129 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -431.02658,
|
||||
"Y": 259.97607,
|
||||
"Z": -195.07794
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -424.12082,
|
||||
"Y": 265.1,
|
||||
"Z": -206.61
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2004652,
|
||||
"Position": {
|
||||
"X": -440.6301,
|
||||
"Y": 211,
|
||||
"Z": -263.6248
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004653,
|
||||
"Position": {
|
||||
"X": -451.89594,
|
||||
"Y": 221.6372,
|
||||
"Z": -149.27905
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004654,
|
||||
"Position": {
|
||||
"X": -345.14386,
|
||||
"Y": 254.4137,
|
||||
"Z": -95.384155
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2004655,
|
||||
"Position": {
|
||||
"X": -386.1906,
|
||||
"Y": 270.46606,
|
||||
"Z": 77.62268
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -424.22275,
|
||||
"Y": 265.1,
|
||||
"Z": -206.5006
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
142
QuestPaths/2.x - A Realm Reborn/MSQ-2/74_First Blood.json
Normal file
142
QuestPaths/2.x - A Realm Reborn/MSQ-2/74_First Blood.json
Normal file
@ -0,0 +1,142 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -431.02658,
|
||||
"Y": 259.97607,
|
||||
"Z": -195.07794
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -424.12082,
|
||||
"Y": 265.1,
|
||||
"Z": -206.61
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -347.32645,
|
||||
"Y": 262.82175,
|
||||
"Z": 64.73429
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -480.23077,
|
||||
"Y": 296.2006,
|
||||
"Z": 146.4662
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -383.5987,
|
||||
"Y": 231.30257,
|
||||
"Z": 306.35776
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
724,
|
||||
725,
|
||||
726
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2005002,
|
||||
"Position": {
|
||||
"X": -381.7655,
|
||||
"Y": 230.82312,
|
||||
"Z": 303.57812
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -480.23077,
|
||||
"Y": 296.2006,
|
||||
"Z": 146.4662
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -347.32645,
|
||||
"Y": 262.82175,
|
||||
"Z": 64.73429
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -424.22275,
|
||||
"Y": 265.1,
|
||||
"Z": -206.5006
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,111 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -431.02658,
|
||||
"Y": 259.97607,
|
||||
"Z": -195.07794
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -424.12082,
|
||||
"Y": 265.1,
|
||||
"Z": -206.61
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1010001,
|
||||
"Position": {
|
||||
"X": -915.2514,
|
||||
"Y": 229.35544,
|
||||
"Z": -3.1586914
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009996,
|
||||
"Position": {
|
||||
"X": -902.61694,
|
||||
"Y": 229.25244,
|
||||
"Z": -9.689575
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010054,
|
||||
"Position": {
|
||||
"X": -916.6552,
|
||||
"Y": 229.3692,
|
||||
"Z": -6.4240723
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 27
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009996,
|
||||
"Position": {
|
||||
"X": -902.61694,
|
||||
"Y": 229.25244,
|
||||
"Z": -9.689575
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,171 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009996,
|
||||
"Position": {
|
||||
"X": -902.61694,
|
||||
"Y": 229.25244,
|
||||
"Z": -9.689575
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009997,
|
||||
"Position": {
|
||||
"X": -897.1847,
|
||||
"Y": 230.48358,
|
||||
"Z": -17.502136
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010148,
|
||||
"Position": {
|
||||
"X": -427.1153,
|
||||
"Y": 235.91968,
|
||||
"Z": -119.76807
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -347.32645,
|
||||
"Y": 262.82175,
|
||||
"Z": 64.73429
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -480.23077,
|
||||
"Y": 296.2006,
|
||||
"Z": 146.4662
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2004657,
|
||||
"Position": {
|
||||
"X": -395.31555,
|
||||
"Y": 239.61243,
|
||||
"Z": 343.83154
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010149,
|
||||
"Position": {
|
||||
"X": -302.05237,
|
||||
"Y": 233.08154,
|
||||
"Z": 406.05774
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -192.44443,
|
||||
"Y": 221.34477,
|
||||
"Z": 438.09082
|
||||
},
|
||||
"StopDistance": 0.5,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
726,
|
||||
3122
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010150,
|
||||
"Position": {
|
||||
"X": -190.11218,
|
||||
"Y": 221.13583,
|
||||
"Z": 438.83423
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010151,
|
||||
"Position": {
|
||||
"X": 158.73962,
|
||||
"Y": 222.43689,
|
||||
"Z": 302.96777
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010191,
|
||||
"Position": {
|
||||
"X": 229.44983,
|
||||
"Y": 222,
|
||||
"Z": 347.31055
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,118 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010191,
|
||||
"Position": {
|
||||
"X": 229.44983,
|
||||
"Y": 222,
|
||||
"Z": 347.31055
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010191,
|
||||
"Position": {
|
||||
"X": 229.44983,
|
||||
"Y": 222,
|
||||
"Z": 347.31055
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009130,
|
||||
"Position": {
|
||||
"X": -157.00012,
|
||||
"Y": 4,
|
||||
"Z": -20.187744
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Conjurers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000460,
|
||||
"Position": {
|
||||
"X": -159.41101,
|
||||
"Y": 4.054107,
|
||||
"Z": -4.1047363
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSE410_00078_Q1_000_1",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009130,
|
||||
"Position": {
|
||||
"X": -157.00012,
|
||||
"Y": 4,
|
||||
"Z": -20.187744
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -127.33281,
|
||||
"Y": 5.385648,
|
||||
"Z": -34.441406
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "WalkTo",
|
||||
"TargetTerritoryId": 132
|
||||
},
|
||||
{
|
||||
"DataId": 1010010,
|
||||
"Position": {
|
||||
"X": -50.94995,
|
||||
"Y": -3.440948,
|
||||
"Z": 20.58435
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
143
QuestPaths/2.x - A Realm Reborn/MSQ-2/82_A Simple Plan.json
Normal file
143
QuestPaths/2.x - A Realm Reborn/MSQ-2/82_A Simple Plan.json
Normal file
@ -0,0 +1,143 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010147,
|
||||
"Position": {
|
||||
"X": 0.8086548,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.67035
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -29.251587
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002879,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": 2.9754639,
|
||||
"Z": 27.481445
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 83.74144,
|
||||
"Y": 31.209013,
|
||||
"Z": -740.77594
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 2004661,
|
||||
"Position": {
|
||||
"X": 83.14636,
|
||||
"Y": 31.204712,
|
||||
"Z": -741.1765
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010039,
|
||||
"Position": {
|
||||
"X": 83.81775,
|
||||
"Y": 31.216015,
|
||||
"Z": -744.6555
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 30.917934,
|
||||
"Y": 20.495003,
|
||||
"Z": -656.1909
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"$": "Rising Stones Door"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010147,
|
||||
"Position": {
|
||||
"X": 0.8086548,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.67035
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,93 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009996,
|
||||
"Position": {
|
||||
"X": -902.61694,
|
||||
"Y": 229.25244,
|
||||
"Z": -9.689575
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009996,
|
||||
"Position": {
|
||||
"X": -902.61694,
|
||||
"Y": 229.25244,
|
||||
"Z": -9.689575
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010054,
|
||||
"Position": {
|
||||
"X": -916.6552,
|
||||
"Y": 229.3692,
|
||||
"Z": -6.4240723
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 79
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010042,
|
||||
"Position": {
|
||||
"X": -905.76025,
|
||||
"Y": 229.29816,
|
||||
"Z": -10.147278
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,96 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010042,
|
||||
"Position": {
|
||||
"X": -905.76025,
|
||||
"Y": 229.29816,
|
||||
"Z": -10.147278
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -430.21158,
|
||||
"Y": 265.1,
|
||||
"Z": -212.42732
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1009984,
|
||||
"Position": {
|
||||
"X": -431.1742,
|
||||
"Y": 233.47266,
|
||||
"Z": -201.00714
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 240.2761,
|
||||
"Y": 302.6276,
|
||||
"Z": -199.78418
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Camp Dragonhead, door to Haurchefant",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007603,
|
||||
"Position": {
|
||||
"X": 264.91187,
|
||||
"Y": 302.26236,
|
||||
"Z": -223.71259
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Mount": true,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSE416_00086_FORTEMPSGUARD00054_Q1_000_1",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
63
QuestPaths/2.x - A Realm Reborn/MSQ-2/87_Eyes Unclouded.json
Normal file
63
QuestPaths/2.x - A Realm Reborn/MSQ-2/87_Eyes Unclouded.json
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1009976,
|
||||
"Position": {
|
||||
"X": 261.58533,
|
||||
"Y": 302.19598,
|
||||
"Z": -223.10223
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,95 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002880,
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": -1,
|
||||
"Z": -29.25
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1010045,
|
||||
"Position": {
|
||||
"X": -1.9990234,
|
||||
"Y": 0,
|
||||
"Z": -7.1260376
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010533,
|
||||
"Position": {
|
||||
"X": 47.287598,
|
||||
"Y": 4,
|
||||
"Z": 453.97107
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Northern Thanalan - Camp Bluefog"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010046,
|
||||
"Position": {
|
||||
"X": -140.1236,
|
||||
"Y": 58.32732,
|
||||
"Z": -82.07831
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010063,
|
||||
"Position": {
|
||||
"X": -207.56854,
|
||||
"Y": 71.617355,
|
||||
"Z": -132.52466
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,63 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1010063,
|
||||
"Position": {
|
||||
"X": -207.56854,
|
||||
"Y": 71.617355,
|
||||
"Z": -132.52466
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"DataId": 2002881,
|
||||
"Position": {
|
||||
"X": 21.133728,
|
||||
"Y": 22.323914,
|
||||
"Z": -631.281
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351,
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002878,
|
||||
"Position": {
|
||||
"X": -0.015319824,
|
||||
"Y": -1.0223389,
|
||||
"Z": -26.779602
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 351
|
||||
},
|
||||
{
|
||||
"DataId": 1008969,
|
||||
"Position": {
|
||||
"X": 0.99176025,
|
||||
"Y": -1.9957249,
|
||||
"Z": -45.700806
|
||||
},
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -42,16 +42,6 @@
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -476.1802,
|
||||
"Y": 149.06573,
|
||||
"Z": -304.7811
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "Avoids part of the tail that is non-walkable"
|
||||
},
|
||||
{
|
||||
"DataId": 2002170,
|
||||
"Position": {
|
||||
@ -96,16 +86,6 @@
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -476.1802,
|
||||
"Y": 149.06573,
|
||||
"Z": -304.7811
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "Avoids part of the tail that is non-walkable"
|
||||
},
|
||||
{
|
||||
"DataId": 1006467,
|
||||
"Position": {
|
||||
|
@ -1,6 +1,9 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"TerritoryBlacklist": [
|
||||
1042
|
||||
],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -71,6 +74,7 @@
|
||||
"Y": -21.970922,
|
||||
"Z": 119.73743
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user