Compare commits

...

39 Commits

Author SHA1 Message Date
Liza 42ec4ed355
Minor adjustments 2024-07-19 21:28:53 +02:00
Liza dea1a3da51
Version Bump 2024-07-19 21:17:29 +02:00
Liza 4ce89b7693
Minor cleanup for ARR part 3 2024-07-19 21:16:40 +02:00
Liza a6e8aa1ced Merge pull request 'ARR MSQ Part 3' (#6) from JerryWester/Questionable:arr-p3 into master
Reviewed-on: liza/Questionable#6
2024-07-19 14:33:23 +00:00
Liza eb69c24ef4
Minor cleanup for ARR part 2 2024-07-19 16:31:54 +02:00
Liza 49695219c9
Merge branch 'JerryWester-arr-p2' 2024-07-19 13:17:20 +02:00
Liza 5295b8e447
Minor DT adjustments 2024-07-19 13:16:48 +02:00
Liza f0af3045a7
Update validation for instant quests 2024-07-19 09:14:18 +02:00
Liza 86e2c0f1ca
Add Stone/Sky/Sea 2024-07-19 01:46:31 +02:00
Liza da2c505c13
Add Heritage Found side quests 2024-07-19 01:17:23 +02:00
Liza a42bcf0fdd
Add phys ranged role quests 2024-07-18 22:17:41 +02:00
Liza ec839c15d3
Add /lookout as usable emote 2024-07-18 18:38:23 +02:00
JerryWester 502b520d31 ARR MSQ Part 2 2024-07-18 09:08:57 -06:00
Liza 6bd5b21ad4
Add Shaaloani side quests 2024-07-18 16:33:48 +02:00
Liza 83db1f9dce
Fix wrong command condition 2024-07-17 21:42:49 +02:00
Liza 8ec3583ffc
Fix a potential movement issue if you're close to the target but in another zone 2024-07-17 20:41:21 +02:00
Liza 03c01b827a
Shadowbringers (start until Dohn Mheg) 2024-07-17 20:41:06 +02:00
Liza c5e59389dc
Fix data for one of the Zone 6 aetherytes 2024-07-17 15:05:49 +02:00
Liza 6f2ebe5a5a
Run JSON schema validation in separate thread 2024-07-17 15:05:24 +02:00
Liza aa73231f38
Use named aetherytes/aethernet shards for attuning (instead of ids) 2024-07-17 12:58:08 +02:00
Liza 98cca32acc
Load quest paths from HW/SB folders 2024-07-17 04:31:54 +02:00
Liza 01f9b48062
Version Bump 2024-07-16 20:42:52 +02:00
Liza 383e3b4dd6
Merge branch 'arr-msq-part4' 2024-07-16 20:41:43 +02:00
Liza 5e8de17b55
Disable some tribal quests for now 2024-07-16 20:41:27 +02:00
Liza 9eeda20d88
Fix stopDistance for WalkTo steps 2024-07-16 20:41:06 +02:00
Liza edb9f32c76
Minor cleanup for ARR part 4 2024-07-16 20:40:00 +02:00
Liza 7d026fa07c
Merge branch 'master' into arr-msq-part4 2024-07-16 14:44:51 +02:00
Liza 3a742ea2ad
Add Arcadion quests 2024-07-16 14:43:31 +02:00
Liza fb9e31cd80
Add currently visible unaccepted quest markers to /qst zone (only for unknown/not mapped quests) 2024-07-16 11:15:28 +02:00
Liza e239edb22c
Code cleanup/add suppressions 2024-07-16 10:54:47 +02:00
Liza 985fb7f4c1
Always show validation issues (for quests you can edit) 2024-07-16 10:52:54 +02:00
Jerry Wester 229b9bd690 ARR MSQ Part 3 2024-07-15 19:13:09 -06:00
Liza 9960f971db
Add editorconfig for questpath jsons 2024-07-16 00:55:30 +02:00
Liza 4a9fd60768
Load disabled quests in debug; mark a few tribal quests as disabled (as they're randomized & not fully explored) 2024-07-16 00:43:38 +02:00
Liza db61878683
Clean up quest validation 2024-07-16 00:18:10 +02:00
Liza 202abcf3a8
Add a (dev) option to not load certain quests 2024-07-15 23:09:09 +02:00
Liza d20a768996
Add fallback for missing versper bay aetheryte tickets 2024-07-15 21:39:22 +02:00
Liza 0eb77927b3
Show quest dependencies in quest selection window, add /qst zone as shortcut to show all (mapped) quests starting in the current zone 2024-07-15 20:20:46 +02:00
Liza a0e675cbdc
Add basic quest validation 2024-07-15 03:05:37 +02:00
416 changed files with 24221 additions and 1968 deletions

View File

@ -17,15 +17,15 @@
<ItemGroup>
<PackageReference Include="Json.More.Net" Version="2.0.1.2" GeneratePathProperty="true" />
<PackageReference Include="JsonPointer.Net" Version="5.0.0" GeneratePathProperty="true" />
<PackageReference Include="JsonSchema.Net" Version="7.0.4" GeneratePathProperty="true" />
<PackageReference Include="JsonPointer.Net" Version="5.0.2" GeneratePathProperty="true" />
<PackageReference Include="JsonSchema.Net" Version="7.1.2" GeneratePathProperty="true" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2"/>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.9.2"/>
<PackageReference Include="System.Text.Json" Version="8.0.3" PrivateAssets="all"/>
<PackageReference Include="System.Text.Json" Version="8.0.4" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>

View File

@ -65,7 +65,7 @@ public class QuestSourceGenerator : ISourceGenerator
continue;
var questNode = JsonNode.Parse(text.ToString());
var evaluationResult = questSchema.Evaluate(questNode, new EvaluationOptions()
var evaluationResult = questSchema.Evaluate(questNode, new EvaluationOptions
{
Culture = CultureInfo.InvariantCulture,
OutputFormat = OutputFormat.List
@ -79,6 +79,9 @@ public class QuestSourceGenerator : ISourceGenerator
}
var quest = questNode.Deserialize<QuestRoot>()!;
if (quest.Disabled)
continue;
quests.Add((id, quest));
}
@ -219,9 +222,7 @@ public class QuestSourceGenerator : ISourceGenerator
SyntaxKind.ObjectInitializerExpression,
SeparatedList<ExpressionSyntax>(
SyntaxNodeList(
Assignment(nameof(QuestRoot.Author), quest.Author, null)
.AsSyntaxNodeOrToken(),
AssignmentList(nameof(QuestRoot.Contributors), quest.Contributors)
AssignmentList(nameof(QuestRoot.Author), quest.Author)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestRoot.Comment), quest.Comment, null)
.AsSyntaxNodeOrToken(),
@ -320,6 +321,10 @@ public class QuestSourceGenerator : ISourceGenerator
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.Comment), step.Comment, emptyStep.Comment)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.Aetheryte), step.Aetheryte, emptyStep.Aetheryte)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.AethernetShard), step.AethernetShard, emptyStep.AethernetShard)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.AetheryteShortcut), step.AetheryteShortcut,
emptyStep.AetheryteShortcut)
.AsSyntaxNodeOrToken(),
@ -363,7 +368,7 @@ public class QuestSourceGenerator : ISourceGenerator
.AsSyntaxNodeOrToken(),
AssignmentList(nameof(QuestStep.PointMenuChoices), step.PointMenuChoices)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.PickupQuestId), step.PickupQuestId, emptyStep.PickupQuestId)
Assignment(nameof(QuestStep.PickUpQuestId), step.PickUpQuestId, emptyStep.PickUpQuestId)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.TurnInQuestId), step.TurnInQuestId, emptyStep.TurnInQuestId)
.AsSyntaxNodeOrToken(),

