forked from liza/Questionable
Compare commits
No commits in common. "42ec4ed355283cfff3aaa8a27ad4645d0ed7f74a" and "74aedc949d8dbb59aa9f27f7fd7e3addacf2bf8e" have entirely different histories.
42ec4ed355
...
74aedc949d
@ -17,15 +17,15 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Json.More.Net" Version="2.0.1.2" GeneratePathProperty="true" />
|
<PackageReference Include="Json.More.Net" Version="2.0.1.2" GeneratePathProperty="true" />
|
||||||
<PackageReference Include="JsonPointer.Net" Version="5.0.2" GeneratePathProperty="true" />
|
<PackageReference Include="JsonPointer.Net" Version="5.0.0" GeneratePathProperty="true" />
|
||||||
<PackageReference Include="JsonSchema.Net" Version="7.1.2" GeneratePathProperty="true" />
|
<PackageReference Include="JsonSchema.Net" Version="7.0.4" GeneratePathProperty="true" />
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
|
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2"/>
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2"/>
|
||||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.9.2"/>
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.9.2"/>
|
||||||
<PackageReference Include="System.Text.Json" Version="8.0.4" PrivateAssets="all" />
|
<PackageReference Include="System.Text.Json" Version="8.0.3" PrivateAssets="all"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -65,7 +65,7 @@ public class QuestSourceGenerator : ISourceGenerator
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
var questNode = JsonNode.Parse(text.ToString());
|
var questNode = JsonNode.Parse(text.ToString());
|
||||||
var evaluationResult = questSchema.Evaluate(questNode, new EvaluationOptions
|
var evaluationResult = questSchema.Evaluate(questNode, new EvaluationOptions()
|
||||||
{
|
{
|
||||||
Culture = CultureInfo.InvariantCulture,
|
Culture = CultureInfo.InvariantCulture,
|
||||||
OutputFormat = OutputFormat.List
|
OutputFormat = OutputFormat.List
|
||||||
@ -79,9 +79,6 @@ public class QuestSourceGenerator : ISourceGenerator
|
|||||||
}
|
}
|
||||||
|
|
||||||
var quest = questNode.Deserialize<QuestRoot>()!;
|
var quest = questNode.Deserialize<QuestRoot>()!;
|
||||||
if (quest.Disabled)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
quests.Add((id, quest));
|
quests.Add((id, quest));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -222,7 +219,9 @@ public class QuestSourceGenerator : ISourceGenerator
|
|||||||
SyntaxKind.ObjectInitializerExpression,
|
SyntaxKind.ObjectInitializerExpression,
|
||||||
SeparatedList<ExpressionSyntax>(
|
SeparatedList<ExpressionSyntax>(
|
||||||
SyntaxNodeList(
|
SyntaxNodeList(
|
||||||
AssignmentList(nameof(QuestRoot.Author), quest.Author)
|
Assignment(nameof(QuestRoot.Author), quest.Author, null)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
AssignmentList(nameof(QuestRoot.Contributors), quest.Contributors)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestRoot.Comment), quest.Comment, null)
|
Assignment(nameof(QuestRoot.Comment), quest.Comment, null)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
@ -321,10 +320,6 @@ public class QuestSourceGenerator : ISourceGenerator
|
|||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestStep.Comment), step.Comment, emptyStep.Comment)
|
Assignment(nameof(QuestStep.Comment), step.Comment, emptyStep.Comment)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestStep.Aetheryte), step.Aetheryte, emptyStep.Aetheryte)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(QuestStep.AethernetShard), step.AethernetShard, emptyStep.AethernetShard)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(QuestStep.AetheryteShortcut), step.AetheryteShortcut,
|
Assignment(nameof(QuestStep.AetheryteShortcut), step.AetheryteShortcut,
|
||||||
emptyStep.AetheryteShortcut)
|
emptyStep.AetheryteShortcut)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
@ -368,7 +363,7 @@ public class QuestSourceGenerator : ISourceGenerator
|
|||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
AssignmentList(nameof(QuestStep.PointMenuChoices), step.PointMenuChoices)
|
AssignmentList(nameof(QuestStep.PointMenuChoices), step.PointMenuChoices)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestStep.PickUpQuestId), step.PickUpQuestId, emptyStep.PickUpQuestId)
|
Assignment(nameof(QuestStep.PickupQuestId), step.PickupQuestId, emptyStep.PickupQuestId)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(QuestStep.TurnInQuestId), step.TurnInQuestId, emptyStep.TurnInQuestId)
|
Assignment(nameof(QuestStep.TurnInQuestId), step.TurnInQuestId, emptyStep.TurnInQuestId)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
|
@ -173,8 +173,6 @@ public static class RoslynShortcuts
|
|||||||
SyntaxNodeList(
|
SyntaxNodeList(
|
||||||
Assignment(nameof(ComplexCombatData.DataId), complexCombatData.DataId, default(uint))
|
Assignment(nameof(ComplexCombatData.DataId), complexCombatData.DataId, default(uint))
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(ComplexCombatData.MinimumKillCount), complexCombatData.MinimumKillCount, null)
|
|
||||||
.AsSyntaxNodeOrToken(),
|
|
||||||
Assignment(nameof(ComplexCombatData.RewardItemId), complexCombatData.RewardItemId, null)
|
Assignment(nameof(ComplexCombatData.RewardItemId), complexCombatData.RewardItemId, null)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
Assignment(nameof(ComplexCombatData.RewardItemCount), complexCombatData.RewardItemCount, null)
|
Assignment(nameof(ComplexCombatData.RewardItemCount), complexCombatData.RewardItemCount, null)
|
||||||
|
@ -13,9 +13,9 @@
|
|||||||
},
|
},
|
||||||
"JsonPointer.Net": {
|
"JsonPointer.Net": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[5.0.2, )",
|
"requested": "[5.0.0, )",
|
||||||
"resolved": "5.0.2",
|
"resolved": "5.0.0",
|
||||||
"contentHash": "H/OtixKadr+ja1j7Fru3WG56V9zP0AKT1Bd0O7RWN/zH1bl8ZIwW9aCa4+xvzuVvt4SPmrvBu3G6NpAkNOwNAA==",
|
"contentHash": "fm4T5w20AY6C+p5/pJr0vrXRNGgtSfHl34I1LxC9zdPwS9S3j0GiR1Mz/CVPWKDXXGDpCt1APHpCq7kn5adCfA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Humanizer.Core": "2.14.1",
|
"Humanizer.Core": "2.14.1",
|
||||||
"Json.More.Net": "2.0.1.2"
|
"Json.More.Net": "2.0.1.2"
|
||||||
@ -23,9 +23,9 @@
|
|||||||
},
|
},
|
||||||
"JsonSchema.Net": {
|
"JsonSchema.Net": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[7.1.2, )",
|
"requested": "[7.0.4, )",
|
||||||
"resolved": "7.1.2",
|
"resolved": "7.0.4",
|
||||||
"contentHash": "tvM82Wpsyk+C5aUWkqPZLo2ANDjEfCoDa9R24k7jRkCrwxbXnSBb7NpU1pz0ufp6qw+jIekHD9xJdUkjUtnZxQ==",
|
"contentHash": "R0Hk2Tr/np4Q1NO8CBjyQsoiD1iFJyEQP20Sw7JnZCNGJoaSBe+g4b+nZqnBXPQhiqY5LGZ8JZwZkRh/eKZhEQ==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"JsonPointer.Net": "5.0.0"
|
"JsonPointer.Net": "5.0.0"
|
||||||
}
|
}
|
||||||
@ -68,9 +68,9 @@
|
|||||||
},
|
},
|
||||||
"System.Text.Json": {
|
"System.Text.Json": {
|
||||||
"type": "Direct",
|
"type": "Direct",
|
||||||
"requested": "[8.0.4, )",
|
"requested": "[8.0.3, )",
|
||||||
"resolved": "8.0.4",
|
"resolved": "8.0.3",
|
||||||
"contentHash": "bAkhgDJ88XTsqczoxEMliSrpijKZHhbJQldhAmObj/RbrN3sU5dcokuXmWJWsdQAhiMJ9bTayWsL1C9fbbCRhw==",
|
"contentHash": "hpagS9joOwv6efWfrMmV9MjQXpiXZH72PgN067Ysfr6AWMSD1/1hEcvh/U5mUpPLezEWsOJSuVrmqDIVD958iA==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Bcl.AsyncInterfaces": "8.0.0",
|
"Microsoft.Bcl.AsyncInterfaces": "8.0.0",
|
||||||
"System.Buffers": "4.5.1",
|
"System.Buffers": "4.5.1",
|
||||||
@ -264,7 +264,7 @@
|
|||||||
"questionable.model": {
|
"questionable.model": {
|
||||||
"type": "Project",
|
"type": "Project",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"System.Text.Json": "[8.0.4, )"
|
"System.Text.Json": "[8.0.3, )"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
root = true
|
|
||||||
|
|
||||||
[*.json]
|
|
||||||
indent_size = 2
|
|
||||||
indent_style = space
|
|
||||||
insert_final_newline = true
|
|
@ -1,30 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -336.41187,
|
|
||||||
"Y": 12.899764,
|
|
||||||
"Z": 3.5517142
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000895,
|
|
||||||
"Position": {
|
|
||||||
"X": -335.74432,
|
|
||||||
"Y": 12.899764,
|
|
||||||
"Z": 1.3884888
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,83 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000927,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.2055054,
|
|
||||||
"Y": 44.999886,
|
|
||||||
"Z": -255.8786
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006761,
|
|
||||||
"Position": {
|
|
||||||
"X": 520.2562,
|
|
||||||
"Y": 17.62488,
|
|
||||||
"Z": 470.51184
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006763,
|
|
||||||
"Position": {
|
|
||||||
"X": 494.9568,
|
|
||||||
"Y": 11.450662,
|
|
||||||
"Z": 329.76257
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "SinglePlayerDuty"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006762,
|
|
||||||
"Position": {
|
|
||||||
"X": 494.16345,
|
|
||||||
"Y": 12.305895,
|
|
||||||
"Z": 337.27014
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006746,
|
|
||||||
"Position": {
|
|
||||||
"X": 460.65454,
|
|
||||||
"Y": 8.309061,
|
|
||||||
"Z": 74.47925
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"NextQuestId": 1050
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,123 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "EquipItem",
|
|
||||||
"ItemId": 4544
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006746,
|
|
||||||
"Position": {
|
|
||||||
"X": 460.65454,
|
|
||||||
"Y": 8.309061,
|
|
||||||
"Z": 74.47925
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1004962,
|
|
||||||
"Position": {
|
|
||||||
"X": -300.1908,
|
|
||||||
"Y": 7.2785034,
|
|
||||||
"Z": 410.94055
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006735,
|
|
||||||
"Position": {
|
|
||||||
"X": -316.1822,
|
|
||||||
"Y": 8.844355,
|
|
||||||
"Z": 433.82922
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006288,
|
|
||||||
"Position": {
|
|
||||||
"X": -361.40997,
|
|
||||||
"Y": 8.46532,
|
|
||||||
"Z": 426.13855
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 156.89783,
|
|
||||||
"Y": 4.3410587,
|
|
||||||
"Z": 831.42926
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1917
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,198 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000927,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.2055054,
|
|
||||||
"Y": 44.999886,
|
|
||||||
"Z": -255.8786
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002682,
|
|
||||||
"Position": {
|
|
||||||
"X": -86.930725,
|
|
||||||
"Y": 40.999992,
|
|
||||||
"Z": -153.91785
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Marauders' Guild",
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002112,
|
|
||||||
"Position": {
|
|
||||||
"X": 561.6693,
|
|
||||||
"Y": 89.783,
|
|
||||||
"Z": -81.52899
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002683,
|
|
||||||
"Position": {
|
|
||||||
"X": 559.6245,
|
|
||||||
"Y": 89.783,
|
|
||||||
"Z": -80.1557
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002113,
|
|
||||||
"Position": {
|
|
||||||
"X": 312.45886,
|
|
||||||
"Y": -24.483091,
|
|
||||||
"Z": 212.84802
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2000289,
|
|
||||||
"Position": {
|
|
||||||
"X": 348.34814,
|
|
||||||
"Y": -18.60083,
|
|
||||||
"Z": 168.3833
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 297.38306,
|
|
||||||
"Y": -14.2977295,
|
|
||||||
"Z": 148.85168
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2000290,
|
|
||||||
"Position": {
|
|
||||||
"X": 297.38306,
|
|
||||||
"Y": -14.2977295,
|
|
||||||
"Z": 148.85168
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
],
|
|
||||||
"DelaySecondsAtStart": 5
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002684,
|
|
||||||
"Position": {
|
|
||||||
"X": 299.1836,
|
|
||||||
"Y": 0.7139131,
|
|
||||||
"Z": 86.10657
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "SinglePlayerDuty"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002112,
|
|
||||||
"Position": {
|
|
||||||
"X": 561.6693,
|
|
||||||
"Y": 89.783,
|
|
||||||
"Z": -81.52899
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000927,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.2055054,
|
|
||||||
"Y": 44.999886,
|
|
||||||
"Z": -255.8786
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Marauders' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 318
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,78 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000927,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.2055054,
|
|
||||||
"Y": 44.999886,
|
|
||||||
"Z": -255.8786
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002682,
|
|
||||||
"Position": {
|
|
||||||
"X": -86.930725,
|
|
||||||
"Y": 40.999992,
|
|
||||||
"Z": -153.91785
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Marauders' Guild",
|
|
||||||
"[Limsa Lominsa] Culinarians' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002685,
|
|
||||||
"Position": {
|
|
||||||
"X": -235.33997,
|
|
||||||
"Y": -0.28636882,
|
|
||||||
"Z": 675.349
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000927,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.2055054,
|
|
||||||
"Y": 44.999886,
|
|
||||||
"Z": -255.8786
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Marauders' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 319
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,237 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "liza",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000927,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.2055054,
|
|
||||||
"Y": 44.999886,
|
|
||||||
"Z": -255.8786
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002115,
|
|
||||||
"Position": {
|
|
||||||
"X": 562.3406,
|
|
||||||
"Y": 89.86035,
|
|
||||||
"Z": -80.216736
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Marauders' Guild",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
],
|
|
||||||
"Fly": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002713,
|
|
||||||
"Position": {
|
|
||||||
"X": 554.4059,
|
|
||||||
"Y": 89.783,
|
|
||||||
"Z": -67.979004
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002686,
|
|
||||||
"Position": {
|
|
||||||
"X": 554.2838,
|
|
||||||
"Y": 89.78309,
|
|
||||||
"Z": -72.43463
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2000296,
|
|
||||||
"Position": {
|
|
||||||
"X": 565.1482,
|
|
||||||
"Y": 66.666626,
|
|
||||||
"Z": -215.2591
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2000297,
|
|
||||||
"Position": {
|
|
||||||
"X": 590.8141,
|
|
||||||
"Y": 72.40405,
|
|
||||||
"Z": -272.08368
|
|
||||||
},
|
|
||||||
"StopDistance": 1,
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"Mount": false
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 565.94104,
|
|
||||||
"Y": 85.81174,
|
|
||||||
"Z": -322.61465
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Mount": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2000298,
|
|
||||||
"Position": {
|
|
||||||
"X": 566.8268,
|
|
||||||
"Y": 85.52673,
|
|
||||||
"Z": -320.82092
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 6,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2000299,
|
|
||||||
"Position": {
|
|
||||||
"X": 574.0901,
|
|
||||||
"Y": 90.440186,
|
|
||||||
"Z": -429.06842
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"Mount": false
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 7,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002689,
|
|
||||||
"Position": {
|
|
||||||
"X": 569.6345,
|
|
||||||
"Y": 86.253204,
|
|
||||||
"Z": -363.94293
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002714,
|
|
||||||
"Position": {
|
|
||||||
"X": 572.5946,
|
|
||||||
"Y": 86.366455,
|
|
||||||
"Z": -365.3468
|
|
||||||
},
|
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1002715,
|
|
||||||
"Position": {
|
|
||||||
"X": 566.4302,
|
|
||||||
"Y": 86.2767,
|
|
||||||
"Z": -364.95007
|
|
||||||
},
|
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000927,
|
|
||||||
"Position": {
|
|
||||||
"X": -1.2055054,
|
|
||||||
"Y": 44.999886,
|
|
||||||
"Z": -255.8786
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Marauders' Guild"
|
|
||||||
],
|
|
||||||
"NextQuestId": 1049
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -31,9 +31,15 @@
|
|||||||
"$": "New Gridania Navmesh workaround"
|
"$": "New Gridania Navmesh workaround"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 2,
|
||||||
|
"Position": {
|
||||||
|
"X": 32.913696,
|
||||||
|
"Y": 2.670288,
|
||||||
|
"Z": 30.014404
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Gridania",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
"CompletionQuestVariablesFlags": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
@ -44,9 +50,15 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 25,
|
||||||
|
"Position": {
|
||||||
|
"X": 166.58276,
|
||||||
|
"Y": -1.7243042,
|
||||||
|
"Z": 86.13721
|
||||||
|
},
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Archers' Guild"
|
"Comment": "Archers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000197,
|
"DataId": 1000197,
|
||||||
@ -98,23 +110,41 @@
|
|||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 26,
|
||||||
|
"Position": {
|
||||||
|
"X": 101.27405,
|
||||||
|
"Y": 9.018005,
|
||||||
|
"Z": -111.31464
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
|
"Comment": "Leatherworkers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 27,
|
||||||
|
"Position": {
|
||||||
|
"X": 121.23291,
|
||||||
|
"Y": 12.649658,
|
||||||
|
"Z": -229.63306
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Lancers' Guild"
|
"Comment": "Lancers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 30,
|
||||||
|
"Position": {
|
||||||
|
"X": -73.92999,
|
||||||
|
"Y": 7.9804688,
|
||||||
|
"Z": -140.15417
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Lancers' Guild",
|
"[Gridania] Lancers' Guild",
|
||||||
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||||
]
|
],
|
||||||
|
"Comment": "Mih Khetto's Amphitheatre"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -126,18 +156,30 @@
|
|||||||
"InteractionType": "WalkTo"
|
"InteractionType": "WalkTo"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 29,
|
||||||
|
"Position": {
|
||||||
|
"X": -311.0857,
|
||||||
|
"Y": 7.94989,
|
||||||
|
"Z": -177.05048
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Botanists' Guild"
|
"Comment": "Botanists' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 28,
|
||||||
|
"Position": {
|
||||||
|
"X": -145.15906,
|
||||||
|
"Y": 4.9591064,
|
||||||
|
"Z": -11.7647705
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Conjurers' Guild",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Botanists' Guild",
|
"[Gridania] Botanists' Guild",
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
"[Gridania] Mih Khetto's Amphitheatre"
|
||||||
]
|
],
|
||||||
|
"Comment": "Conjurers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000100,
|
"DataId": 1000100,
|
||||||
|
@ -31,9 +31,15 @@
|
|||||||
"$": "New Gridania Navmesh workaround"
|
"$": "New Gridania Navmesh workaround"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 2,
|
||||||
|
"Position": {
|
||||||
|
"X": 32.913696,
|
||||||
|
"Y": 2.670288,
|
||||||
|
"Z": 30.014404
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Gridania",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
"CompletionQuestVariablesFlags": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
@ -44,9 +50,15 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 25,
|
||||||
|
"Position": {
|
||||||
|
"X": 166.58276,
|
||||||
|
"Y": -1.7243042,
|
||||||
|
"Z": 86.13721
|
||||||
|
},
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Archers' Guild"
|
"Comment": "Archers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -71,23 +83,41 @@
|
|||||||
"$": "If done after aetheryte: 33 1 0 0 0 128"
|
"$": "If done after aetheryte: 33 1 0 0 0 128"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 26,
|
||||||
|
"Position": {
|
||||||
|
"X": 101.27405,
|
||||||
|
"Y": 9.018005,
|
||||||
|
"Z": -111.31464
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
|
"Comment": "Leatherworkers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 27,
|
||||||
|
"Position": {
|
||||||
|
"X": 121.23291,
|
||||||
|
"Y": 12.649658,
|
||||||
|
"Z": -229.63306
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Lancers' Guild"
|
"Comment": "Lancers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 30,
|
||||||
|
"Position": {
|
||||||
|
"X": -73.92999,
|
||||||
|
"Y": 7.9804688,
|
||||||
|
"Z": -140.15417
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Lancers' Guild",
|
"[Gridania] Lancers' Guild",
|
||||||
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||||
]
|
],
|
||||||
|
"Comment": "Mih Khetto's Amphitheatre"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -99,18 +129,30 @@
|
|||||||
"InteractionType": "WalkTo"
|
"InteractionType": "WalkTo"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 29,
|
||||||
|
"Position": {
|
||||||
|
"X": -311.0857,
|
||||||
|
"Y": 7.94989,
|
||||||
|
"Z": -177.05048
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Botanists' Guild"
|
"Comment": "Botanists' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 28,
|
||||||
|
"Position": {
|
||||||
|
"X": -145.15906,
|
||||||
|
"Y": 4.9591064,
|
||||||
|
"Z": -11.7647705
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Conjurers' Guild",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Botanists' Guild",
|
"[Gridania] Botanists' Guild",
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
"[Gridania] Mih Khetto's Amphitheatre"
|
||||||
]
|
],
|
||||||
|
"Comment": "Conjurers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000323,
|
"DataId": 1000323,
|
||||||
|
@ -21,9 +21,15 @@
|
|||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 3,
|
||||||
|
"Position": {
|
||||||
|
"X": 13.076904,
|
||||||
|
"Y": 0.56451416,
|
||||||
|
"Z": 35.90442
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 148,
|
"TerritoryId": 148,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Central Shroud - Bentbranch Meadows",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Aetheryte Plaza",
|
"[Gridania] Aetheryte Plaza",
|
||||||
"[Gridania] Blue Badger Gate (Central Shroud)"
|
"[Gridania] Blue Badger Gate (Central Shroud)"
|
||||||
|
@ -25,6 +25,16 @@
|
|||||||
"InteractionType": "EquipItem",
|
"InteractionType": "EquipItem",
|
||||||
"ItemId": 2651
|
"ItemId": 2651
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"Position": {
|
||||||
|
"X": 49.65071,
|
||||||
|
"Y": -8.046952,
|
||||||
|
"Z": 102.32186
|
||||||
|
},
|
||||||
|
"TerritoryId": 132,
|
||||||
|
"InteractionType": "WalkTo",
|
||||||
|
"$": "New Gridania Navmesh workaround"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000286,
|
"DataId": 1000286,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -162,24 +162,48 @@
|
|||||||
"Sequence": 6,
|
"Sequence": 6,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 8,
|
||||||
|
"Position": {
|
||||||
|
"X": -84.00108,
|
||||||
|
"Y": 20.77683,
|
||||||
|
"Z": 0.03414845
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Limsa Lominsa"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 49,
|
||||||
|
"Position": {
|
||||||
|
"X": -213.61108,
|
||||||
|
"Y": 16.739136,
|
||||||
|
"Z": 51.80432
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
|
"Comment": "Hawkers' Alley"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 43,
|
||||||
|
"Position": {
|
||||||
|
"X": -335.1645,
|
||||||
|
"Y": 12.619202,
|
||||||
|
"Z": 56.381958
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
|
"Comment": "Arcanists' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 44,
|
||||||
|
"Position": {
|
||||||
|
"X": -179.40033,
|
||||||
|
"Y": 4.8065186,
|
||||||
|
"Z": 182.97095
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
|
"Comment": "Fishermens' Guild",
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Limsa Lominsa] Arcanists' Guild",
|
"[Limsa Lominsa] Arcanists' Guild",
|
||||||
"[Limsa Lominsa] Hawkers' Alley"
|
"[Limsa Lominsa] Hawkers' Alley"
|
||||||
@ -201,19 +225,37 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 42,
|
||||||
|
"Position": {
|
||||||
|
"X": -56.50421,
|
||||||
|
"Y": 44.47998,
|
||||||
|
"Z": -131.45648
|
||||||
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
|
"Comment": "Culinarians' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 48,
|
||||||
|
"Position": {
|
||||||
|
"X": -5.1728516,
|
||||||
|
"Y": 44.63257,
|
||||||
|
"Z": -218.06671
|
||||||
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
|
"Comment": "Marauders' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 41,
|
||||||
|
"Position": {
|
||||||
|
"X": 16.067688,
|
||||||
|
"Y": 40.787354,
|
||||||
|
"Z": 68.80286
|
||||||
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] The Aftcastle"
|
"Comment": "Aftcastle"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1002695,
|
"DataId": 1002695,
|
||||||
@ -316,9 +358,14 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 51,
|
||||||
|
"Position": {
|
||||||
|
"X": 6.6376343,
|
||||||
|
"Y": 30.655273,
|
||||||
|
"Z": -24.826477
|
||||||
|
},
|
||||||
"TerritoryId": 131,
|
"TerritoryId": 131,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard"
|
||||||
"AethernetShard": "[Ul'dah] The Chamber of Rule"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1001821,
|
"DataId": 1001821,
|
||||||
|
@ -31,9 +31,15 @@
|
|||||||
"$": "New Gridania Navmesh workaround"
|
"$": "New Gridania Navmesh workaround"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 2,
|
||||||
|
"Position": {
|
||||||
|
"X": 32.913696,
|
||||||
|
"Y": 2.670288,
|
||||||
|
"Z": 30.014404
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Gridania",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
"CompletionQuestVariablesFlags": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
@ -44,9 +50,15 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 25,
|
||||||
|
"Position": {
|
||||||
|
"X": 166.58276,
|
||||||
|
"Y": -1.7243042,
|
||||||
|
"Z": 86.13721
|
||||||
|
},
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Archers' Guild"
|
"Comment": "Archers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -71,14 +83,26 @@
|
|||||||
"$": "If done after aetheryte: 33 1 0 0 0 128"
|
"$": "If done after aetheryte: 33 1 0 0 0 128"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 26,
|
||||||
|
"Position": {
|
||||||
|
"X": 101.27405,
|
||||||
|
"Y": 9.018005,
|
||||||
|
"Z": -111.31464
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
|
"Comment": "Leatherworkers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 27,
|
||||||
|
"Position": {
|
||||||
|
"X": 121.23291,
|
||||||
|
"Y": 12.649658,
|
||||||
|
"Z": -229.63306
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Lancers' Guild"
|
"Comment": "Lancers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000251,
|
"DataId": 1000251,
|
||||||
@ -108,13 +132,19 @@
|
|||||||
"Comment": "Pick up Class Quest"
|
"Comment": "Pick up Class Quest"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 30,
|
||||||
|
"Position": {
|
||||||
|
"X": -73.92999,
|
||||||
|
"Y": 7.9804688,
|
||||||
|
"Z": -140.15417
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Lancers' Guild",
|
"[Gridania] Lancers' Guild",
|
||||||
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||||
]
|
],
|
||||||
|
"Comment": "Mih Khetto's Amphitheatre"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -126,20 +156,38 @@
|
|||||||
"InteractionType": "WalkTo"
|
"InteractionType": "WalkTo"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 29,
|
||||||
|
"Position": {
|
||||||
|
"X": -311.0857,
|
||||||
|
"Y": 7.94989,
|
||||||
|
"Z": -177.05048
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Botanists' Guild"
|
"Comment": "Botanists' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 28,
|
||||||
|
"Position": {
|
||||||
|
"X": -145.15906,
|
||||||
|
"Y": 4.9591064,
|
||||||
|
"Z": -11.7647705
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Conjurers' Guild",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Botanists' Guild",
|
"[Gridania] Botanists' Guild",
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
"[Gridania] Mih Khetto's Amphitheatre"
|
||||||
]
|
],
|
||||||
|
"Comment": "Conjurers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 1000100,
|
||||||
|
"Position": {
|
||||||
|
"X": 23.819275,
|
||||||
|
"Y": -8,
|
||||||
|
"Z": 115.92273
|
||||||
|
},
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "CompleteQuest",
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
|
@ -127,9 +127,15 @@
|
|||||||
"Comment": "Quest Turn-In (Making a Name)"
|
"Comment": "Quest Turn-In (Making a Name)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 8,
|
||||||
|
"Position": {
|
||||||
|
"X": -84.031494,
|
||||||
|
"Y": 20.767456,
|
||||||
|
"Z": 0.015197754
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Limsa Lominsa",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
"CompletionQuestVariablesFlags": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
@ -158,19 +164,37 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 49,
|
||||||
|
"Position": {
|
||||||
|
"X": -213.61108,
|
||||||
|
"Y": 16.739136,
|
||||||
|
"Z": 51.80432
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
|
"Comment": "Hawkers' Alley"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 43,
|
||||||
|
"Position": {
|
||||||
|
"X": -335.1645,
|
||||||
|
"Y": 12.619202,
|
||||||
|
"Z": 56.381958
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
|
"Comment": "Arcanists' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 44,
|
||||||
|
"Position": {
|
||||||
|
"X": -179.40033,
|
||||||
|
"Y": 4.8065186,
|
||||||
|
"Z": 182.97095
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
|
"Comment": "Fishermens' Guild",
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Limsa Lominsa] Arcanists' Guild",
|
"[Limsa Lominsa] Arcanists' Guild",
|
||||||
"[Limsa Lominsa] Hawkers' Alley"
|
"[Limsa Lominsa] Hawkers' Alley"
|
||||||
@ -192,14 +216,26 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 42,
|
||||||
|
"Position": {
|
||||||
|
"X": -56.50421,
|
||||||
|
"Y": 44.47998,
|
||||||
|
"Z": -131.45648
|
||||||
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
|
"Comment": "Culinarians' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 48,
|
||||||
|
"Position": {
|
||||||
|
"X": -5.1728516,
|
||||||
|
"Y": 44.63257,
|
||||||
|
"Z": -218.06671
|
||||||
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
|
"Comment": "Marauders' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000926,
|
"DataId": 1000926,
|
||||||
|
@ -127,9 +127,15 @@
|
|||||||
"Comment": "Quest Turn-In (Making a Name)"
|
"Comment": "Quest Turn-In (Making a Name)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 8,
|
||||||
|
"Position": {
|
||||||
|
"X": -84.031494,
|
||||||
|
"Y": 20.767456,
|
||||||
|
"Z": 0.015197754
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Gridania",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
"CompletionQuestVariablesFlags": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
@ -158,14 +164,26 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 49,
|
||||||
|
"Position": {
|
||||||
|
"X": -213.61108,
|
||||||
|
"Y": 16.739136,
|
||||||
|
"Z": 51.80432
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
|
"Comment": "Hawkers' Alley"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 43,
|
||||||
|
"Position": {
|
||||||
|
"X": -335.1645,
|
||||||
|
"Y": 12.619202,
|
||||||
|
"Z": 56.381958
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
|
"Comment": "Arcanists' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000895,
|
"DataId": 1000895,
|
||||||
@ -203,9 +221,15 @@
|
|||||||
"Comment": "Pick up Class Quest"
|
"Comment": "Pick up Class Quest"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 44,
|
||||||
|
"Position": {
|
||||||
|
"X": -179.40033,
|
||||||
|
"Y": 4.8065186,
|
||||||
|
"Z": 182.97095
|
||||||
|
},
|
||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
|
"Comment": "Fishermens' Guild",
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Limsa Lominsa] Arcanists' Guild",
|
"[Limsa Lominsa] Arcanists' Guild",
|
||||||
"[Limsa Lominsa] Hawkers' Alley"
|
"[Limsa Lominsa] Hawkers' Alley"
|
||||||
@ -227,14 +251,26 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 42,
|
||||||
|
"Position": {
|
||||||
|
"X": -56.50421,
|
||||||
|
"Y": 44.47998,
|
||||||
|
"Z": -131.45648
|
||||||
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
|
"Comment": "Culinarians' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 48,
|
||||||
|
"Position": {
|
||||||
|
"X": -5.1728516,
|
||||||
|
"Y": 44.63257,
|
||||||
|
"Z": -218.06671
|
||||||
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
|
"Comment": "Marauders' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000972,
|
"DataId": 1000972,
|
||||||
|
@ -47,9 +47,15 @@
|
|||||||
"TargetTerritoryId": 138
|
"TargetTerritoryId": 138
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 13,
|
||||||
|
"Position": {
|
||||||
|
"X": 651.5449,
|
||||||
|
"Y": 11.734131,
|
||||||
|
"Z": 513.35913
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 138,
|
"TerritoryId": 138,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Western La Noscea - Swiftperch"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -31,9 +31,15 @@
|
|||||||
"TargetTerritoryId": 135
|
"TargetTerritoryId": 135
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 10,
|
||||||
|
"Position": {
|
||||||
|
"X": 156.11499,
|
||||||
|
"Y": 15.518433,
|
||||||
|
"Z": 673.21277
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 135,
|
"TerritoryId": 135,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Lower La Noscea - Moraby Drydocks"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1002238,
|
"DataId": 1002238,
|
||||||
|
@ -21,14 +21,25 @@
|
|||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 41,
|
||||||
|
"Position": {
|
||||||
|
"X": 16.067688,
|
||||||
|
"Y": 40.787354,
|
||||||
|
"Z": 68.80286
|
||||||
|
},
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard"
|
||||||
"AethernetShard": "[Limsa Lominsa] The Aftcastle"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 52,
|
||||||
|
"Position": {
|
||||||
|
"X": 227.98499,
|
||||||
|
"Y": 115.526,
|
||||||
|
"Z": -257.0382
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 134,
|
"TerritoryId": 134,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Middle La Noscea - Summerford Farms",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Limsa Lominsa] The Aftcastle",
|
"[Limsa Lominsa] The Aftcastle",
|
||||||
"[Limsa Lominsa] Zephyr Gate (Middle La Noscea)"
|
"[Limsa Lominsa] Zephyr Gate (Middle La Noscea)"
|
||||||
|
@ -162,14 +162,26 @@
|
|||||||
"Sequence": 5,
|
"Sequence": 5,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 2,
|
||||||
|
"Position": {
|
||||||
|
"X": 32.913696,
|
||||||
|
"Y": 2.670288,
|
||||||
|
"Z": 30.014404
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Gridania"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 25,
|
||||||
|
"Position": {
|
||||||
|
"X": 166.58276,
|
||||||
|
"Y": -1.7243042,
|
||||||
|
"Z": 86.13721
|
||||||
|
},
|
||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Archers' Guild"
|
"Comment": "Archers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -186,23 +198,41 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 26,
|
||||||
|
"Position": {
|
||||||
|
"X": 101.27405,
|
||||||
|
"Y": 9.018005,
|
||||||
|
"Z": -111.31464
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
|
"Comment": "Leatherworkers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 27,
|
||||||
|
"Position": {
|
||||||
|
"X": 121.23291,
|
||||||
|
"Y": 12.649658,
|
||||||
|
"Z": -229.63306
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Lancers' Guild"
|
"Comment": "Lancers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 30,
|
||||||
|
"Position": {
|
||||||
|
"X": -73.92999,
|
||||||
|
"Y": 7.9804688,
|
||||||
|
"Z": -140.15417
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Lancers' Guild",
|
"[Gridania] Lancers' Guild",
|
||||||
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
"[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||||
]
|
],
|
||||||
|
"Comment": "Mih Khetto's Amphitheatre"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -214,18 +244,30 @@
|
|||||||
"InteractionType": "WalkTo"
|
"InteractionType": "WalkTo"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 29,
|
||||||
|
"Position": {
|
||||||
|
"X": -311.0857,
|
||||||
|
"Y": 7.94989,
|
||||||
|
"Z": -177.05048
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Botanists' Guild"
|
"Comment": "Botanists' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 28,
|
||||||
|
"Position": {
|
||||||
|
"X": -145.15906,
|
||||||
|
"Y": 4.9591064,
|
||||||
|
"Z": -11.7647705
|
||||||
|
},
|
||||||
"TerritoryId": 133,
|
"TerritoryId": 133,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Gridania] Conjurers' Guild",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Botanists' Guild",
|
"[Gridania] Botanists' Guild",
|
||||||
"[Gridania] Mih Khetto's Amphitheatre"
|
"[Gridania] Mih Khetto's Amphitheatre"
|
||||||
]
|
],
|
||||||
|
"Comment": "Conjurers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000460,
|
"DataId": 1000460,
|
||||||
@ -343,9 +385,14 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 51,
|
||||||
|
"Position": {
|
||||||
|
"X": 6.6376343,
|
||||||
|
"Y": 30.655273,
|
||||||
|
"Z": -24.826477
|
||||||
|
},
|
||||||
"TerritoryId": 131,
|
"TerritoryId": 131,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard"
|
||||||
"AethernetShard": "[Ul'dah] The Chamber of Rule"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1001821,
|
"DataId": 1001821,
|
||||||
|
@ -22,9 +22,15 @@
|
|||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 37,
|
||||||
|
"Position": {
|
||||||
|
"X": -98.22869,
|
||||||
|
"Y": 42.37336,
|
||||||
|
"Z": 88.46719
|
||||||
|
},
|
||||||
"TerritoryId": 131,
|
"TerritoryId": 131,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Ul'dah] Alchemists' Guild"
|
"Comment": "Alchemists' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -48,29 +54,59 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 35,
|
||||||
|
"Position": {
|
||||||
|
"X": -53.8269,
|
||||||
|
"Y": 10.72502,
|
||||||
|
"Z": 12.24082
|
||||||
|
},
|
||||||
"TerritoryId": 131,
|
"TerritoryId": 131,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Ul'dah] Gladiators' Guild"
|
"Comment": "Gladiators' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 50,
|
||||||
|
"Position": {
|
||||||
|
"X": -19.31449,
|
||||||
|
"Y": 14.63075,
|
||||||
|
"Z": 72.0533
|
||||||
|
},
|
||||||
"TerritoryId": 131,
|
"TerritoryId": 131,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Ul'dah] Goldsmiths' Guild"
|
"Comment": "Goldsmiths' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 36,
|
||||||
|
"Position": {
|
||||||
|
"X": 33.52188,
|
||||||
|
"Y": 13.23228,
|
||||||
|
"Z": 113.2191
|
||||||
|
},
|
||||||
"TerritoryId": 131,
|
"TerritoryId": 131,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Ul'dah] Miners' Guild"
|
"Comment": "Miners' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 47,
|
||||||
|
"Position": {
|
||||||
|
"X": 89.67633,
|
||||||
|
"Y": 12.93493,
|
||||||
|
"Z": 58.2767
|
||||||
|
},
|
||||||
"TerritoryId": 131,
|
"TerritoryId": 131,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Ul'dah] Weavers' Guild"
|
"Comment": "Weavers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 125,
|
||||||
|
"Position": {
|
||||||
|
"X": 131.9447,
|
||||||
|
"Y": 4.714966,
|
||||||
|
"Z": -29.800903
|
||||||
|
},
|
||||||
"TerritoryId": 131,
|
"TerritoryId": 131,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Ul'dah] Sapphire Avenue Exchange"
|
"Comment": "Sapphire Avenue Exchange"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -83,19 +119,36 @@
|
|||||||
"TargetTerritoryId": 130
|
"TargetTerritoryId": 130
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 33,
|
||||||
|
"Position": {
|
||||||
|
"X": 64.22522,
|
||||||
|
"Y": 4.5318604,
|
||||||
|
"Z": -115.31244
|
||||||
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard",
|
||||||
"AethernetShard": "[Ul'dah] Adventurers' Guild"
|
"Comment": "Adventurers' Guild"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 9,
|
||||||
|
"Position": {
|
||||||
|
"X": -144.51825,
|
||||||
|
"Y": -1.3580933,
|
||||||
|
"Z": -169.6651
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Ul'dah"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 34,
|
||||||
|
"Position": {
|
||||||
|
"X": -154.83331,
|
||||||
|
"Y": 14.633362,
|
||||||
|
"Z": 73.07532
|
||||||
|
},
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AttuneAethernetShard",
|
"InteractionType": "AttuneAethernetShard"
|
||||||
"AethernetShard": "[Ul'dah] Thaumaturges' Guild"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1000972,
|
"DataId": 1000972,
|
||||||
|
@ -88,9 +88,15 @@
|
|||||||
"TargetTerritoryId": 138
|
"TargetTerritoryId": 138
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 14,
|
||||||
|
"Position": {
|
||||||
|
"X": 260.94446,
|
||||||
|
"Y": -19.60791,
|
||||||
|
"Z": 218.52441
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 138,
|
"TerritoryId": 138,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Western La Noscea - Aleport"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1017075,
|
"DataId": 1017075,
|
||||||
|
@ -71,8 +71,7 @@
|
|||||||
"Z": -380.82272
|
"Z": -380.82272
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo"
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
|
@ -110,8 +110,7 @@
|
|||||||
"Z": -380.82272
|
"Z": -380.82272
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo"
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
|
@ -44,9 +44,15 @@
|
|||||||
"Sequence": 255,
|
"Sequence": 255,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 53,
|
||||||
|
"Position": {
|
||||||
|
"X": -16.159302,
|
||||||
|
"Y": 0.32037354,
|
||||||
|
"Z": -166.58276
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 141,
|
"TerritoryId": 141,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Central Thanalan - Black Brush Station",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
"AetheryteShortcut": "Ul'dah",
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Ul'dah] Aetheryte Plaza",
|
"[Ul'dah] Aetheryte Plaza",
|
||||||
@ -74,9 +80,15 @@
|
|||||||
"$": "Camp Drybone Lantern"
|
"$": "Camp Drybone Lantern"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 18,
|
||||||
|
"Position": {
|
||||||
|
"X": -386.3432,
|
||||||
|
"Y": -57.1756,
|
||||||
|
"Z": 142.59558
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Eastern Thanalan - Camp Drybone"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1003929,
|
"DataId": 1003929,
|
||||||
|
@ -149,8 +149,7 @@
|
|||||||
"Z": -380.82272
|
"Z": -380.82272
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo"
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
|
@ -193,8 +193,7 @@
|
|||||||
"Z": -380.82272
|
"Z": -380.82272
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo"
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
|
@ -40,9 +40,15 @@
|
|||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 17,
|
||||||
|
"Position": {
|
||||||
|
"X": 68.0094,
|
||||||
|
"Y": 48.203125,
|
||||||
|
"Z": -227.039
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Western Thanalan - Horizon",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Ul'dah] Adventurers' Guild",
|
"[Ul'dah] Adventurers' Guild",
|
||||||
"[Ul'dah] Gate of the Sultana (Western Thanalan)"
|
"[Ul'dah] Gate of the Sultana (Western Thanalan)"
|
||||||
|
@ -34,9 +34,15 @@
|
|||||||
"$": "New Gridania Navmesh workaround"
|
"$": "New Gridania Navmesh workaround"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 3,
|
||||||
|
"Position": {
|
||||||
|
"X": 13.076904,
|
||||||
|
"Y": 0.56451416,
|
||||||
|
"Z": 35.90442
|
||||||
|
},
|
||||||
|
"StopDistance": 10,
|
||||||
"TerritoryId": 148,
|
"TerritoryId": 148,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte",
|
||||||
"Aetheryte": "Central Shroud - Bentbranch Meadows",
|
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Aetheryte Plaza",
|
"[Gridania] Aetheryte Plaza",
|
||||||
"[Gridania] Blue Badger Gate (Central Shroud)"
|
"[Gridania] Blue Badger Gate (Central Shroud)"
|
||||||
|
@ -65,11 +65,6 @@
|
|||||||
"[Gridania] Lancers' Guild"
|
"[Gridania] Lancers' Guild"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AttuneAetheryte",
|
|
||||||
"Aetheryte": "East Shroud - Hawthorne Hut"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1004886,
|
"DataId": 1004886,
|
||||||
"Position": {
|
"Position": {
|
||||||
|
@ -33,8 +33,7 @@
|
|||||||
"Z": -380.82272
|
"Z": -380.82272
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo"
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
|
@ -34,8 +34,7 @@
|
|||||||
"Z": -380.82272
|
"Z": -380.82272
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo"
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
|
@ -33,15 +33,6 @@
|
|||||||
"ItemId": 2000766,
|
"ItemId": 2000766,
|
||||||
"KillEnemyDataIds": [
|
"KillEnemyDataIds": [
|
||||||
46
|
46
|
||||||
],
|
|
||||||
"$": "QW: 16 0 1 16 0 16",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -53,16 +44,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "UseItem",
|
"InteractionType": "UseItem",
|
||||||
"ItemId": 2000766,
|
"ItemId": 2000766
|
||||||
"$": "QW: 32 16 1 16 0 80",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2002234,
|
"DataId": 2002234,
|
||||||
@ -73,52 +55,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "UseItem",
|
"InteractionType": "UseItem",
|
||||||
"ItemId": 2000766,
|
"ItemId": 2000766
|
||||||
"$": "48 17 1 16 0 88",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -196.89899,
|
|
||||||
"Y": 5.426553,
|
|
||||||
"Z": -658.71454
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Comment": "Avoids pit",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
-32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -170.45108,
|
|
||||||
"Y": 3.23747,
|
|
||||||
"Z": -656.8099
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Comment": "Move into LOS",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
-32
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2002230,
|
"DataId": 2002230,
|
||||||
@ -133,51 +70,8 @@
|
|||||||
"ItemId": 2000766,
|
"ItemId": 2000766,
|
||||||
"KillEnemyDataIds": [
|
"KillEnemyDataIds": [
|
||||||
46
|
46
|
||||||
],
|
|
||||||
"$": "64 17 49 16 0 120",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -159.67096,
|
|
||||||
"Y": 2.7818115,
|
|
||||||
"Z": -634.4776
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Camp Revenant's Toll (bottom)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -169.94295,
|
|
||||||
"Y": 13.794385,
|
|
||||||
"Z": -610.4647
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"$": "Camp Revenant's Toll (top)",
|
|
||||||
"Comment": "TODO Unsure if this can be reached without flying, or needs more nav"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -175.24794,
|
|
||||||
"Y": 10.096513,
|
|
||||||
"Z": -605.4419
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Camp Revenant's Toll (after jump)",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"Mount": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 2002231,
|
"DataId": 2002231,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -202,8 +96,7 @@
|
|||||||
"Z": -687.4037
|
"Z": -687.4037
|
||||||
},
|
},
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "CompleteQuest"
|
||||||
"AetheryteShortcut": "Mor Dhona"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -56,8 +56,7 @@
|
|||||||
"Z": -697.0779
|
"Z": -697.0779
|
||||||
},
|
},
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "CompleteQuest"
|
||||||
"AetheryteShortcut": "Mor Dhona"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
"Y": 25.009521,
|
"Y": 25.009521,
|
||||||
"Z": -697.0779
|
"Z": -697.0779
|
||||||
},
|
},
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
"AetheryteShortcut": "Mor Dhona",
|
||||||
@ -41,27 +40,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -159.67096,
|
|
||||||
"Y": 2.7818115,
|
|
||||||
"Z": -634.4776
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Camp Revenant's Toll (bottom)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -169.94295,
|
|
||||||
"Y": 13.794385,
|
|
||||||
"Z": -610.4647
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"$": "Camp Revenant's Toll (top)"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 2002329,
|
"DataId": 2002329,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -86,14 +64,7 @@
|
|||||||
"Z": -682.06305
|
"Z": -682.06305
|
||||||
},
|
},
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "YesNo",
|
|
||||||
"Prompt": "TEXT_GAIUSC604_01004_EVENTAREA_WARP_YESNO_TITLE",
|
|
||||||
"Yes": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006555,
|
"DataId": 1006555,
|
||||||
|
@ -27,7 +27,6 @@
|
|||||||
"Y": -158.5813,
|
"Y": -158.5813,
|
||||||
"Z": 1.3274536
|
"Z": 1.3274536
|
||||||
},
|
},
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact"
|
||||||
}
|
}
|
||||||
@ -65,15 +64,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact",
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
"AetheryteShortcut": "Mor Dhona"
|
||||||
"TargetTerritoryId": 156,
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "YesNo",
|
|
||||||
"Prompt": "TEXT_GAIUSC605_01005_Q1_000_000",
|
|
||||||
"Yes": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006557,
|
"DataId": 1006557,
|
||||||
@ -97,7 +88,6 @@
|
|||||||
"Y": 3.7940114,
|
"Y": 3.7940114,
|
||||||
"Z": -636.68274
|
"Z": -636.68274
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "Interact"
|
"InteractionType": "Interact"
|
||||||
}
|
}
|
||||||
@ -106,27 +96,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 5,
|
"Sequence": 5,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -159.67096,
|
|
||||||
"Y": 2.7818115,
|
|
||||||
"Z": -634.4776
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Camp Revenant's Toll (bottom)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -169.94295,
|
|
||||||
"Y": 13.794385,
|
|
||||||
"Z": -610.4647
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"$": "Camp Revenant's Toll (top)"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -169.3748,
|
"X": -169.3748,
|
||||||
@ -141,16 +110,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 6,
|
"Sequence": 6,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -183.43071,
|
|
||||||
"Y": -2.638534,
|
|
||||||
"Z": -595.8602
|
|
||||||
},
|
|
||||||
"TerritoryId": 156,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -227.08566,
|
"X": -227.08566,
|
||||||
@ -217,7 +176,6 @@
|
|||||||
"Y": 3.1014364,
|
"Y": 3.1014364,
|
||||||
"Z": -641.3519
|
"Z": -641.3519
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "SinglePlayerDuty"
|
"InteractionType": "SinglePlayerDuty"
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
"Y": 22.996977,
|
"Y": 22.996977,
|
||||||
"Z": -475.21173
|
"Z": -475.21173
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest"
|
||||||
}
|
}
|
||||||
@ -32,10 +31,15 @@
|
|||||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
|
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"DataId": 21,
|
||||||
|
"Position": {
|
||||||
|
"X": 20.98108,
|
||||||
|
"Y": 8.8349,
|
||||||
|
"Z": 454.0321
|
||||||
|
},
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"StopDistance": 5,
|
"StopDistance": 5,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Northern Thanalan - Camp Bluefog"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006638,
|
"DataId": 1006638,
|
||||||
|
@ -1,90 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": ["liza", "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": -75.48645,
|
|
||||||
"Y": -0.5013741,
|
|
||||||
"Z": -5.081299
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 6001,
|
|
||||||
"SkipIf": [
|
|
||||||
"ChocoboUnlocked"
|
|
||||||
],
|
|
||||||
"Comment": "Use Chocobo whistle (if not yet unlocked)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000257,
|
|
||||||
"Position": {
|
|
||||||
"X": 150.16394,
|
|
||||||
"Y": 10.852949,
|
|
||||||
"Z": -230.45703
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Lancers' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001263,
|
|
||||||
"Position": {
|
|
||||||
"X": 181.41443,
|
|
||||||
"Y": -2.3519497,
|
|
||||||
"Z": -240.40594
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"TargetTerritoryId": 152
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AttuneAetheryte",
|
|
||||||
"Aetheryte": "East Shroud - Hawthorne Hut",
|
|
||||||
"StopDistance": 5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006188,
|
|
||||||
"Position": {
|
|
||||||
"X": -236.92688,
|
|
||||||
"Y": 3.5435789,
|
|
||||||
"Z": 283.4973
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,102 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006674,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.98816,
|
|
||||||
"Y": -3.7664814,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000576,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.469421,
|
|
||||||
"Y": -4.575074,
|
|
||||||
"Z": 221.75928
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "dance",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000563,
|
|
||||||
"Position": {
|
|
||||||
"X": -3.768982,
|
|
||||||
"Y": -5.8594565,
|
|
||||||
"Z": 217.2732
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "dance",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000587,
|
|
||||||
"Position": {
|
|
||||||
"X": -7.248047,
|
|
||||||
"Y": -8.407776,
|
|
||||||
"Z": 268.23828
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "dance",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006674,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.98816,
|
|
||||||
"Y": -3.7664814,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,184 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006675,
|
|
||||||
"Position": {
|
|
||||||
"X": 23.11737,
|
|
||||||
"Y": -3.7126513,
|
|
||||||
"Z": 209.76575
|
|
||||||
},
|
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000584,
|
|
||||||
"Position": {
|
|
||||||
"X": 44.785156,
|
|
||||||
"Y": -2.1720045,
|
|
||||||
"Z": 231.86072
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -34.76502,
|
|
||||||
"Y": -8.079653,
|
|
||||||
"Z": 264.55304
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 179,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
16,
|
|
||||||
1,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"MinimumKillCount": 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
1,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"$": "0 0 0 0 0 0 -> 16 1 0 0 0 0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001915,
|
|
||||||
"Position": {
|
|
||||||
"X": -42.435425,
|
|
||||||
"Y": -8.560364,
|
|
||||||
"Z": 281.26953
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
],
|
|
||||||
"$": "16 1 0 0 0 0 -> 17 1 16 0 0 32"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001914,
|
|
||||||
"Position": {
|
|
||||||
"X": -32.6391,
|
|
||||||
"Y": -3.7995605,
|
|
||||||
"Z": 321.3092
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
],
|
|
||||||
"$": "17 1 16 0 0 32 -> 18 1 32 0 0 96"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001913,
|
|
||||||
"Position": {
|
|
||||||
"X": 29.3125,
|
|
||||||
"Y": 0.869751,
|
|
||||||
"Z": 359.24304
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
],
|
|
||||||
"$": "18 1 32 0 0 96 -> 35 1 48 0 0 224"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 47.758923,
|
|
||||||
"Y": 7.4985247,
|
|
||||||
"Z": 428.1574
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 7,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
16,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"MinimumKillCount": 1
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
16,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
],
|
|
||||||
"$": "If skipping the previous step: 34 17 32 0 0 96"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,52 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002934,
|
|
||||||
"Position": {
|
|
||||||
"X": -164.41602,
|
|
||||||
"Y": 8.398999,
|
|
||||||
"Z": -63.61493
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2003006
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,132 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"InteractionType": "AttuneAetheryte",
|
|
||||||
"Aetheryte": "South Shroud - Quarrymill",
|
|
||||||
"TerritoryId": 153
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003272,
|
|
||||||
"Position": {
|
|
||||||
"X": -262.92822,
|
|
||||||
"Y": 16.2,
|
|
||||||
"Z": 51.407593
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] Hawkers' Alley"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1001208,
|
|
||||||
"Position": {
|
|
||||||
"X": -228.16821,
|
|
||||||
"Y": 16,
|
|
||||||
"Z": 50.644653
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007721,
|
|
||||||
"Position": {
|
|
||||||
"X": -191.36346,
|
|
||||||
"Y": 0.9999907,
|
|
||||||
"Z": 212.9701
|
|
||||||
},
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Hawkers' Alley",
|
|
||||||
"[Limsa Lominsa] Fishermens' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000868,
|
|
||||||
"Position": {
|
|
||||||
"X": -192.00433,
|
|
||||||
"Y": 0.9999907,
|
|
||||||
"Z": 211.68835
|
|
||||||
},
|
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 129,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"TargetTerritoryId": 138
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1003393,
|
|
||||||
"Position": {
|
|
||||||
"X": 305.47034,
|
|
||||||
"Y": -36.325005,
|
|
||||||
"Z": 351.76624
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 410.07083,
|
|
||||||
"Y": 31.504957,
|
|
||||||
"Z": -12.586371
|
|
||||||
},
|
|
||||||
"TerritoryId": 138,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"TargetTerritoryId": 139
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006193,
|
|
||||||
"Position": {
|
|
||||||
"X": -334.0658,
|
|
||||||
"Y": -0.81366825,
|
|
||||||
"Z": 148.91272
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,80 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006193,
|
|
||||||
"Position": {
|
|
||||||
"X": -334.0658,
|
|
||||||
"Y": -0.81366825,
|
|
||||||
"Z": 148.91272
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -422.68066,
|
|
||||||
"Y": -2.5542965,
|
|
||||||
"Z": 150.50304
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"Comment": "Avoids swimming"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -585.1562,
|
|
||||||
"Y": -1.1847447,
|
|
||||||
"Z": -2.186262
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 28,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"RewardItemId": 2003009,
|
|
||||||
"RewardItemCount": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -422.68066,
|
|
||||||
"Y": -2.5542965,
|
|
||||||
"Z": 150.50304
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Comment": "Avoids swimming"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006193,
|
|
||||||
"Position": {
|
|
||||||
"X": -334.0658,
|
|
||||||
"Y": -0.81366825,
|
|
||||||
"Z": 148.91272
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,104 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006199,
|
|
||||||
"Position": {
|
|
||||||
"X": -141.71057,
|
|
||||||
"Y": 6.568114,
|
|
||||||
"Z": -23.178528
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006201,
|
|
||||||
"Position": {
|
|
||||||
"X": -65.4765,
|
|
||||||
"Y": 4.3282256,
|
|
||||||
"Z": -27.237366
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
62
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006201,
|
|
||||||
"Position": {
|
|
||||||
"X": -65.4765,
|
|
||||||
"Y": 4.3282256,
|
|
||||||
"Z": -27.237366
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006203,
|
|
||||||
"Position": {
|
|
||||||
"X": 32.700073,
|
|
||||||
"Y": 10.692124,
|
|
||||||
"Z": -12.985474
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "SinglePlayerDuty"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,83 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006688,
|
|
||||||
"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": 1007417,
|
|
||||||
"Position": {
|
|
||||||
"X": 1.2359009,
|
|
||||||
"Y": -3.0000014,
|
|
||||||
"Z": -57.66388
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006240,
|
|
||||||
"Position": {
|
|
||||||
"X": 14.389221,
|
|
||||||
"Y": -44.86571,
|
|
||||||
"Z": 262.65344
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Yellow Serpent Gate (North Shroud)"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006240,
|
|
||||||
"Position": {
|
|
||||||
"X": 14.389221,
|
|
||||||
"Y": -44.86571,
|
|
||||||
"Z": 262.65344
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Emote": "soothe"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,70 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006241,
|
|
||||||
"Position": {
|
|
||||||
"X": 17.349426,
|
|
||||||
"Y": -44.86564,
|
|
||||||
"Z": 262.745
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "AttuneAetheryte",
|
|
||||||
"StopDistance": 5,
|
|
||||||
"Aetheryte": "North Shroud - Fallgourd Float"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -214.10292,
|
|
||||||
"Y": -56.837837,
|
|
||||||
"Z": 295.99493
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -276.81464,
|
|
||||||
"Y": -56.335888,
|
|
||||||
"Z": 302.93182
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
179
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006241,
|
|
||||||
"Position": {
|
|
||||||
"X": 17.349426,
|
|
||||||
"Y": -44.86564,
|
|
||||||
"Z": 262.745
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,107 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006279,
|
|
||||||
"Position": {
|
|
||||||
"X": -231.4336,
|
|
||||||
"Y": 21.512743,
|
|
||||||
"Z": 339.49792
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002646,
|
|
||||||
"Position": {
|
|
||||||
"X": -68.711426,
|
|
||||||
"Y": 1.296936,
|
|
||||||
"Z": 301.74707
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1888
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002574,
|
|
||||||
"Position": {
|
|
||||||
"X": -68.711426,
|
|
||||||
"Y": 1.296936,
|
|
||||||
"Z": 301.74707
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006279,
|
|
||||||
"Position": {
|
|
||||||
"X": -231.4336,
|
|
||||||
"Y": 21.512743,
|
|
||||||
"Z": 339.49792
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1004596,
|
|
||||||
"Position": {
|
|
||||||
"X": -471.27496,
|
|
||||||
"Y": -2.650424,
|
|
||||||
"Z": 95.628296
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"TargetTerritoryId": 146,
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AttuneAetheryte",
|
|
||||||
"StopDistance": 5,
|
|
||||||
"Aetheryte": "Southern Thanalan - Forgotten Springs"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1004917,
|
|
||||||
"Position": {
|
|
||||||
"X": -358.6328,
|
|
||||||
"Y": 8.469424,
|
|
||||||
"Z": 422.4154
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006266,
|
|
||||||
"Position": {
|
|
||||||
"X": 560.35706,
|
|
||||||
"Y": 20.721315,
|
|
||||||
"Z": 455.89368
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006305,
|
|
||||||
"Position": {
|
|
||||||
"X": 10.60498,
|
|
||||||
"Y": 71.47817,
|
|
||||||
"Z": -16.617126
|
|
||||||
},
|
|
||||||
"TerritoryId": 137,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Wineport"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -12,7 +12,6 @@
|
|||||||
"Y": -16.42,
|
"Y": -16.42,
|
||||||
"Z": -7.522766
|
"Z": -7.522766
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
|
@ -25,15 +25,7 @@
|
|||||||
"Sequence": 1,
|
"Sequence": 1,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
"Position": {
|
"DataId": 132,
|
||||||
"X": -491.4813,
|
|
||||||
"Y": 205.20322,
|
|
||||||
"Z": -185.17868
|
|
||||||
},
|
|
||||||
"TerritoryId": 155,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -321.0041,
|
"X": -321.0041,
|
||||||
"Y": 255.60681,
|
"Y": 255.60681,
|
||||||
@ -42,13 +34,8 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "Combat",
|
"InteractionType": "Combat",
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
"EnemySpawnType": "OverworldEnemies",
|
||||||
"ComplexCombatData": [
|
"KillEnemyDataIds": [
|
||||||
{
|
132
|
||||||
"DataId": 132,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"RewardItemId": 2003018,
|
|
||||||
"RewardItemCount": 3
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -60,10 +60,8 @@
|
|||||||
],
|
],
|
||||||
"AethernetShortcut": [
|
"AethernetShortcut": [
|
||||||
"[Gridania] Mih Khetto's Amphitheatre",
|
"[Gridania] Mih Khetto's Amphitheatre",
|
||||||
"[Gridania] White Wolf Gate (Central Shroud)"
|
"[Gridania] Blue Badger Gate (Central Shroud)"
|
||||||
],
|
]
|
||||||
"StopDistance": 4,
|
|
||||||
"IgnoreDistanceToObject": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -12,10 +12,8 @@
|
|||||||
"Y": 25.548265,
|
"Y": 25.548265,
|
||||||
"Z": -698.05444
|
"Z": -698.05444
|
||||||
},
|
},
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest"
|
||||||
"IgnoreDistanceToObject": true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -24,35 +22,14 @@
|
|||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -429.60284,
|
"X": -458.05878,
|
||||||
"Y": -15.201682,
|
"Y": -3.372772,
|
||||||
"Z": -477.29346
|
"Z": -507.58792
|
||||||
},
|
},
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "Combat",
|
"InteractionType": "Combat",
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
"EnemySpawnType": "OverworldEnemies",
|
||||||
"ComplexCombatData": [
|
"KillEnemyDataIds": []
|
||||||
{
|
|
||||||
"DataId": 55,
|
|
||||||
"MinimumKillCount": 3,
|
|
||||||
"RewardItemId": 2003022,
|
|
||||||
"RewardItemCount": 3,
|
|
||||||
"$": "QW goes 6x0 → 0 0 16 0 0 0 → 0 0 32 0 0 0 → 16 0 48 0 0 0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 62,
|
|
||||||
"MinimumKillCount": 0,
|
|
||||||
"RewardItemId": 2003021,
|
|
||||||
"RewardItemCount": 3,
|
|
||||||
"$": "QW goes [..] → 16 1 48 0 0 0 → 16 2 48 0 0 0 → 0 51 0 0 0 0"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 63,
|
|
||||||
"MinimumKillCount": 0,
|
|
||||||
"RewardItemId": 2003021,
|
|
||||||
"RewardItemCount": 3
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -25,10 +25,15 @@
|
|||||||
"Sequence": 1,
|
"Sequence": 1,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 22,
|
||||||
|
"Position": {
|
||||||
|
"X": -26.596497,
|
||||||
|
"Y": 49.881714,
|
||||||
|
"Z": -30.838562
|
||||||
|
},
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"StopDistance": 5,
|
"StopDistance": 5,
|
||||||
"InteractionType": "AttuneAetheryte",
|
"InteractionType": "AttuneAetheryte"
|
||||||
"Aetheryte": "Northern Thanalan - Ceruleum Processing Plant"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006647,
|
"DataId": 1006647,
|
||||||
@ -54,15 +59,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "Emote",
|
"InteractionType": "Emote",
|
||||||
"Emote": "psych",
|
"Emote": "psych"
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006650,
|
"DataId": 1006650,
|
||||||
@ -73,15 +70,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "Emote",
|
"InteractionType": "Emote",
|
||||||
"Emote": "psych",
|
"Emote": "psych"
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006649,
|
"DataId": 1006649,
|
||||||
@ -92,15 +81,7 @@
|
|||||||
},
|
},
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "Emote",
|
"InteractionType": "Emote",
|
||||||
"Emote": "psych",
|
"Emote": "psych"
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -114,9 +95,8 @@
|
|||||||
"Y": 46.99734,
|
"Y": 46.99734,
|
||||||
"Z": 32.547485
|
"Z": 32.547485
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "CompleteQuest",
|
"InteractionType": "Emote",
|
||||||
"Emote": "psych"
|
"Emote": "psych"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
"Y": 46.99734,
|
"Y": 46.99734,
|
||||||
"Z": 32.547485
|
"Z": 32.547485
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||||
@ -41,6 +40,12 @@
|
|||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 2002710,
|
||||||
|
"Position": {
|
||||||
|
"X": -295.1773,
|
||||||
|
"Y": 87.96973,
|
||||||
|
"Z": -230.9999
|
||||||
|
},
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "Duty",
|
"InteractionType": "Duty",
|
||||||
"ContentFinderConditionId": 15
|
"ContentFinderConditionId": 15
|
||||||
@ -57,7 +62,6 @@
|
|||||||
"Y": 88,
|
"Y": 88,
|
||||||
"Z": -225.17743
|
"Z": -225.17743
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest"
|
||||||
}
|
}
|
||||||
|
@ -38,8 +38,7 @@
|
|||||||
"Z": -0.015319824
|
"Z": -0.015319824
|
||||||
},
|
},
|
||||||
"TerritoryId": 212,
|
"TerritoryId": 212,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"TargetTerritoryId": 140
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006578,
|
"DataId": 1006578,
|
||||||
@ -93,7 +92,6 @@
|
|||||||
"Y": 22.996977,
|
"Y": 22.996977,
|
||||||
"Z": -475.21173
|
"Z": -475.21173
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest"
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
"Y": 88,
|
"Y": 88,
|
||||||
"Z": -225.17743
|
"Z": -225.17743
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||||
@ -42,24 +41,15 @@
|
|||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 2002711,
|
||||||
|
"Position": {
|
||||||
|
"X": -113.206726,
|
||||||
|
"Y": 47.348755,
|
||||||
|
"Z": 29.587158
|
||||||
|
},
|
||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "Duty",
|
"InteractionType": "Duty",
|
||||||
"ContentFinderConditionId": 16
|
"ContentFinderConditionId": 86
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 0,
|
|
||||||
"Y": 0,
|
|
||||||
"Z": 0
|
|
||||||
},
|
|
||||||
"TerritoryId": 1,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Comment": "Filler"
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -67,24 +57,15 @@
|
|||||||
"Sequence": 4,
|
"Sequence": 4,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
"TerritoryId": 1053,
|
"DataId": 2012614,
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 830
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 5,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": 0,
|
"X": -821,
|
||||||
"Y": 0,
|
"Y": -344.1316,
|
||||||
"Z": 0
|
"Z": 0
|
||||||
},
|
},
|
||||||
"TerritoryId": 1,
|
"TerritoryId": 1053,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "Duty",
|
||||||
"Comment": "Filler"
|
"ContentFinderConditionId": 20082
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -114,8 +95,7 @@
|
|||||||
"Z": 0
|
"Z": 0
|
||||||
},
|
},
|
||||||
"TerritoryId": 212,
|
"TerritoryId": 212,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"TargetTerritoryId": 212
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006692,
|
"DataId": 1006692,
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"TerritoryBlacklist": [
|
|
||||||
1039
|
|
||||||
],
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000393,
|
|
||||||
"Position": {
|
|
||||||
"X": -89.463684,
|
|
||||||
"Y": 3.318795,
|
|
||||||
"Z": -168.9021
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 1
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,60 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006688,
|
|
||||||
"Position": {
|
|
||||||
"X": 39.29187,
|
|
||||||
"Y": 1.2148079,
|
|
||||||
"Z": 0.8086548
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1003281,
|
|
||||||
"Position": {
|
|
||||||
"X": 97.520386,
|
|
||||||
"Y": 40.248554,
|
|
||||||
"Z": 81.1322
|
|
||||||
},
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] Aetheryte Plaza",
|
|
||||||
"[Limsa Lominsa] The Aftcastle"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006264,
|
|
||||||
"Position": {
|
|
||||||
"X": 710.90247,
|
|
||||||
"Y": 66.027,
|
|
||||||
"Z": -277.66846
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Limsa Lominsa] The Aftcastle",
|
|
||||||
"[Limsa Lominsa] Tempest Gate (Lower La Noscea)"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -47,29 +47,17 @@
|
|||||||
{
|
{
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "UseItem",
|
"InteractionType": "UseItem",
|
||||||
"ItemId": 30362,
|
"ItemId": 30362
|
||||||
"TargetTerritoryId": 140
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -492.96475,
|
|
||||||
"Y": 20.999884,
|
|
||||||
"Z": -380.82272
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -480.9181,
|
"X": -480.91858,
|
||||||
"Y": 18.00103,
|
"Y": 17.990356,
|
||||||
"Z": -386.862
|
"Z": -386.862
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"TargetTerritoryId": 212
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -84,8 +72,7 @@
|
|||||||
"Z": -0.015319824
|
"Z": -0.015319824
|
||||||
},
|
},
|
||||||
"TerritoryId": 212,
|
"TerritoryId": 212,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"TargetTerritoryId": 212
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1007467,
|
"DataId": 1007467,
|
||||||
|
@ -36,9 +36,15 @@
|
|||||||
"Sequence": 2,
|
"Sequence": 2,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
{
|
||||||
|
"DataId": 2002689,
|
||||||
|
"Position": {
|
||||||
|
"X": -83.72626,
|
||||||
|
"Y": -0.9003296,
|
||||||
|
"Z": -32.6391
|
||||||
|
},
|
||||||
"TerritoryId": 331,
|
"TerritoryId": 331,
|
||||||
"InteractionType": "Duty",
|
"InteractionType": "Duty",
|
||||||
"ContentFinderConditionId": 58
|
"ContentFinderConditionId": 20003
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -52,7 +58,6 @@
|
|||||||
"Y": 84,
|
"Y": 84,
|
||||||
"Z": -3.768982
|
"Z": -3.768982
|
||||||
},
|
},
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "CompleteQuest"
|
"InteractionType": "CompleteQuest"
|
||||||
}
|
}
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
"Y": 84,
|
"Y": 84,
|
||||||
"Z": -3.768982
|
"Z": -3.768982
|
||||||
},
|
},
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AcceptQuest"
|
"InteractionType": "AcceptQuest"
|
||||||
}
|
}
|
||||||
@ -24,29 +23,17 @@
|
|||||||
{
|
{
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "UseItem",
|
"InteractionType": "UseItem",
|
||||||
"ItemId": 30362,
|
"ItemId": 30362
|
||||||
"TargetTerritoryId": 140
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -492.96475,
|
|
||||||
"Y": 20.999884,
|
|
||||||
"Z": -380.82272
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -480.9181,
|
"X": -480.91858,
|
||||||
"Y": 18.00103,
|
"Y": 17.990356,
|
||||||
"Z": -386.862
|
"Z": -386.862
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"TargetTerritoryId": 212
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1007630,
|
"DataId": 1007630,
|
||||||
|
@ -23,14 +23,12 @@
|
|||||||
{
|
{
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "EquipItem",
|
"InteractionType": "EquipItem",
|
||||||
"ItemId": 6223,
|
"ItemId": 6223
|
||||||
"Comment": "Can be re-bought from Glaumunt in Mor Dhona"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "EquipItem",
|
"InteractionType": "EquipItem",
|
||||||
"ItemId": 6224,
|
"ItemId": 6224
|
||||||
"Comment": "Can be re-bought from Glaumunt in Mor Dhona"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2002502,
|
"DataId": 2002502,
|
||||||
@ -40,8 +38,7 @@
|
|||||||
"Z": 16.281311
|
"Z": 16.281311
|
||||||
},
|
},
|
||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"TargetTerritoryId": 156
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1007537,
|
"DataId": 1007537,
|
||||||
@ -96,15 +93,6 @@
|
|||||||
{
|
{
|
||||||
"Sequence": 3,
|
"Sequence": 3,
|
||||||
"Steps": [
|
"Steps": [
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -530.1089,
|
|
||||||
"Y": -3.3262053,
|
|
||||||
"Z": -308.2147
|
|
||||||
},
|
|
||||||
"TerritoryId": 335,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"DataId": 1007611,
|
"DataId": 1007611,
|
||||||
"Position": {
|
"Position": {
|
||||||
@ -112,7 +100,6 @@
|
|||||||
"Y": -1.9197441,
|
"Y": -1.9197441,
|
||||||
"Z": -308.00336
|
"Z": -308.00336
|
||||||
},
|
},
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 335,
|
"TerritoryId": 335,
|
||||||
"InteractionType": "Emote",
|
"InteractionType": "Emote",
|
||||||
"Emote": "imperialsalute"
|
"Emote": "imperialsalute"
|
||||||
|
@ -43,29 +43,17 @@
|
|||||||
{
|
{
|
||||||
"TerritoryId": 128,
|
"TerritoryId": 128,
|
||||||
"InteractionType": "UseItem",
|
"InteractionType": "UseItem",
|
||||||
"ItemId": 30362,
|
"ItemId": 30362
|
||||||
"TargetTerritoryId": 140
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -492.96475,
|
|
||||||
"Y": 20.999884,
|
|
||||||
"Z": -380.82272
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001711,
|
"DataId": 2001711,
|
||||||
"Position": {
|
"Position": {
|
||||||
"X": -480.9181,
|
"X": -480.91858,
|
||||||
"Y": 18.00103,
|
"Y": 17.990356,
|
||||||
"Z": -386.862
|
"Z": -386.862
|
||||||
},
|
},
|
||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"TargetTerritoryId": 212
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2001715,
|
"DataId": 2001715,
|
||||||
@ -75,8 +63,7 @@
|
|||||||
"Z": -0.015319824
|
"Z": -0.015319824
|
||||||
},
|
},
|
||||||
"TerritoryId": 212,
|
"TerritoryId": 212,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact"
|
||||||
"TargetTerritoryId": 212
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1006690,
|
"DataId": 1006690,
|
||||||
|
@ -1,83 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1004883,
|
|
||||||
"Position": {
|
|
||||||
"X": 37.88806,
|
|
||||||
"Y": 1.2000012,
|
|
||||||
"Z": 4.135132
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Prompt": "TEXT_MANWIL302_00682_Q1_000_1",
|
|
||||||
"Type": "YesNo",
|
|
||||||
"Yes": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002391,
|
|
||||||
"Position": {
|
|
||||||
"X": -144.39618,
|
|
||||||
"Y": 4.1,
|
|
||||||
"Z": -107.22516
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"DialogueChoices": [
|
|
||||||
{
|
|
||||||
"Type": "List",
|
|
||||||
"Prompt": "TEXT_MANWIL302_00682_Q2_000_1",
|
|
||||||
"Answer": "TEXT_MANWIL302_00682_A2_000_2"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1004887,
|
|
||||||
"Position": {
|
|
||||||
"X": 160.7843,
|
|
||||||
"Y": 54.85158,
|
|
||||||
"Z": -45.609253
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "SinglePlayerDuty",
|
|
||||||
"AetheryteShortcut": "Western Thanalan - Horizon"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002391,
|
|
||||||
"Position": {
|
|
||||||
"X": -144.39618,
|
|
||||||
"Y": 4.1,
|
|
||||||
"Z": -107.22516
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,67 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002391,
|
|
||||||
"Position": {
|
|
||||||
"X": -144.39618,
|
|
||||||
"Y": 4.1,
|
|
||||||
"Z": -107.22516
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Ul'dah",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 30362,
|
|
||||||
"TargetTerritoryId": 140
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -492.96475,
|
|
||||||
"Y": 20.999884,
|
|
||||||
"Z": -380.82272
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001711,
|
|
||||||
"Position": {
|
|
||||||
"X": -480.9181,
|
|
||||||
"Y": 18.00103,
|
|
||||||
"Z": -386.862
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"TargetTerritoryId": 212
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1005012,
|
|
||||||
"Position": {
|
|
||||||
"X": 22.507019,
|
|
||||||
"Y": 0.9999986,
|
|
||||||
"Z": -2.02948
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000540,
|
|
||||||
"Position": {
|
|
||||||
"X": -238.17816,
|
|
||||||
"Y": 3.543561,
|
|
||||||
"Z": 283.71094
|
|
||||||
},
|
|
||||||
"StopDistance": 5,
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000615,
|
|
||||||
"Position": {
|
|
||||||
"X": -246.44855,
|
|
||||||
"Y": 3.5452707,
|
|
||||||
"Z": 279.92664
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000557,
|
|
||||||
"Position": {
|
|
||||||
"X": -206.0426,
|
|
||||||
"Y": 2.663525,
|
|
||||||
"Z": 303.94446
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000553,
|
|
||||||
"Position": {
|
|
||||||
"X": -187.48767,
|
|
||||||
"Y": 4.4436555,
|
|
||||||
"Z": 292.50012
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000540,
|
|
||||||
"Position": {
|
|
||||||
"X": -238.17816,
|
|
||||||
"Y": 3.543561,
|
|
||||||
"Z": 283.71094
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,76 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000540,
|
|
||||||
"Position": {
|
|
||||||
"X": -238.17816,
|
|
||||||
"Y": 3.543561,
|
|
||||||
"Z": 283.71094
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000766,
|
|
||||||
"Position": {
|
|
||||||
"X": -485.70996,
|
|
||||||
"Y": 9.170645,
|
|
||||||
"Z": 177.203
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001902,
|
|
||||||
"Position": {
|
|
||||||
"X": -386.6789,
|
|
||||||
"Y": -0.015319824,
|
|
||||||
"Z": 192.46204
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2000571,
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
33
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000540,
|
|
||||||
"Position": {
|
|
||||||
"X": -238.17816,
|
|
||||||
"Y": 3.543561,
|
|
||||||
"Z": 283.71094
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,86 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000540,
|
|
||||||
"Position": {
|
|
||||||
"X": -238.17816,
|
|
||||||
"Y": 3.543561,
|
|
||||||
"Z": 283.71094
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006188,
|
|
||||||
"Position": {
|
|
||||||
"X": -236.92688,
|
|
||||||
"Y": 3.5435789,
|
|
||||||
"Z": 283.4973
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "dance"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,176 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000585,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.558838,
|
|
||||||
"Y": -5.7208977,
|
|
||||||
"Z": 241.62659
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000277,
|
|
||||||
"Position": {
|
|
||||||
"X": 102.76941,
|
|
||||||
"Y": 8.161999,
|
|
||||||
"Z": 187.94531
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"$": "1 0 0 0 0 128 -> 2 0 0 0 0 192",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000553,
|
|
||||||
"Position": {
|
|
||||||
"X": -187.48767,
|
|
||||||
"Y": 4.4436555,
|
|
||||||
"Z": 292.50012
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"$": "2 0 0 0 0 192 -> 3 0 0 0 0 224",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000545,
|
|
||||||
"Position": {
|
|
||||||
"X": -242.72534,
|
|
||||||
"Y": 3.5598407,
|
|
||||||
"Z": 286.9154
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001918,
|
|
||||||
"Position": {
|
|
||||||
"X": -100.93848,
|
|
||||||
"Y": -8.285706,
|
|
||||||
"Z": 261.40222
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1895,
|
|
||||||
1896,
|
|
||||||
1897,
|
|
||||||
1898
|
|
||||||
],
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
4,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001918,
|
|
||||||
"Position": {
|
|
||||||
"X": -100.93848,
|
|
||||||
"Y": -8.285706,
|
|
||||||
"Z": 261.40222
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,85 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002937,
|
|
||||||
"Position": {
|
|
||||||
"X": -72.22095,
|
|
||||||
"Y": -2.5420866,
|
|
||||||
"Z": 187.85376
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002998,
|
|
||||||
"Position": {
|
|
||||||
"X": -283.92462,
|
|
||||||
"Y": 12.245282,
|
|
||||||
"Z": -39.383606
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "SinglePlayerDuty"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,82 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000168,
|
|
||||||
"Position": {
|
|
||||||
"X": -75.48645,
|
|
||||||
"Y": -0.5013741,
|
|
||||||
"Z": -5.081299
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Gridania"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000734,
|
|
||||||
"Position": {
|
|
||||||
"X": -2.5482788,
|
|
||||||
"Y": -1.2191527,
|
|
||||||
"Z": 39.96338
|
|
||||||
},
|
|
||||||
"TerritoryId": 148,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 164.6276,
|
|
||||||
"Y": -23.814985,
|
|
||||||
"Z": 551.0861
|
|
||||||
},
|
|
||||||
"TerritoryId": 148,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"TargetTerritoryId": 153
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,37 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006193,
|
|
||||||
"Position": {
|
|
||||||
"X": -334.0658,
|
|
||||||
"Y": -0.81366825,
|
|
||||||
"Z": 148.91272
|
|
||||||
},
|
|
||||||
"TerritoryId": 139,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,242 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001949,
|
|
||||||
"Position": {
|
|
||||||
"X": -142.77869,
|
|
||||||
"Y": 14.450195,
|
|
||||||
"Z": -130.11371
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"$": "0 0 0 0 0 0 -> 16 0 16 0 0 128",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
],
|
|
||||||
"Comment": "Enemy loses aggro by the next waypoint"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -108.2742,
|
|
||||||
"Y": 5.6416674,
|
|
||||||
"Z": -80.21974
|
|
||||||
},
|
|
||||||
"StopDistance": 0.25,
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Jump",
|
|
||||||
"JumpDestination": {
|
|
||||||
"Position": {
|
|
||||||
"X": -111.25065,
|
|
||||||
"Y": 8.312978,
|
|
||||||
"Z": -82.8167
|
|
||||||
},
|
|
||||||
"DelaySeconds": 0.25
|
|
||||||
},
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
-8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001953,
|
|
||||||
"Position": {
|
|
||||||
"X": -116.41113,
|
|
||||||
"Y": 11.032227,
|
|
||||||
"Z": -84.97754
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"$": "16 0 16 0 0 128 -> 32 1 16 0 0 136",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -90.467575,
|
|
||||||
"Y": 3.3634722,
|
|
||||||
"Z": -27.515985
|
|
||||||
},
|
|
||||||
"StopDistance": 0.25,
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Jump",
|
|
||||||
"JumpDestination": {
|
|
||||||
"Position": {
|
|
||||||
"X": -84.96217,
|
|
||||||
"Y": 6.1436205,
|
|
||||||
"Z": -23.793756
|
|
||||||
},
|
|
||||||
"DelaySeconds": 0.25
|
|
||||||
},
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
-32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001951,
|
|
||||||
"Position": {
|
|
||||||
"X": -83.32953,
|
|
||||||
"Y": 7.1259155,
|
|
||||||
"Z": -21.561035
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"$": "32 1 16 0 0 136 -> 49 1 16 0 0 168",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -77.875786,
|
|
||||||
"Y": 3.9296143,
|
|
||||||
"Z": -27.107864
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
-16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 15.053005,
|
|
||||||
"Y": 3.8386261,
|
|
||||||
"Z": -40.758984
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
-16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001952,
|
|
||||||
"Position": {
|
|
||||||
"X": 18.722778,
|
|
||||||
"Y": 7.614197,
|
|
||||||
"Z": -43.137268
|
|
||||||
},
|
|
||||||
"StopDistance": 6,
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"$": "49 1 16 0 0 168 -> 65 17 16 0 0 184",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001950,
|
|
||||||
"Position": {
|
|
||||||
"X": 63.553833,
|
|
||||||
"Y": 13.473633,
|
|
||||||
"Z": -32.333923
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"$": "65 17 16 0 0 184 -> ",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 51.85704,
|
|
||||||
"Y": 2.712612,
|
|
||||||
"Z": -42.67677
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"Mount": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"Mount": false
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,46 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AttuneAetheryte",
|
|
||||||
"Aetheryte": "South Shroud - Camp Tranquil"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000576,
|
|
||||||
"Position": {
|
|
||||||
"X": 21.469421,
|
|
||||||
"Y": -4.575074,
|
|
||||||
"Z": 221.75928
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,57 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000580,
|
|
||||||
"Position": {
|
|
||||||
"X": 25.65039,
|
|
||||||
"Y": -3.7080078,
|
|
||||||
"Z": 209.97937
|
|
||||||
},
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 190.6642,
|
|
||||||
"Y": 8.673417,
|
|
||||||
"Z": 187.67012
|
|
||||||
},
|
|
||||||
"StopDistance": 0.5,
|
|
||||||
"TerritoryId": 152,
|
|
||||||
"InteractionType": "Emote",
|
|
||||||
"Emote": "lookout"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000168,
|
|
||||||
"Position": {
|
|
||||||
"X": -75.48645,
|
|
||||||
"Y": -0.5013741,
|
|
||||||
"Z": -5.081299
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Gridania"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,88 +0,0 @@
|
|||||||
{
|
|
||||||
"$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": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"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
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001715,
|
|
||||||
"Position": {
|
|
||||||
"X": 23.23944,
|
|
||||||
"Y": 2.090454,
|
|
||||||
"Z": -0.015319824
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"TargetTerritoryId": 212
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006688,
|
|
||||||
"Position": {
|
|
||||||
"X": 39.29187,
|
|
||||||
"Y": 1.2148079,
|
|
||||||
"Z": 0.8086548
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,53 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006688,
|
|
||||||
"Position": {
|
|
||||||
"X": 39.29187,
|
|
||||||
"Y": 1.2148079,
|
|
||||||
"Z": 0.8086548
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1004576,
|
|
||||||
"Position": {
|
|
||||||
"X": -141.64954,
|
|
||||||
"Y": 4.1,
|
|
||||||
"Z": -114.67157
|
|
||||||
},
|
|
||||||
"TerritoryId": 130,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Ul'dah"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006196,
|
|
||||||
"Position": {
|
|
||||||
"X": -63.98114,
|
|
||||||
"Y": -20.296238,
|
|
||||||
"Z": -5.142395
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,99 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006196,
|
|
||||||
"Position": {
|
|
||||||
"X": -63.98114,
|
|
||||||
"Y": -20.296238,
|
|
||||||
"Z": -5.142395
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006206,
|
|
||||||
"Position": {
|
|
||||||
"X": -90.95911,
|
|
||||||
"Y": -29.465149,
|
|
||||||
"Z": -58.854065
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006204,
|
|
||||||
"Position": {
|
|
||||||
"X": -29.34314,
|
|
||||||
"Y": -10.500086,
|
|
||||||
"Z": -7.5532227
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006205,
|
|
||||||
"Position": {
|
|
||||||
"X": 14.480774,
|
|
||||||
"Y": -5.9663696,
|
|
||||||
"Z": 7.4310913
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006196,
|
|
||||||
"Position": {
|
|
||||||
"X": -63.98114,
|
|
||||||
"Y": -20.296238,
|
|
||||||
"Z": -5.142395
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,70 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006196,
|
|
||||||
"Position": {
|
|
||||||
"X": -63.98114,
|
|
||||||
"Y": -20.296238,
|
|
||||||
"Z": -5.142395
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 318.09802,
|
|
||||||
"Y": 20.949646,
|
|
||||||
"Z": -263.94977
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001965,
|
|
||||||
"Position": {
|
|
||||||
"X": 313.46606,
|
|
||||||
"Y": 23.178406,
|
|
||||||
"Z": -253.58972
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterItemUse",
|
|
||||||
"ItemId": 2000604,
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
363
|
|
||||||
],
|
|
||||||
"DisableNavmesh": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006196,
|
|
||||||
"Position": {
|
|
||||||
"X": -63.98114,
|
|
||||||
"Y": -20.296238,
|
|
||||||
"Z": -5.142395
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,71 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006196,
|
|
||||||
"Position": {
|
|
||||||
"X": -63.98114,
|
|
||||||
"Y": -20.296238,
|
|
||||||
"Z": -5.142395
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -171.46503,
|
|
||||||
"Y": -46.504063,
|
|
||||||
"Z": 491.88867
|
|
||||||
},
|
|
||||||
"TerritoryId": 145,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"TargetTerritoryId": 146
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AttuneAetheryte",
|
|
||||||
"StopDistance": 7,
|
|
||||||
"Aetheryte": "Southern Thanalan - Little Ala Mhigo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006211,
|
|
||||||
"Position": {
|
|
||||||
"X": -217.48688,
|
|
||||||
"Y": 26.258211,
|
|
||||||
"Z": -361.2574
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006217,
|
|
||||||
"Position": {
|
|
||||||
"X": -181.04828,
|
|
||||||
"Y": 28.214073,
|
|
||||||
"Z": -402.02948
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006702,
|
|
||||||
"Position": {
|
|
||||||
"X": -186.14484,
|
|
||||||
"Y": 3.6335826,
|
|
||||||
"Z": -247.82184
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006704,
|
|
||||||
"Position": {
|
|
||||||
"X": -174.12073,
|
|
||||||
"Y": 4.3956237,
|
|
||||||
"Z": -165.45361
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006703,
|
|
||||||
"Position": {
|
|
||||||
"X": -187.27399,
|
|
||||||
"Y": 9.149252,
|
|
||||||
"Z": -133.22656
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006217,
|
|
||||||
"Position": {
|
|
||||||
"X": -181.04828,
|
|
||||||
"Y": 28.214073,
|
|
||||||
"Z": -402.02948
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,77 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006217,
|
|
||||||
"Position": {
|
|
||||||
"X": -181.04828,
|
|
||||||
"Y": 28.214073,
|
|
||||||
"Z": -402.02948
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 30362
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -492.96475,
|
|
||||||
"Y": 20.999884,
|
|
||||||
"Z": -380.82272
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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": 1006688,
|
|
||||||
"Position": {
|
|
||||||
"X": 39.29187,
|
|
||||||
"Y": 1.2148079,
|
|
||||||
"Z": 0.8086548
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,63 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006688,
|
|
||||||
"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": 1007418,
|
|
||||||
"Position": {
|
|
||||||
"X": 9.689453,
|
|
||||||
"Y": -3.0000017,
|
|
||||||
"Z": -55.985413
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006219,
|
|
||||||
"Position": {
|
|
||||||
"X": 193.53015,
|
|
||||||
"Y": 7.8551283,
|
|
||||||
"Z": -25.864075
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,70 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000332,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.7821,
|
|
||||||
"Y": 6.103813,
|
|
||||||
"Z": -39.536194
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006219,
|
|
||||||
"Position": {
|
|
||||||
"X": 193.53015,
|
|
||||||
"Y": 7.8551283,
|
|
||||||
"Z": -25.864075
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000327,
|
|
||||||
"Position": {
|
|
||||||
"X": 177.66077,
|
|
||||||
"Y": 8.928099,
|
|
||||||
"Z": -43.01526
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000332,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.7821,
|
|
||||||
"Y": 6.103813,
|
|
||||||
"Z": -39.536194
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,100 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000332,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.7821,
|
|
||||||
"Y": 6.103813,
|
|
||||||
"Z": -39.536194
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 262.89966,
|
|
||||||
"Y": 11.363011,
|
|
||||||
"Z": -143.02156
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "OverworldEnemies",
|
|
||||||
"ComplexCombatData": [
|
|
||||||
{
|
|
||||||
"DataId": 4,
|
|
||||||
"MinimumKillCount": 4,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
64,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000332,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.7821,
|
|
||||||
"Y": 6.103813,
|
|
||||||
"Z": -39.536194
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000590,
|
|
||||||
"Position": {
|
|
||||||
"X": -165.9419,
|
|
||||||
"Y": 9.869227,
|
|
||||||
"Z": -81.34589
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006680,
|
|
||||||
"Position": {
|
|
||||||
"X": 209.30798,
|
|
||||||
"Y": 6.1041656,
|
|
||||||
"Z": -39.932922
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,104 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000332,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.7821,
|
|
||||||
"Y": 6.103813,
|
|
||||||
"Z": -39.536194
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006219,
|
|
||||||
"Position": {
|
|
||||||
"X": 193.53015,
|
|
||||||
"Y": 7.8551283,
|
|
||||||
"Z": -25.864075
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000332,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.7821,
|
|
||||||
"Y": 6.103813,
|
|
||||||
"Z": -39.536194
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006679,
|
|
||||||
"Position": {
|
|
||||||
"X": 352.49854,
|
|
||||||
"Y": -2.3331592,
|
|
||||||
"Z": 51.56018
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1909
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006679,
|
|
||||||
"Position": {
|
|
||||||
"X": 352.49854,
|
|
||||||
"Y": -2.3331592,
|
|
||||||
"Z": 51.56018
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000332,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.7821,
|
|
||||||
"Y": 6.103813,
|
|
||||||
"Z": -39.536194
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000332,
|
|
||||||
"Position": {
|
|
||||||
"X": 207.7821,
|
|
||||||
"Y": 6.103813,
|
|
||||||
"Z": -39.536194
|
|
||||||
},
|
|
||||||
"TerritoryId": 153,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,118 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006221,
|
|
||||||
"Position": {
|
|
||||||
"X": -219.65369,
|
|
||||||
"Y": 26.204851,
|
|
||||||
"Z": -337.789
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006222,
|
|
||||||
"Position": {
|
|
||||||
"X": -207.17181,
|
|
||||||
"Y": 27.31405,
|
|
||||||
"Z": -331.34973
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"DisableNavmesh": true,
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006223,
|
|
||||||
"Position": {
|
|
||||||
"X": -85.06909,
|
|
||||||
"Y": 26.222988,
|
|
||||||
"Z": -348.50085
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006224,
|
|
||||||
"Position": {
|
|
||||||
"X": -77.74481,
|
|
||||||
"Y": 27.626602,
|
|
||||||
"Z": -325.42914
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,76 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006226,
|
|
||||||
"Position": {
|
|
||||||
"X": -225.97089,
|
|
||||||
"Y": 26.138475,
|
|
||||||
"Z": -355.0622
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006228,
|
|
||||||
"Position": {
|
|
||||||
"X": -194.75098,
|
|
||||||
"Y": 19.02249,
|
|
||||||
"Z": -557.8546
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2257,
|
|
||||||
2258
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006228,
|
|
||||||
"Position": {
|
|
||||||
"X": -194.75098,
|
|
||||||
"Y": 19.02249,
|
|
||||||
"Z": -557.8546
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,165 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001980,
|
|
||||||
"Position": {
|
|
||||||
"X": -202.22784,
|
|
||||||
"Y": 28.122314,
|
|
||||||
"Z": -318.5016
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1006225,
|
|
||||||
"Position": {
|
|
||||||
"X": -83.84839,
|
|
||||||
"Y": 39.399178,
|
|
||||||
"Z": -333.69952
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007617,
|
|
||||||
"Position": {
|
|
||||||
"X": -114.7937,
|
|
||||||
"Y": 39.483143,
|
|
||||||
"Z": -339.71167
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001981,
|
|
||||||
"Position": {
|
|
||||||
"X": -78.93494,
|
|
||||||
"Y": 26.474365,
|
|
||||||
"Z": -350.08777
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007616,
|
|
||||||
"Position": {
|
|
||||||
"X": -98.77167,
|
|
||||||
"Y": 26.161106,
|
|
||||||
"Z": -341.3291
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006230,
|
|
||||||
"Position": {
|
|
||||||
"X": 34.89734,
|
|
||||||
"Y": 3.3969688,
|
|
||||||
"Z": -343.70947
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "SinglePlayerDuty"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,77 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006215,
|
|
||||||
"Position": {
|
|
||||||
"X": -227.34424,
|
|
||||||
"Y": 26.16842,
|
|
||||||
"Z": -352.98694
|
|
||||||
},
|
|
||||||
"TerritoryId": 146,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 30362
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -492.96475,
|
|
||||||
"Y": 20.999884,
|
|
||||||
"Z": -380.82272
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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": 1006688,
|
|
||||||
"Position": {
|
|
||||||
"X": 39.29187,
|
|
||||||
"Y": 1.2148079,
|
|
||||||
"Z": 0.8086548
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,61 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006242,
|
|
||||||
"Position": {
|
|
||||||
"X": 16.403442,
|
|
||||||
"Y": -44.865616,
|
|
||||||
"Z": 264.54565
|
|
||||||
},
|
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001982,
|
|
||||||
"Position": {
|
|
||||||
"X": -260.0901,
|
|
||||||
"Y": -56.38214,
|
|
||||||
"Z": 307.60657
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
1899
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006242,
|
|
||||||
"Position": {
|
|
||||||
"X": 16.403442,
|
|
||||||
"Y": -44.865616,
|
|
||||||
"Z": 264.54565
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,161 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006241,
|
|
||||||
"Position": {
|
|
||||||
"X": 17.349426,
|
|
||||||
"Y": -44.86564,
|
|
||||||
"Z": 262.745
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -195.16211,
|
|
||||||
"Y": -63.65229,
|
|
||||||
"Z": 370.28903
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "WalkTo"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -222.67735,
|
|
||||||
"Y": -66.345436,
|
|
||||||
"Z": 396.86935
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 2000616,
|
|
||||||
"GroundTarget": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2001988,
|
|
||||||
"Position": {
|
|
||||||
"X": -217.97516,
|
|
||||||
"Y": -66.086914,
|
|
||||||
"Z": 389.9137
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
8
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001986,
|
|
||||||
"Position": {
|
|
||||||
"X": -219.71472,
|
|
||||||
"Y": -65.90375,
|
|
||||||
"Z": 383.3523
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
32
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001987,
|
|
||||||
"Position": {
|
|
||||||
"X": -217.97516,
|
|
||||||
"Y": -65.20184,
|
|
||||||
"Z": 376.3026
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
16
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001985,
|
|
||||||
"Position": {
|
|
||||||
"X": -233.02057,
|
|
||||||
"Y": -66.453064,
|
|
||||||
"Z": 378.95776
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
64
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001984,
|
|
||||||
"Position": {
|
|
||||||
"X": -230.33496,
|
|
||||||
"Y": -66.819336,
|
|
||||||
"Z": 388.93713
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"CompletionQuestVariablesFlags": [
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
128
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006241,
|
|
||||||
"Position": {
|
|
||||||
"X": 17.349426,
|
|
||||||
"Y": -44.86564,
|
|
||||||
"Z": 262.745
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,71 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006240,
|
|
||||||
"Position": {
|
|
||||||
"X": 14.389221,
|
|
||||||
"Y": -44.86571,
|
|
||||||
"Z": 262.65344
|
|
||||||
},
|
|
||||||
"StopDistance": 7,
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1007541,
|
|
||||||
"Position": {
|
|
||||||
"X": -302.8459,
|
|
||||||
"Y": -51.768955,
|
|
||||||
"Z": 331.19702
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AutoOnEnterArea",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
182
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1007541,
|
|
||||||
"Position": {
|
|
||||||
"X": -302.8459,
|
|
||||||
"Y": -51.768955,
|
|
||||||
"Z": 331.19702
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002780,
|
|
||||||
"Position": {
|
|
||||||
"X": -89.79938,
|
|
||||||
"Y": -45.331406,
|
|
||||||
"Z": 195.88
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "CompleteQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,90 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1002780,
|
|
||||||
"Position": {
|
|
||||||
"X": -89.79938,
|
|
||||||
"Y": -45.331406,
|
|
||||||
"Z": 195.88
|
|
||||||
},
|
|
||||||
"TerritoryId": 154,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
|
||||||
"SkipIf": [
|
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000100,
|
|
||||||
"Position": {
|
|
||||||
"X": 23.819275,
|
|
||||||
"Y": -8,
|
|
||||||
"Z": 115.92273
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Gridania"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000146,
|
|
||||||
"Position": {
|
|
||||||
"X": 49.79016,
|
|
||||||
"Y": -1.4669685,
|
|
||||||
"Z": 51.743286
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1000248,
|
|
||||||
"Position": {
|
|
||||||
"X": 143.05322,
|
|
||||||
"Y": 14.250365,
|
|
||||||
"Z": -250.72101
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Lancers' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006263,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.819946,
|
|
||||||
"Y": 16.351469,
|
|
||||||
"Z": -334.5846
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,156 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006263,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.819946,
|
|
||||||
"Y": 16.351469,
|
|
||||||
"Z": -334.5846
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006259,
|
|
||||||
"Position": {
|
|
||||||
"X": 43.808594,
|
|
||||||
"Y": 2.5499606,
|
|
||||||
"Z": 21.683044
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "AcceptQuest",
|
|
||||||
"PickUpQuestId": 802,
|
|
||||||
"AetheryteShortcut": "Gridania"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 1000171,
|
|
||||||
"Position": {
|
|
||||||
"X": -114.366455,
|
|
||||||
"Y": -7.351947,
|
|
||||||
"Z": 94.52954
|
|
||||||
},
|
|
||||||
"TerritoryId": 132,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"TargetTerritoryId": 148
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"DataId": 2001999,
|
|
||||||
"Position": {
|
|
||||||
"X": -576.1349,
|
|
||||||
"Y": 68.13147,
|
|
||||||
"Z": 69.41321
|
|
||||||
},
|
|
||||||
"TerritoryId": 148,
|
|
||||||
"InteractionType": "Interact"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 2,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 148,
|
|
||||||
"InteractionType": "Duty",
|
|
||||||
"ContentFinderConditionId": 6
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 3,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": 0,
|
|
||||||
"Y": 0,
|
|
||||||
"Z": 0
|
|
||||||
},
|
|
||||||
"TerritoryId": 1,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"Comment": "Filler"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 4,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006263,
|
|
||||||
"Position": {
|
|
||||||
"X": 36.819946,
|
|
||||||
"Y": 16.351469,
|
|
||||||
"Z": -334.5846
|
|
||||||
},
|
|
||||||
"TerritoryId": 133,
|
|
||||||
"InteractionType": "Interact",
|
|
||||||
"AetheryteShortcut": "Gridania",
|
|
||||||
"AethernetShortcut": [
|
|
||||||
"[Gridania] Aetheryte Plaza",
|
|
||||||
"[Gridania] Lancers' Guild"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"TerritoryId": 128,
|
|
||||||
"InteractionType": "UseItem",
|
|
||||||
"ItemId": 30362
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Position": {
|
|
||||||
"X": -492.96475,
|
|
||||||
"Y": 20.999884,
|
|
||||||
"Z": -380.82272
|
|
||||||
},
|
|
||||||
"TerritoryId": 140,
|
|
||||||
"InteractionType": "WalkTo",
|
|
||||||
"$": "Avoid walking around Waking Sands table"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"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": 1006688,
|
|
||||||
"Position": {
|
|
||||||
"X": 39.29187,
|
|
||||||
"Y": 1.2148079,
|
|
||||||
"Z": 0.8086548
|
|
||||||
},
|
|
||||||
"TerritoryId": 212,
|
|
||||||
"InteractionType": "CompleteQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@ -1,57 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
|
||||||
"Author": "JerryWester",
|
|
||||||
"QuestSequence": [
|
|
||||||
{
|
|
||||||
"Sequence": 0,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006264,
|
|
||||||
"Position": {
|
|
||||||
"X": 710.90247,
|
|
||||||
"Y": 66.027,
|
|
||||||
"Z": -277.66846
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "AcceptQuest"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 1,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 2002033,
|
|
||||||
"Position": {
|
|
||||||
"X": 671.1986,
|
|
||||||
"Y": 64.37781,
|
|
||||||
"Z": -205.24915
|
|
||||||
},
|
|
||||||
"StopDistance": 0.25,
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"InteractionType": "Combat",
|
|
||||||
"EnemySpawnType": "AfterInteraction",
|
|
||||||
"KillEnemyDataIds": [
|
|
||||||
2239,
|
|
||||||
2240
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"Sequence": 255,
|
|
||||||
"Steps": [
|
|
||||||
{
|
|
||||||
"DataId": 1006264,
|
|
||||||
"Position": {
|
|
||||||
"X": 710.90247,
|
|
||||||
"Y": 66.027,
|
|
||||||
"Z": -277.66846
|
|
||||||
},
|
|
||||||
"TerritoryId": 135,
|
|
||||||
"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