View File

@ -173,6 +173,8 @@ public static class RoslynShortcuts
SyntaxNodeList(
Assignment(nameof(ComplexCombatData.DataId), complexCombatData.DataId, default(uint))
.AsSyntaxNodeOrToken(),
Assignment(nameof(ComplexCombatData.MinimumKillCount), complexCombatData.MinimumKillCount, null)
.AsSyntaxNodeOrToken(),
Assignment(nameof(ComplexCombatData.RewardItemId), complexCombatData.RewardItemId, null)
.AsSyntaxNodeOrToken(),
Assignment(nameof(ComplexCombatData.RewardItemCount), complexCombatData.RewardItemCount, null)

View File

@ -13,9 +13,9 @@
},
"JsonPointer.Net": {
"type": "Direct",
"requested": "[5.0.0, )",
"resolved": "5.0.0",
"contentHash": "fm4T5w20AY6C+p5/pJr0vrXRNGgtSfHl34I1LxC9zdPwS9S3j0GiR1Mz/CVPWKDXXGDpCt1APHpCq7kn5adCfA==",
"requested": "[5.0.2, )",
"resolved": "5.0.2",
"contentHash": "H/OtixKadr+ja1j7Fru3WG56V9zP0AKT1Bd0O7RWN/zH1bl8ZIwW9aCa4+xvzuVvt4SPmrvBu3G6NpAkNOwNAA==",
"dependencies": {
"Humanizer.Core": "2.14.1",
"Json.More.Net": "2.0.1.2"
@ -23,9 +23,9 @@
},
"JsonSchema.Net": {
"type": "Direct",
"requested": "[7.0.4, )",
"resolved": "7.0.4",
"contentHash": "R0Hk2Tr/np4Q1NO8CBjyQsoiD1iFJyEQP20Sw7JnZCNGJoaSBe+g4b+nZqnBXPQhiqY5LGZ8JZwZkRh/eKZhEQ==",
"requested": "[7.1.2, )",
"resolved": "7.1.2",
"contentHash": "tvM82Wpsyk+C5aUWkqPZLo2ANDjEfCoDa9R24k7jRkCrwxbXnSBb7NpU1pz0ufp6qw+jIekHD9xJdUkjUtnZxQ==",
"dependencies": {
"JsonPointer.Net": "5.0.0"
}
@ -68,9 +68,9 @@
},
"System.Text.Json": {
"type": "Direct",
"requested": "[8.0.3, )",
"resolved": "8.0.3",
"contentHash": "hpagS9joOwv6efWfrMmV9MjQXpiXZH72PgN067Ysfr6AWMSD1/1hEcvh/U5mUpPLezEWsOJSuVrmqDIVD958iA==",
"requested": "[8.0.4, )",
"resolved": "8.0.4",
"contentHash": "bAkhgDJ88XTsqczoxEMliSrpijKZHhbJQldhAmObj/RbrN3sU5dcokuXmWJWsdQAhiMJ9bTayWsL1C9fbbCRhw==",
"dependencies": {
"Microsoft.Bcl.AsyncInterfaces": "8.0.0",
"System.Buffers": "4.5.1",
@ -264,7 +264,7 @@
"questionable.model": {
"type": "Project",
"dependencies": {
"System.Text.Json": "[8.0.3, )"
"System.Text.Json": "[8.0.4, )"
}
}
}

6
QuestPaths/.editorconfig Normal file
View File

@ -0,0 +1,6 @@
root = true
[*.json]
indent_size = 2
indent_style = space
insert_final_newline = true

View File

@ -0,0 +1,30 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,83 @@
{
"$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
}
]
}
]
}

View File

@ -0,0 +1,123 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,198 @@
{
"$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
}
]
}
]
}

View File

@ -0,0 +1,78 @@
{
"$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
}
]
}
]
}

View File

@ -0,0 +1,237 @@
{
"$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
}
]
}
]
}

View File

@ -31,15 +31,9 @@
"$": "New Gridania Navmesh workaround"
},
{
"DataId": 2,
"Position": {
"X": 32.913696,
"Y": 2.670288,
"Z": 30.014404
},
"StopDistance": 10,
"TerritoryId": 132,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Gridania",
"CompletionQuestVariablesFlags": [
null,
null,
@ -50,15 +44,9 @@
]
},
{
"DataId": 25,
"Position": {
"X": 166.58276,
"Y": -1.7243042,
"Z": 86.13721
},
"TerritoryId": 132,
"InteractionType": "AttuneAethernetShard",
"Comment": "Archers' Guild"
"AethernetShard": "[Gridania] Archers' Guild"
},
{
"DataId": 1000197,
@ -110,41 +98,23 @@
"Sequence": 255,
"Steps": [
{
"DataId": 26,
"Position": {
"X": 101.27405,
"Y": 9.018005,
"Z": -111.31464
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Leatherworkers' Guild"
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
},
{
"DataId": 27,
"Position": {
"X": 121.23291,
"Y": 12.649658,
"Z": -229.63306
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Lancers' Guild"
"AethernetShard": "[Gridania] Lancers' Guild"
},
{
"DataId": 30,
"Position": {
"X": -73.92999,
"Y": 7.9804688,
"Z": -140.15417
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
"AethernetShortcut": [
"[Gridania] Lancers' Guild",
"[Gridania] Leatherworkers' Guild & Shaded Bower"
],
"Comment": "Mih Khetto's Amphitheatre"
]
},
{
"Position": {
@ -156,30 +126,18 @@
"InteractionType": "WalkTo"
},
{
"DataId": 29,
"Position": {
"X": -311.0857,
"Y": 7.94989,
"Z": -177.05048
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Botanists' Guild"
"AethernetShard": "[Gridania] Botanists' Guild"
},
{
"DataId": 28,
"Position": {
"X": -145.15906,
"Y": 4.9591064,
"Z": -11.7647705
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Conjurers' Guild",
"AethernetShortcut": [
"[Gridania] Botanists' Guild",
"[Gridania] Mih Khetto's Amphitheatre"
],
"Comment": "Conjurers' Guild"
]
},
{
"DataId": 1000100,

View File

@ -31,15 +31,9 @@
"$": "New Gridania Navmesh workaround"
},
{
"DataId": 2,
"Position": {
"X": 32.913696,
"Y": 2.670288,
"Z": 30.014404
},
"StopDistance": 10,
"TerritoryId": 132,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Gridania",
"CompletionQuestVariablesFlags": [
null,
null,
@ -50,15 +44,9 @@
]
},
{
"DataId": 25,
"Position": {
"X": 166.58276,
"Y": -1.7243042,
"Z": 86.13721
},
"TerritoryId": 132,
"InteractionType": "AttuneAethernetShard",
"Comment": "Archers' Guild"
"AethernetShard": "[Gridania] Archers' Guild"
},
{
"Position": {
@ -83,41 +71,23 @@
"$": "If done after aetheryte: 33 1 0 0 0 128"
},
{
"DataId": 26,
"Position": {
"X": 101.27405,
"Y": 9.018005,
"Z": -111.31464
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Leatherworkers' Guild"
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
},
{
"DataId": 27,
"Position": {
"X": 121.23291,
"Y": 12.649658,
"Z": -229.63306
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Lancers' Guild"
"AethernetShard": "[Gridania] Lancers' Guild"
},
{
"DataId": 30,
"Position": {
"X": -73.92999,
"Y": 7.9804688,
"Z": -140.15417
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
"AethernetShortcut": [
"[Gridania] Lancers' Guild",
"[Gridania] Leatherworkers' Guild & Shaded Bower"
],
"Comment": "Mih Khetto's Amphitheatre"
]
},
{
"Position": {
@ -129,30 +99,18 @@
"InteractionType": "WalkTo"
},
{
"DataId": 29,
"Position": {
"X": -311.0857,
"Y": 7.94989,
"Z": -177.05048
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Botanists' Guild"
"AethernetShard": "[Gridania] Botanists' Guild"
},
{
"DataId": 28,
"Position": {
"X": -145.15906,
"Y": 4.9591064,
"Z": -11.7647705
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Conjurers' Guild",
"AethernetShortcut": [
"[Gridania] Botanists' Guild",
"[Gridania] Mih Khetto's Amphitheatre"
],
"Comment": "Conjurers' Guild"
]
},
{
"DataId": 1000323,

View File

@ -21,15 +21,9 @@
"Sequence": 255,
"Steps": [
{
"DataId": 3,
"Position": {
"X": 13.076904,
"Y": 0.56451416,
"Z": 35.90442
},
"StopDistance": 10,
"TerritoryId": 148,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Central Shroud - Bentbranch Meadows",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Blue Badger Gate (Central Shroud)"

View File

@ -25,16 +25,6 @@
"InteractionType": "EquipItem",
"ItemId": 2651
},
{
"Position": {
"X": 49.65071,
"Y": -8.046952,
"Z": 102.32186
},
"TerritoryId": 132,
"InteractionType": "WalkTo",
"$": "New Gridania Navmesh workaround"
},
{
"DataId": 1000286,
"Position": {

View File

@ -162,48 +162,24 @@
"Sequence": 6,
"Steps": [
{
"DataId": 8,
"Position": {
"X": -84.00108,
"Y": 20.77683,
"Z": 0.03414845
},
"StopDistance": 10,
"TerritoryId": 129,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Limsa Lominsa"
},
{
"DataId": 49,
"Position": {
"X": -213.61108,
"Y": 16.739136,
"Z": 51.80432
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Hawkers' Alley"
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
},
{
"DataId": 43,
"Position": {
"X": -335.1645,
"Y": 12.619202,
"Z": 56.381958
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Arcanists' Guild"
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
},
{
"DataId": 44,
"Position": {
"X": -179.40033,
"Y": 4.8065186,
"Z": 182.97095
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Fishermens' Guild",
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
"AethernetShortcut": [
"[Limsa Lominsa] Arcanists' Guild",
"[Limsa Lominsa] Hawkers' Alley"
@ -225,37 +201,19 @@
]
},
{
"DataId": 42,
"Position": {
"X": -56.50421,
"Y": 44.47998,
"Z": -131.45648
},
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"Comment": "Culinarians' Guild"
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
},
{
"DataId": 48,
"Position": {
"X": -5.1728516,
"Y": 44.63257,
"Z": -218.06671
},
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"Comment": "Marauders' Guild"
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
},
{
"DataId": 41,
"Position": {
"X": 16.067688,
"Y": 40.787354,
"Z": 68.80286
},
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"Comment": "Aftcastle"
"AethernetShard": "[Limsa Lominsa] The Aftcastle"
},
{
"DataId": 1002695,
@ -358,14 +316,9 @@
]
},
{
"DataId": 51,
"Position": {
"X": 6.6376343,
"Y": 30.655273,
"Z": -24.826477
},
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard"
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] The Chamber of Rule"
},
{
"DataId": 1001821,

View File

@ -31,15 +31,9 @@
"$": "New Gridania Navmesh workaround"
},
{
"DataId": 2,
"Position": {
"X": 32.913696,
"Y": 2.670288,
"Z": 30.014404
},
"StopDistance": 10,
"TerritoryId": 132,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Gridania",
"CompletionQuestVariablesFlags": [
null,
null,
@ -50,15 +44,9 @@
]
},
{
"DataId": 25,
"Position": {
"X": 166.58276,
"Y": -1.7243042,
"Z": 86.13721
},
"TerritoryId": 132,
"InteractionType": "AttuneAethernetShard",
"Comment": "Archers' Guild"
"AethernetShard": "[Gridania] Archers' Guild"
},
{
"Position": {
@ -83,26 +71,14 @@
"$": "If done after aetheryte: 33 1 0 0 0 128"
},
{
"DataId": 26,
"Position": {
"X": 101.27405,
"Y": 9.018005,
"Z": -111.31464
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Leatherworkers' Guild"
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
},
{
"DataId": 27,
"Position": {
"X": 121.23291,
"Y": 12.649658,
"Z": -229.63306
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Lancers' Guild"
"AethernetShard": "[Gridania] Lancers' Guild"
},
{
"DataId": 1000251,
@ -132,19 +108,13 @@
"Comment": "Pick up Class Quest"
},
{
"DataId": 30,
"Position": {
"X": -73.92999,
"Y": 7.9804688,
"Z": -140.15417
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
"AethernetShortcut": [
"[Gridania] Lancers' Guild",
"[Gridania] Leatherworkers' Guild & Shaded Bower"
],
"Comment": "Mih Khetto's Amphitheatre"
]
},
{
"Position": {
@ -156,38 +126,20 @@
"InteractionType": "WalkTo"
},
{
"DataId": 29,
"Position": {
"X": -311.0857,
"Y": 7.94989,
"Z": -177.05048
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Botanists' Guild"
"AethernetShard": "[Gridania] Botanists' Guild"
},
{
"DataId": 28,
"Position": {
"X": -145.15906,
"Y": 4.9591064,
"Z": -11.7647705
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Conjurers' Guild",
"AethernetShortcut": [
"[Gridania] Botanists' Guild",
"[Gridania] Mih Khetto's Amphitheatre"
],
"Comment": "Conjurers' Guild"
]
},
{
"DataId": 1000100,
"Position": {
"X": 23.819275,
"Y": -8,
"Z": 115.92273
},
"TerritoryId": 132,
"InteractionType": "CompleteQuest",
"AethernetShortcut": [

View File

@ -127,15 +127,9 @@
"Comment": "Quest Turn-In (Making a Name)"
},
{
"DataId": 8,
"Position": {
"X": -84.031494,
"Y": 20.767456,
"Z": 0.015197754
},
"StopDistance": 10,
"TerritoryId": 129,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Limsa Lominsa",
"CompletionQuestVariablesFlags": [
null,
null,
@ -164,37 +158,19 @@
]
},
{
"DataId": 49,
"Position": {
"X": -213.61108,
"Y": 16.739136,
"Z": 51.80432
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Hawkers' Alley"
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
},
{
"DataId": 43,
"Position": {
"X": -335.1645,
"Y": 12.619202,
"Z": 56.381958
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Arcanists' Guild"
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
},
{
"DataId": 44,
"Position": {
"X": -179.40033,
"Y": 4.8065186,
"Z": 182.97095
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Fishermens' Guild",
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
"AethernetShortcut": [
"[Limsa Lominsa] Arcanists' Guild",
"[Limsa Lominsa] Hawkers' Alley"
@ -216,26 +192,14 @@
]
},
{
"DataId": 42,
"Position": {
"X": -56.50421,
"Y": 44.47998,
"Z": -131.45648
},
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"Comment": "Culinarians' Guild"
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
},
{
"DataId": 48,
"Position": {
"X": -5.1728516,
"Y": 44.63257,
"Z": -218.06671
},
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"Comment": "Marauders' Guild"
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
},
{
"DataId": 1000926,

View File

@ -127,15 +127,9 @@
"Comment": "Quest Turn-In (Making a Name)"
},
{
"DataId": 8,
"Position": {
"X": -84.031494,
"Y": 20.767456,
"Z": 0.015197754
},
"StopDistance": 10,
"TerritoryId": 129,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Gridania",
"CompletionQuestVariablesFlags": [
null,
null,
@ -164,26 +158,14 @@
]
},
{
"DataId": 49,
"Position": {
"X": -213.61108,
"Y": 16.739136,
"Z": 51.80432
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Hawkers' Alley"
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
},
{
"DataId": 43,
"Position": {
"X": -335.1645,
"Y": 12.619202,
"Z": 56.381958
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Arcanists' Guild"
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
},
{
"DataId": 1000895,
@ -221,15 +203,9 @@
"Comment": "Pick up Class Quest"
},
{
"DataId": 44,
"Position": {
"X": -179.40033,
"Y": 4.8065186,
"Z": 182.97095
},
"TerritoryId": 129,
"InteractionType": "AttuneAethernetShard",
"Comment": "Fishermens' Guild",
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
"AethernetShortcut": [
"[Limsa Lominsa] Arcanists' Guild",
"[Limsa Lominsa] Hawkers' Alley"
@ -251,26 +227,14 @@
]
},
{
"DataId": 42,
"Position": {
"X": -56.50421,
"Y": 44.47998,
"Z": -131.45648
},
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"Comment": "Culinarians' Guild"
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
},
{
"DataId": 48,
"Position": {
"X": -5.1728516,
"Y": 44.63257,
"Z": -218.06671
},
"TerritoryId": 128,
"InteractionType": "AttuneAethernetShard",
"Comment": "Marauders' Guild"
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
},
{
"DataId": 1000972,

View File

@ -47,15 +47,9 @@
"TargetTerritoryId": 138
},
{
"DataId": 13,
"Position": {
"X": 651.5449,
"Y": 11.734131,
"Z": 513.35913
},
"StopDistance": 10,
"TerritoryId": 138,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Western La Noscea - Swiftperch"
},
{
"Position": {

View File

@ -31,15 +31,9 @@
"TargetTerritoryId": 135
},
{
"DataId": 10,
"Position": {
"X": 156.11499,
"Y": 15.518433,
"Z": 673.21277
},
"StopDistance": 10,
"TerritoryId": 135,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Lower La Noscea - Moraby Drydocks"
},
{
"DataId": 1002238,

View File

@ -21,25 +21,14 @@
"Sequence": 255,
"Steps": [
{
"DataId": 41,
"Position": {
"X": 16.067688,
"Y": 40.787354,
"Z": 68.80286
},
"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,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Middle La Noscea - Summerford Farms",
"AethernetShortcut": [
"[Limsa Lominsa] The Aftcastle",
"[Limsa Lominsa] Zephyr Gate (Middle La Noscea)"

View File

@ -162,26 +162,14 @@
"Sequence": 5,
"Steps": [
{
"DataId": 2,
"Position": {
"X": 32.913696,
"Y": 2.670288,
"Z": 30.014404
},
"StopDistance": 10,
"TerritoryId": 132,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Gridania"
},
{
"DataId": 25,
"Position": {
"X": 166.58276,
"Y": -1.7243042,
"Z": 86.13721
},
"TerritoryId": 132,
"InteractionType": "AttuneAethernetShard",
"Comment": "Archers' Guild"
"AethernetShard": "[Gridania] Archers' Guild"
},
{
"Position": {
@ -198,41 +186,23 @@
]
},
{
"DataId": 26,
"Position": {
"X": 101.27405,
"Y": 9.018005,
"Z": -111.31464
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Leatherworkers' Guild"
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
},
{
"DataId": 27,
"Position": {
"X": 121.23291,
"Y": 12.649658,
"Z": -229.63306
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Lancers' Guild"
"AethernetShard": "[Gridania] Lancers' Guild"
},
{
"DataId": 30,
"Position": {
"X": -73.92999,
"Y": 7.9804688,
"Z": -140.15417
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Mih Khetto's Amphitheatre",
"AethernetShortcut": [
"[Gridania] Lancers' Guild",
"[Gridania] Leatherworkers' Guild & Shaded Bower"
],
"Comment": "Mih Khetto's Amphitheatre"
]
},
{
"Position": {
@ -244,30 +214,18 @@
"InteractionType": "WalkTo"
},
{
"DataId": 29,
"Position": {
"X": -311.0857,
"Y": 7.94989,
"Z": -177.05048
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"Comment": "Botanists' Guild"
"AethernetShard": "[Gridania] Botanists' Guild"
},
{
"DataId": 28,
"Position": {
"X": -145.15906,
"Y": 4.9591064,
"Z": -11.7647705
},
"TerritoryId": 133,
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Gridania] Conjurers' Guild",
"AethernetShortcut": [
"[Gridania] Botanists' Guild",
"[Gridania] Mih Khetto's Amphitheatre"
],
"Comment": "Conjurers' Guild"
]
},
{
"DataId": 1000460,
@ -385,14 +343,9 @@
]
},
{
"DataId": 51,
"Position": {
"X": 6.6376343,
"Y": 30.655273,
"Z": -24.826477
},
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard"
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] The Chamber of Rule"
},
{
"DataId": 1001821,

View File

@ -22,15 +22,9 @@
"Sequence": 255,
"Steps": [
{
"DataId": 37,
"Position": {
"X": -98.22869,
"Y": 42.37336,
"Z": 88.46719
},
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"Comment": "Alchemists' Guild"
"AethernetShard": "[Ul'dah] Alchemists' Guild"
},
{
"Position": {
@ -54,59 +48,29 @@
]
},
{
"DataId": 35,
"Position": {
"X": -53.8269,
"Y": 10.72502,
"Z": 12.24082
},
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"Comment": "Gladiators' Guild"
"AethernetShard": "[Ul'dah] Gladiators' Guild"
},
{
"DataId": 50,
"Position": {
"X": -19.31449,
"Y": 14.63075,
"Z": 72.0533
},
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"Comment": "Goldsmiths' Guild"
"AethernetShard": "[Ul'dah] Goldsmiths' Guild"
},
{
"DataId": 36,
"Position": {
"X": 33.52188,
"Y": 13.23228,
"Z": 113.2191
},
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"Comment": "Miners' Guild"
"AethernetShard": "[Ul'dah] Miners' Guild"
},
{
"DataId": 47,
"Position": {
"X": 89.67633,
"Y": 12.93493,
"Z": 58.2767
},
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"Comment": "Weavers' Guild"
"AethernetShard": "[Ul'dah] Weavers' Guild"
},
{
"DataId": 125,
"Position": {
"X": 131.9447,
"Y": 4.714966,
"Z": -29.800903
},
"TerritoryId": 131,
"InteractionType": "AttuneAethernetShard",
"Comment": "Sapphire Avenue Exchange"
"AethernetShard": "[Ul'dah] Sapphire Avenue Exchange"
},
{
"Position": {
@ -119,36 +83,19 @@
"TargetTerritoryId": 130
},
{
"DataId": 33,
"Position": {
"X": 64.22522,
"Y": 4.5318604,
"Z": -115.31244
},
"TerritoryId": 130,
"InteractionType": "AttuneAethernetShard",
"Comment": "Adventurers' Guild"
"AethernetShard": "[Ul'dah] Adventurers' Guild"
},
{
"DataId": 9,
"Position": {
"X": -144.51825,
"Y": -1.3580933,
"Z": -169.6651
},
"StopDistance": 10,
"TerritoryId": 130,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Ul'dah"
},
{
"DataId": 34,
"Position": {
"X": -154.83331,
"Y": 14.633362,
"Z": 73.07532
},
"TerritoryId": 130,
"InteractionType": "AttuneAethernetShard"
"InteractionType": "AttuneAethernetShard",
"AethernetShard": "[Ul'dah] Thaumaturges' Guild"
},
{
"DataId": 1000972,

View File

@ -88,15 +88,9 @@
"TargetTerritoryId": 138
},
{
"DataId": 14,
"Position": {
"X": 260.94446,
"Y": -19.60791,
"Z": 218.52441
},
"StopDistance": 10,
"TerritoryId": 138,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Western La Noscea - Aleport"
},
{
"DataId": 1017075,

View File

@ -71,7 +71,8 @@
"Z": -380.82272
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
"InteractionType": "WalkTo",
"$": "Avoid walking around Waking Sands table"
},
{
"DataId": 2001711,

View File

@ -110,7 +110,8 @@
"Z": -380.82272
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
"InteractionType": "WalkTo",
"$": "Avoid walking around Waking Sands table"
},
{
"DataId": 2001711,

View File

@ -44,15 +44,9 @@
"Sequence": 255,
"Steps": [
{
"DataId": 53,
"Position": {
"X": -16.159302,
"Y": 0.32037354,
"Z": -166.58276
},
"StopDistance": 10,
"TerritoryId": 141,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Central Thanalan - Black Brush Station",
"AetheryteShortcut": "Ul'dah",
"AethernetShortcut": [
"[Ul'dah] Aetheryte Plaza",
@ -80,15 +74,9 @@
"$": "Camp Drybone Lantern"
},
{
"DataId": 18,
"Position": {
"X": -386.3432,
"Y": -57.1756,
"Z": 142.59558
},
"StopDistance": 10,
"TerritoryId": 145,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Eastern Thanalan - Camp Drybone"
},
{
"DataId": 1003929,

View File

@ -149,7 +149,8 @@
"Z": -380.82272
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
"InteractionType": "WalkTo",
"$": "Avoid walking around Waking Sands table"
},
{
"DataId": 2001711,

View File

@ -193,7 +193,8 @@
"Z": -380.82272
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
"InteractionType": "WalkTo",
"$": "Avoid walking around Waking Sands table"
},
{
"DataId": 2001711,

View File

@ -40,15 +40,9 @@
"Sequence": 2,
"Steps": [
{
"DataId": 17,
"Position": {
"X": 68.0094,
"Y": 48.203125,
"Z": -227.039
},
"StopDistance": 10,
"TerritoryId": 140,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Western Thanalan - Horizon",
"AethernetShortcut": [
"[Ul'dah] Adventurers' Guild",
"[Ul'dah] Gate of the Sultana (Western Thanalan)"

View File

@ -34,15 +34,9 @@
"$": "New Gridania Navmesh workaround"
},
{
"DataId": 3,
"Position": {
"X": 13.076904,
"Y": 0.56451416,
"Z": 35.90442
},
"StopDistance": 10,
"TerritoryId": 148,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Central Shroud - Bentbranch Meadows",
"AethernetShortcut": [
"[Gridania] Aetheryte Plaza",
"[Gridania] Blue Badger Gate (Central Shroud)"

View File

@ -65,6 +65,11 @@
"[Gridania] Lancers' Guild"
]
},
{
"TerritoryId": 152,
"InteractionType": "AttuneAetheryte",
"Aetheryte": "East Shroud - Hawthorne Hut"
},
{
"DataId": 1004886,
"Position": {

View File

@ -33,7 +33,8 @@
"Z": -380.82272
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
"InteractionType": "WalkTo",
"$": "Avoid walking around Waking Sands table"
},
{
"DataId": 2001711,

View File

@ -34,7 +34,8 @@
"Z": -380.82272
},
"TerritoryId": 140,
"InteractionType": "WalkTo"
"InteractionType": "WalkTo",
"$": "Avoid walking around Waking Sands table"
},
{
"DataId": 2001711,

View File

@ -33,6 +33,15 @@
"ItemId": 2000766,
"KillEnemyDataIds": [
46
],
"$": "QW: 16 0 1 16 0 16",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
16
]
},
{
@ -44,7 +53,16 @@
},
"TerritoryId": 156,
"InteractionType": "UseItem",
"ItemId": 2000766
"ItemId": 2000766,
"$": "QW: 32 16 1 16 0 80",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
},
{
"DataId": 2002234,
@ -55,7 +73,52 @@
},
"TerritoryId": 156,
"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,
@ -70,8 +133,51 @@
"ItemId": 2000766,
"KillEnemyDataIds": [
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,
"Position": {
@ -96,9 +202,10 @@
"Z": -687.4037
},
"TerritoryId": 156,
"InteractionType": "CompleteQuest"
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Mor Dhona"
}
]
}
]
}
}

View File

@ -56,9 +56,10 @@
"Z": -697.0779
},
"TerritoryId": 156,
"InteractionType": "CompleteQuest"
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "Mor Dhona"
}
]
}
]
}
}

View File

@ -12,6 +12,7 @@
"Y": 25.009521,
"Z": -697.0779
},
"StopDistance": 5,
"TerritoryId": 156,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Mor Dhona",
@ -40,6 +41,27 @@
{
"Sequence": 2,
"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,
"Position": {
@ -64,7 +86,14 @@
"Z": -682.06305
},
"TerritoryId": 156,
"InteractionType": "Interact"
"InteractionType": "Interact",
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_GAIUSC604_01004_EVENTAREA_WARP_YESNO_TITLE",
"Yes": true
}
]
},
{
"DataId": 1006555,
@ -79,4 +108,4 @@
]
}
]
}
}

View File

@ -27,6 +27,7 @@
"Y": -158.5813,
"Z": 1.3274536
},
"StopDistance": 5,
"TerritoryId": 156,
"InteractionType": "Interact"
}
@ -64,7 +65,15 @@
},
"TerritoryId": 156,
"InteractionType": "Interact",
"AetheryteShortcut": "Mor Dhona"
"AetheryteShortcut": "Mor Dhona",
"TargetTerritoryId": 156,
"DialogueChoices": [
{
"Type": "YesNo",
"Prompt": "TEXT_GAIUSC605_01005_Q1_000_000",
"Yes": true
}
]
},
{
"DataId": 1006557,
@ -88,6 +97,7 @@
"Y": 3.7940114,
"Z": -636.68274
},
"StopDistance": 7,
"TerritoryId": 156,
"InteractionType": "Interact"
}
@ -96,6 +106,27 @@
{
"Sequence": 5,
"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": {
"X": -169.3748,
@ -110,6 +141,16 @@
{
"Sequence": 6,
"Steps": [
{
"Position": {
"X": -183.43071,
"Y": -2.638534,
"Z": -595.8602
},
"TerritoryId": 156,
"InteractionType": "WalkTo",
"DisableNavmesh": true
},
{
"Position": {
"X": -227.08566,
@ -176,6 +217,7 @@
"Y": 3.1014364,
"Z": -641.3519
},
"StopDistance": 7,
"TerritoryId": 156,
"InteractionType": "SinglePlayerDuty"
}
@ -197,4 +239,4 @@
]
}
]
}
}

View File

@ -12,6 +12,7 @@
"Y": 22.996977,
"Z": -475.21173
},
"StopDistance": 7,
"TerritoryId": 140,
"InteractionType": "AcceptQuest"
}
@ -31,15 +32,10 @@
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
},
{
"DataId": 21,
"Position": {
"X": 20.98108,
"Y": 8.8349,
"Z": 454.0321
},
"TerritoryId": 147,
"StopDistance": 5,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Northern Thanalan - Camp Bluefog"
},
{
"DataId": 1006638,
@ -54,4 +50,4 @@
]
}
]
}
}

View File

@ -0,0 +1,90 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,102 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,184 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,52 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,132 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,80 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,104 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,83 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,70 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,107 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,41 @@
{
"$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"
}
]
}
]
}

View File

@ -12,6 +12,7 @@
"Y": -16.42,
"Z": -7.522766
},
"StopDistance": 7,
"TerritoryId": 145,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
@ -67,4 +68,4 @@
]
}
]
}
}

View File

@ -25,7 +25,15 @@
"Sequence": 1,
"Steps": [
{
"DataId": 132,
"Position": {
"X": -491.4813,
"Y": 205.20322,
"Z": -185.17868
},
"TerritoryId": 155,
"InteractionType": "WalkTo"
},
{
"Position": {
"X": -321.0041,
"Y": 255.60681,
@ -34,8 +42,13 @@
"TerritoryId": 155,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"KillEnemyDataIds": [
132
"ComplexCombatData": [
{
"DataId": 132,
"MinimumKillCount": 3,
"RewardItemId": 2003018,
"RewardItemCount": 3
}
]
}
]
@ -56,4 +69,4 @@
]
}
]
}
}

View File

@ -60,8 +60,10 @@
],
"AethernetShortcut": [
"[Gridania] Mih Khetto's Amphitheatre",
"[Gridania] Blue Badger Gate (Central Shroud)"
]
"[Gridania] White Wolf Gate (Central Shroud)"
],
"StopDistance": 4,
"IgnoreDistanceToObject": true
}
]
},
@ -86,4 +88,4 @@
]
}
]
}
}

View File

@ -12,8 +12,10 @@
"Y": 25.548265,
"Z": -698.05444
},
"StopDistance": 5,
"TerritoryId": 156,
"InteractionType": "AcceptQuest"
"InteractionType": "AcceptQuest",
"IgnoreDistanceToObject": true
}
]
},
@ -22,14 +24,35 @@
"Steps": [
{
"Position": {
"X": -458.05878,
"Y": -3.372772,
"Z": -507.58792
"X": -429.60284,
"Y": -15.201682,
"Z": -477.29346
},
"TerritoryId": 156,
"InteractionType": "Combat",
"EnemySpawnType": "OverworldEnemies",
"KillEnemyDataIds": []
"ComplexCombatData": [
{
"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
}
]
}
]
},
@ -79,4 +102,4 @@
]
}
]
}
}

View File

@ -25,15 +25,10 @@
"Sequence": 1,
"Steps": [
{
"DataId": 22,
"Position": {
"X": -26.596497,
"Y": 49.881714,
"Z": -30.838562
},
"TerritoryId": 147,
"StopDistance": 5,
"InteractionType": "AttuneAetheryte"
"InteractionType": "AttuneAetheryte",
"Aetheryte": "Northern Thanalan - Ceruleum Processing Plant"
},
{
"DataId": 1006647,
@ -59,7 +54,15 @@
},
"TerritoryId": 147,
"InteractionType": "Emote",
"Emote": "psych"
"Emote": "psych",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
},
{
"DataId": 1006650,
@ -70,7 +73,15 @@
},
"TerritoryId": 147,
"InteractionType": "Emote",
"Emote": "psych"
"Emote": "psych",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
32
]
},
{
"DataId": 1006649,
@ -81,7 +92,15 @@
},
"TerritoryId": 147,
"InteractionType": "Emote",
"Emote": "psych"
"Emote": "psych",
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
]
}
]
},
@ -95,11 +114,12 @@
"Y": 46.99734,
"Z": 32.547485
},
"StopDistance": 7,
"TerritoryId": 147,
"InteractionType": "Emote",
"InteractionType": "CompleteQuest",
"Emote": "psych"
}
]
}
]
}
}

View File

@ -12,6 +12,7 @@
"Y": 46.99734,
"Z": 32.547485
},
"StopDistance": 7,
"TerritoryId": 147,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
@ -40,12 +41,6 @@
"Sequence": 2,
"Steps": [
{
"DataId": 2002710,
"Position": {
"X": -295.1773,
"Y": 87.96973,
"Z": -230.9999
},
"TerritoryId": 147,
"InteractionType": "Duty",
"ContentFinderConditionId": 15
@ -62,10 +57,11 @@
"Y": 88,
"Z": -225.17743
},
"StopDistance": 7,
"TerritoryId": 147,
"InteractionType": "CompleteQuest"
}
]
}
]
}
}

View File

@ -38,7 +38,8 @@
"Z": -0.015319824
},
"TerritoryId": 212,
"InteractionType": "Interact"
"InteractionType": "Interact",
"TargetTerritoryId": 140
},
{
"DataId": 1006578,
@ -92,10 +93,11 @@
"Y": 22.996977,
"Z": -475.21173
},
"StopDistance": 7,
"TerritoryId": 140,
"InteractionType": "CompleteQuest"
}
]
}
]
}
}

View File

@ -12,6 +12,7 @@
"Y": 88,
"Z": -225.17743
},
"StopDistance": 7,
"TerritoryId": 147,
"InteractionType": "AcceptQuest",
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
@ -41,15 +42,24 @@
"Sequence": 2,
"Steps": [
{
"DataId": 2002711,
"Position": {
"X": -113.206726,
"Y": 47.348755,
"Z": 29.587158
},
"TerritoryId": 147,
"InteractionType": "Duty",
"ContentFinderConditionId": 86
"ContentFinderConditionId": 16
}
]
},
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": 0,
"Y": 0,
"Z": 0
},
"TerritoryId": 1,
"InteractionType": "WalkTo",
"Comment": "Filler"
}
]
},
@ -57,15 +67,24 @@
"Sequence": 4,
"Steps": [
{
"DataId": 2012614,
"Position": {
"X": -821,
"Y": -344.1316,
"Z": 0
},
"TerritoryId": 1053,
"InteractionType": "Duty",
"ContentFinderConditionId": 20082
"ContentFinderConditionId": 830
}
]
},
{
"Sequence": 5,
"Steps": [
{
"Position": {
"X": 0,
"Y": 0,
"Z": 0
},
"TerritoryId": 1,
"InteractionType": "WalkTo",
"Comment": "Filler"
}
]
},
@ -95,7 +114,8 @@
"Z": 0
},
"TerritoryId": 212,
"InteractionType": "Interact"
"InteractionType": "Interact",
"TargetTerritoryId": 212
},
{
"DataId": 1006692,
@ -110,4 +130,4 @@
]
}
]
}
}

View File

@ -0,0 +1,68 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,60 @@
{
"$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)"
]
}
]
}
]
}

View File

@ -47,17 +47,29 @@
{
"TerritoryId": 128,
"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,
"Position": {
"X": -480.91858,
"Y": 17.990356,
"X": -480.9181,
"Y": 18.00103,
"Z": -386.862
},
"TerritoryId": 140,
"InteractionType": "Interact"
"InteractionType": "Interact",
"TargetTerritoryId": 212
}
]
},
@ -72,7 +84,8 @@
"Z": -0.015319824
},
"TerritoryId": 212,
"InteractionType": "Interact"
"InteractionType": "Interact",
"TargetTerritoryId": 212
},
{
"DataId": 1007467,
@ -110,4 +123,4 @@
]
}
]
}
}

View File

@ -36,15 +36,9 @@
"Sequence": 2,
"Steps": [
{
"DataId": 2002689,
"Position": {
"X": -83.72626,
"Y": -0.9003296,
"Z": -32.6391
},
"TerritoryId": 331,
"InteractionType": "Duty",
"ContentFinderConditionId": 20003
"ContentFinderConditionId": 58
}
]
},
@ -58,10 +52,11 @@
"Y": 84,
"Z": -3.768982
},
"StopDistance": 5,
"TerritoryId": 130,
"InteractionType": "CompleteQuest"
}
]
}
]
}
}

View File

@ -12,6 +12,7 @@
"Y": 84,
"Z": -3.768982
},
"StopDistance": 5,
"TerritoryId": 130,
"InteractionType": "AcceptQuest"
}
@ -23,17 +24,29 @@
{
"TerritoryId": 128,
"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,
"Position": {
"X": -480.91858,
"Y": 17.990356,
"X": -480.9181,
"Y": 18.00103,
"Z": -386.862
},
"TerritoryId": 140,
"InteractionType": "Interact"
"InteractionType": "Interact",
"TargetTerritoryId": 212
},
{
"DataId": 1007630,
@ -48,4 +61,4 @@
]
}
]
}
}

View File

@ -23,12 +23,14 @@
{
"TerritoryId": 156,
"InteractionType": "EquipItem",
"ItemId": 6223
"ItemId": 6223,
"Comment": "Can be re-bought from Glaumunt in Mor Dhona"
},
{
"TerritoryId": 156,
"InteractionType": "EquipItem",
"ItemId": 6224
"ItemId": 6224,
"Comment": "Can be re-bought from Glaumunt in Mor Dhona"
},
{
"DataId": 2002502,
@ -38,7 +40,8 @@
"Z": 16.281311
},
"TerritoryId": 156,
"InteractionType": "Interact"
"InteractionType": "Interact",
"TargetTerritoryId": 156
},
{
"DataId": 1007537,
@ -93,6 +96,15 @@
{
"Sequence": 3,
"Steps": [
{
"Position": {
"X": -530.1089,
"Y": -3.3262053,
"Z": -308.2147
},
"TerritoryId": 335,
"InteractionType": "WalkTo"
},
{
"DataId": 1007611,
"Position": {
@ -100,6 +112,7 @@
"Y": -1.9197441,
"Z": -308.00336
},
"StopDistance": 7,
"TerritoryId": 335,
"InteractionType": "Emote",
"Emote": "imperialsalute"
@ -152,4 +165,4 @@
]
}
]
}
}

View File

@ -43,17 +43,29 @@
{
"TerritoryId": 128,
"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,
"Position": {
"X": -480.91858,
"Y": 17.990356,
"X": -480.9181,
"Y": 18.00103,
"Z": -386.862
},
"TerritoryId": 140,
"InteractionType": "Interact"
"InteractionType": "Interact",
"TargetTerritoryId": 212
},
{
"DataId": 2001715,
@ -63,7 +75,8 @@
"Z": -0.015319824
},
"TerritoryId": 212,
"InteractionType": "Interact"
"InteractionType": "Interact",
"TargetTerritoryId": 212
},
{
"DataId": 1006690,
@ -78,4 +91,4 @@
]
}
]
}
}

View File

@ -0,0 +1,83 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,67 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,100 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,76 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,86 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,176 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,85 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,82 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,37 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,242 @@
{
"$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
}
]
}
]
}

View File

@ -0,0 +1,46 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,57 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,88 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,53 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,99 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,70 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,71 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,100 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,77 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,63 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,70 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,100 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,104 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,41 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,118 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,76 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,165 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,77 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,61 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,161 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,71 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,90 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,156 @@
{
"$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"
}
]
}
]
}

View File

@ -0,0 +1,57 @@
{
"$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