forked from liza/Questionable
Compare commits
No commits in common. "502b520d313defa4d5bf77f52cd12e1eae598b4c" and "9eeda20d88d9df39a78079208da2a369894baba6" have entirely different histories.
502b520d31
...
9eeda20d88
@ -17,15 +17,15 @@
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Json.More.Net" Version="2.0.1.2" GeneratePathProperty="true" />
|
||||
<PackageReference Include="JsonPointer.Net" Version="5.0.2" GeneratePathProperty="true" />
|
||||
<PackageReference Include="JsonSchema.Net" Version="7.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="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.4" PrivateAssets="all" />
|
||||
<PackageReference Include="System.Text.Json" Version="8.0.3" PrivateAssets="all"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -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
|
||||
@ -323,10 +323,6 @@ 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(),
|
||||
|
@ -13,9 +13,9 @@
|
||||
},
|
||||
"JsonPointer.Net": {
|
||||
"type": "Direct",
|
||||
"requested": "[5.0.2, )",
|
||||
"resolved": "5.0.2",
|
||||
"contentHash": "H/OtixKadr+ja1j7Fru3WG56V9zP0AKT1Bd0O7RWN/zH1bl8ZIwW9aCa4+xvzuVvt4SPmrvBu3G6NpAkNOwNAA==",
|
||||
"requested": "[5.0.0, )",
|
||||
"resolved": "5.0.0",
|
||||
"contentHash": "fm4T5w20AY6C+p5/pJr0vrXRNGgtSfHl34I1LxC9zdPwS9S3j0GiR1Mz/CVPWKDXXGDpCt1APHpCq7kn5adCfA==",
|
||||
"dependencies": {
|
||||
"Humanizer.Core": "2.14.1",
|
||||
"Json.More.Net": "2.0.1.2"
|
||||
@ -23,9 +23,9 @@
|
||||
},
|
||||
"JsonSchema.Net": {
|
||||
"type": "Direct",
|
||||
"requested": "[7.1.2, )",
|
||||
"resolved": "7.1.2",
|
||||
"contentHash": "tvM82Wpsyk+C5aUWkqPZLo2ANDjEfCoDa9R24k7jRkCrwxbXnSBb7NpU1pz0ufp6qw+jIekHD9xJdUkjUtnZxQ==",
|
||||
"requested": "[7.0.4, )",
|
||||
"resolved": "7.0.4",
|
||||
"contentHash": "R0Hk2Tr/np4Q1NO8CBjyQsoiD1iFJyEQP20Sw7JnZCNGJoaSBe+g4b+nZqnBXPQhiqY5LGZ8JZwZkRh/eKZhEQ==",
|
||||
"dependencies": {
|
||||
"JsonPointer.Net": "5.0.0"
|
||||
}
|
||||
@ -68,9 +68,9 @@
|
||||
},
|
||||
"System.Text.Json": {
|
||||
"type": "Direct",
|
||||
"requested": "[8.0.4, )",
|
||||
"resolved": "8.0.4",
|
||||
"contentHash": "bAkhgDJ88XTsqczoxEMliSrpijKZHhbJQldhAmObj/RbrN3sU5dcokuXmWJWsdQAhiMJ9bTayWsL1C9fbbCRhw==",
|
||||
"requested": "[8.0.3, )",
|
||||
"resolved": "8.0.3",
|
||||
"contentHash": "hpagS9joOwv6efWfrMmV9MjQXpiXZH72PgN067Ysfr6AWMSD1/1hEcvh/U5mUpPLezEWsOJSuVrmqDIVD958iA==",
|
||||
"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.4, )"
|
||||
"System.Text.Json": "[8.0.3, )"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,30 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -336.41187,
|
||||
"Y": 12.899764,
|
||||
"Z": 3.5517142
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1000895,
|
||||
"Position": {
|
||||
"X": -335.74432,
|
||||
"Y": 12.899764,
|
||||
"Z": 1.3884888
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,76 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000927,
|
||||
"Position": {
|
||||
"X": -1.2055054,
|
||||
"Y": 44.999886,
|
||||
"Z": -255.8786
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002682,
|
||||
"Position": {
|
||||
"X": -86.930725,
|
||||
"Y": 40.999992,
|
||||
"Z": -153.91785
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Marauders' Guild",
|
||||
"[Limsa Lominsa] Culinarians' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002685,
|
||||
"Position": {
|
||||
"X": -235.33997,
|
||||
"Y": -0.28636882,
|
||||
"Z": 675.349
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"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"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -31,9 +31,15 @@
|
||||
"$": "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,
|
||||
@ -44,9 +50,15 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 25,
|
||||
"Position": {
|
||||
"X": 166.58276,
|
||||
"Y": -1.7243042,
|
||||
"Z": 86.13721
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Archers' Guild"
|
||||
"Comment": "Archers' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 1000197,
|
||||
@ -98,23 +110,41 @@
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 26,
|
||||
"Position": {
|
||||
"X": 101.27405,
|
||||
"Y": 9.018005,
|
||||
"Z": -111.31464
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||
"Comment": "Leatherworkers' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 27,
|
||||
"Position": {
|
||||
"X": 121.23291,
|
||||
"Y": 12.649658,
|
||||
"Z": -229.63306
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Lancers' Guild"
|
||||
"Comment": "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": {
|
||||
@ -126,18 +156,30 @@
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 29,
|
||||
"Position": {
|
||||
"X": -311.0857,
|
||||
"Y": 7.94989,
|
||||
"Z": -177.05048
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Botanists' Guild"
|
||||
"Comment": "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,
|
||||
|
@ -31,9 +31,15 @@
|
||||
"$": "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,
|
||||
@ -44,9 +50,15 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 25,
|
||||
"Position": {
|
||||
"X": 166.58276,
|
||||
"Y": -1.7243042,
|
||||
"Z": 86.13721
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Archers' Guild"
|
||||
"Comment": "Archers' Guild"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -71,23 +83,41 @@
|
||||
"$": "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",
|
||||
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||
"Comment": "Leatherworkers' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 27,
|
||||
"Position": {
|
||||
"X": 121.23291,
|
||||
"Y": 12.649658,
|
||||
"Z": -229.63306
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Lancers' Guild"
|
||||
"Comment": "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": {
|
||||
@ -99,18 +129,30 @@
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 29,
|
||||
"Position": {
|
||||
"X": -311.0857,
|
||||
"Y": 7.94989,
|
||||
"Z": -177.05048
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Botanists' Guild"
|
||||
"Comment": "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,
|
||||
|
@ -21,9 +21,15 @@
|
||||
"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)"
|
||||
|
@ -162,24 +162,48 @@
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 8,
|
||||
"Position": {
|
||||
"X": -84.00108,
|
||||
"Y": 20.77683,
|
||||
"Z": 0.03414845
|
||||
},
|
||||
"StopDistance": 10,
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Limsa Lominsa"
|
||||
"InteractionType": "AttuneAetheryte"
|
||||
},
|
||||
{
|
||||
"DataId": 49,
|
||||
"Position": {
|
||||
"X": -213.61108,
|
||||
"Y": 16.739136,
|
||||
"Z": 51.80432
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
|
||||
"Comment": "Hawkers' Alley"
|
||||
},
|
||||
{
|
||||
"DataId": 43,
|
||||
"Position": {
|
||||
"X": -335.1645,
|
||||
"Y": 12.619202,
|
||||
"Z": 56.381958
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
|
||||
"Comment": "Arcanists' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 44,
|
||||
"Position": {
|
||||
"X": -179.40033,
|
||||
"Y": 4.8065186,
|
||||
"Z": 182.97095
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
|
||||
"Comment": "Fishermens' Guild",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Arcanists' Guild",
|
||||
"[Limsa Lominsa] Hawkers' Alley"
|
||||
@ -201,19 +225,37 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 42,
|
||||
"Position": {
|
||||
"X": -56.50421,
|
||||
"Y": 44.47998,
|
||||
"Z": -131.45648
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
|
||||
"Comment": "Culinarians' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 48,
|
||||
"Position": {
|
||||
"X": -5.1728516,
|
||||
"Y": 44.63257,
|
||||
"Z": -218.06671
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
|
||||
"Comment": "Marauders' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 41,
|
||||
"Position": {
|
||||
"X": 16.067688,
|
||||
"Y": 40.787354,
|
||||
"Z": 68.80286
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] The Aftcastle"
|
||||
"Comment": "Aftcastle"
|
||||
},
|
||||
{
|
||||
"DataId": 1002695,
|
||||
@ -316,9 +358,14 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 51,
|
||||
"Position": {
|
||||
"X": 6.6376343,
|
||||
"Y": 30.655273,
|
||||
"Z": -24.826477
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] The Chamber of Rule"
|
||||
"InteractionType": "AttuneAethernetShard"
|
||||
},
|
||||
{
|
||||
"DataId": 1001821,
|
||||
|
@ -31,9 +31,15 @@
|
||||
"$": "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,
|
||||
@ -44,9 +50,15 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 25,
|
||||
"Position": {
|
||||
"X": 166.58276,
|
||||
"Y": -1.7243042,
|
||||
"Z": 86.13721
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Archers' Guild"
|
||||
"Comment": "Archers' Guild"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -71,14 +83,26 @@
|
||||
"$": "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",
|
||||
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||
"Comment": "Leatherworkers' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 27,
|
||||
"Position": {
|
||||
"X": 121.23291,
|
||||
"Y": 12.649658,
|
||||
"Z": -229.63306
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Lancers' Guild"
|
||||
"Comment": "Lancers' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 1000251,
|
||||
@ -108,13 +132,19 @@
|
||||
"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": {
|
||||
@ -126,20 +156,38 @@
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 29,
|
||||
"Position": {
|
||||
"X": -311.0857,
|
||||
"Y": 7.94989,
|
||||
"Z": -177.05048
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Botanists' Guild"
|
||||
"Comment": "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": [
|
||||
|
@ -127,9 +127,15 @@
|
||||
"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,
|
||||
@ -158,19 +164,37 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 49,
|
||||
"Position": {
|
||||
"X": -213.61108,
|
||||
"Y": 16.739136,
|
||||
"Z": 51.80432
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
|
||||
"Comment": "Hawkers' Alley"
|
||||
},
|
||||
{
|
||||
"DataId": 43,
|
||||
"Position": {
|
||||
"X": -335.1645,
|
||||
"Y": 12.619202,
|
||||
"Z": 56.381958
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
|
||||
"Comment": "Arcanists' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 44,
|
||||
"Position": {
|
||||
"X": -179.40033,
|
||||
"Y": 4.8065186,
|
||||
"Z": 182.97095
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
|
||||
"Comment": "Fishermens' Guild",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Arcanists' Guild",
|
||||
"[Limsa Lominsa] Hawkers' Alley"
|
||||
@ -192,14 +216,26 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 42,
|
||||
"Position": {
|
||||
"X": -56.50421,
|
||||
"Y": 44.47998,
|
||||
"Z": -131.45648
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
|
||||
"Comment": "Culinarians' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 48,
|
||||
"Position": {
|
||||
"X": -5.1728516,
|
||||
"Y": 44.63257,
|
||||
"Z": -218.06671
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
|
||||
"Comment": "Marauders' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 1000926,
|
||||
|
@ -127,9 +127,15 @@
|
||||
"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,
|
||||
@ -158,14 +164,26 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 49,
|
||||
"Position": {
|
||||
"X": -213.61108,
|
||||
"Y": 16.739136,
|
||||
"Z": 51.80432
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Hawkers' Alley"
|
||||
"Comment": "Hawkers' Alley"
|
||||
},
|
||||
{
|
||||
"DataId": 43,
|
||||
"Position": {
|
||||
"X": -335.1645,
|
||||
"Y": 12.619202,
|
||||
"Z": 56.381958
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Arcanists' Guild"
|
||||
"Comment": "Arcanists' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 1000895,
|
||||
@ -203,9 +221,15 @@
|
||||
"Comment": "Pick up Class Quest"
|
||||
},
|
||||
{
|
||||
"DataId": 44,
|
||||
"Position": {
|
||||
"X": -179.40033,
|
||||
"Y": 4.8065186,
|
||||
"Z": 182.97095
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Fishermens' Guild",
|
||||
"Comment": "Fishermens' Guild",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Arcanists' Guild",
|
||||
"[Limsa Lominsa] Hawkers' Alley"
|
||||
@ -227,14 +251,26 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 42,
|
||||
"Position": {
|
||||
"X": -56.50421,
|
||||
"Y": 44.47998,
|
||||
"Z": -131.45648
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Culinarians' Guild"
|
||||
"Comment": "Culinarians' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 48,
|
||||
"Position": {
|
||||
"X": -5.1728516,
|
||||
"Y": 44.63257,
|
||||
"Z": -218.06671
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] Marauders' Guild"
|
||||
"Comment": "Marauders' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 1000972,
|
||||
|
@ -47,9 +47,15 @@
|
||||
"TargetTerritoryId": 138
|
||||
},
|
||||
{
|
||||
"DataId": 13,
|
||||
"Position": {
|
||||
"X": 651.5449,
|
||||
"Y": 11.734131,
|
||||
"Z": 513.35913
|
||||
},
|
||||
"StopDistance": 10,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Western La Noscea - Swiftperch"
|
||||
"InteractionType": "AttuneAetheryte"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
|
@ -31,9 +31,15 @@
|
||||
"TargetTerritoryId": 135
|
||||
},
|
||||
{
|
||||
"DataId": 10,
|
||||
"Position": {
|
||||
"X": 156.11499,
|
||||
"Y": 15.518433,
|
||||
"Z": 673.21277
|
||||
},
|
||||
"StopDistance": 10,
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Lower La Noscea - Moraby Drydocks"
|
||||
"InteractionType": "AttuneAetheryte"
|
||||
},
|
||||
{
|
||||
"DataId": 1002238,
|
||||
|
@ -21,14 +21,25 @@
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 41,
|
||||
"Position": {
|
||||
"X": 16.067688,
|
||||
"Y": 40.787354,
|
||||
"Z": 68.80286
|
||||
},
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Limsa Lominsa] The Aftcastle"
|
||||
"InteractionType": "AttuneAethernetShard"
|
||||
},
|
||||
{
|
||||
"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)"
|
||||
|
@ -162,14 +162,26 @@
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2,
|
||||
"Position": {
|
||||
"X": 32.913696,
|
||||
"Y": 2.670288,
|
||||
"Z": 30.014404
|
||||
},
|
||||
"StopDistance": 10,
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Gridania"
|
||||
"InteractionType": "AttuneAetheryte"
|
||||
},
|
||||
{
|
||||
"DataId": 25,
|
||||
"Position": {
|
||||
"X": 166.58276,
|
||||
"Y": -1.7243042,
|
||||
"Z": 86.13721
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Archers' Guild"
|
||||
"Comment": "Archers' Guild"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -186,23 +198,41 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 26,
|
||||
"Position": {
|
||||
"X": 101.27405,
|
||||
"Y": 9.018005,
|
||||
"Z": -111.31464
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Leatherworkers' Guild & Shaded Bower"
|
||||
"Comment": "Leatherworkers' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 27,
|
||||
"Position": {
|
||||
"X": 121.23291,
|
||||
"Y": 12.649658,
|
||||
"Z": -229.63306
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Lancers' Guild"
|
||||
"Comment": "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": {
|
||||
@ -214,18 +244,30 @@
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 29,
|
||||
"Position": {
|
||||
"X": -311.0857,
|
||||
"Y": 7.94989,
|
||||
"Z": -177.05048
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Gridania] Botanists' Guild"
|
||||
"Comment": "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,
|
||||
@ -343,9 +385,14 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 51,
|
||||
"Position": {
|
||||
"X": 6.6376343,
|
||||
"Y": 30.655273,
|
||||
"Z": -24.826477
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] The Chamber of Rule"
|
||||
"InteractionType": "AttuneAethernetShard"
|
||||
},
|
||||
{
|
||||
"DataId": 1001821,
|
||||
|
@ -22,9 +22,15 @@
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 37,
|
||||
"Position": {
|
||||
"X": -98.22869,
|
||||
"Y": 42.37336,
|
||||
"Z": 88.46719
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] Alchemists' Guild"
|
||||
"Comment": "Alchemists' Guild"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -48,29 +54,59 @@
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 35,
|
||||
"Position": {
|
||||
"X": -53.8269,
|
||||
"Y": 10.72502,
|
||||
"Z": 12.24082
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] Gladiators' Guild"
|
||||
"Comment": "Gladiators' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 50,
|
||||
"Position": {
|
||||
"X": -19.31449,
|
||||
"Y": 14.63075,
|
||||
"Z": 72.0533
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] Goldsmiths' Guild"
|
||||
"Comment": "Goldsmiths' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 36,
|
||||
"Position": {
|
||||
"X": 33.52188,
|
||||
"Y": 13.23228,
|
||||
"Z": 113.2191
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] Miners' Guild"
|
||||
"Comment": "Miners' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 47,
|
||||
"Position": {
|
||||
"X": 89.67633,
|
||||
"Y": 12.93493,
|
||||
"Z": 58.2767
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] Weavers' Guild"
|
||||
"Comment": "Weavers' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 125,
|
||||
"Position": {
|
||||
"X": 131.9447,
|
||||
"Y": 4.714966,
|
||||
"Z": -29.800903
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] Sapphire Avenue Exchange"
|
||||
"Comment": "Sapphire Avenue Exchange"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
@ -83,19 +119,36 @@
|
||||
"TargetTerritoryId": 130
|
||||
},
|
||||
{
|
||||
"DataId": 33,
|
||||
"Position": {
|
||||
"X": 64.22522,
|
||||
"Y": 4.5318604,
|
||||
"Z": -115.31244
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] Adventurers' Guild"
|
||||
"Comment": "Adventurers' Guild"
|
||||
},
|
||||
{
|
||||
"DataId": 9,
|
||||
"Position": {
|
||||
"X": -144.51825,
|
||||
"Y": -1.3580933,
|
||||
"Z": -169.6651
|
||||
},
|
||||
"StopDistance": 10,
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Ul'dah"
|
||||
"InteractionType": "AttuneAetheryte"
|
||||
},
|
||||
{
|
||||
"DataId": 34,
|
||||
"Position": {
|
||||
"X": -154.83331,
|
||||
"Y": 14.633362,
|
||||
"Z": 73.07532
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AttuneAethernetShard",
|
||||
"AethernetShard": "[Ul'dah] Thaumaturges' Guild"
|
||||
"InteractionType": "AttuneAethernetShard"
|
||||
},
|
||||
{
|
||||
"DataId": 1000972,
|
||||
|
@ -88,9 +88,15 @@
|
||||
"TargetTerritoryId": 138
|
||||
},
|
||||
{
|
||||
"DataId": 14,
|
||||
"Position": {
|
||||
"X": 260.94446,
|
||||
"Y": -19.60791,
|
||||
"Z": 218.52441
|
||||
},
|
||||
"StopDistance": 10,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Western La Noscea - Aleport"
|
||||
"InteractionType": "AttuneAetheryte"
|
||||
},
|
||||
{
|
||||
"DataId": 1017075,
|
||||
|
@ -44,9 +44,15 @@
|
||||
"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",
|
||||
@ -74,9 +80,15 @@
|
||||
"$": "Camp Drybone Lantern"
|
||||
},
|
||||
{
|
||||
"DataId": 18,
|
||||
"Position": {
|
||||
"X": -386.3432,
|
||||
"Y": -57.1756,
|
||||
"Z": 142.59558
|
||||
},
|
||||
"StopDistance": 10,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Eastern Thanalan - Camp Drybone"
|
||||
"InteractionType": "AttuneAetheryte"
|
||||
},
|
||||
{
|
||||
"DataId": 1003929,
|
||||
|
@ -40,9 +40,15 @@
|
||||
"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)"
|
||||
|
@ -34,9 +34,15 @@
|
||||
"$": "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)"
|
||||
|
@ -1,211 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006535,
|
||||
"Position": {
|
||||
"X": 26.901611,
|
||||
"Y": 20.543928,
|
||||
"Z": -687.4037
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002232,
|
||||
"Position": {
|
||||
"X": -146.92914,
|
||||
"Y": 0.47296143,
|
||||
"Z": -616.0525
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2000766,
|
||||
"KillEnemyDataIds": [
|
||||
46
|
||||
],
|
||||
"$": "QW: 16 0 1 16 0 16",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002233,
|
||||
"Position": {
|
||||
"X": -202.07526,
|
||||
"Y": 3.8909912,
|
||||
"Z": -625.90985
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000766,
|
||||
"$": "QW: 32 16 1 16 0 80",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002234,
|
||||
"Position": {
|
||||
"X": -216.81549,
|
||||
"Y": 5.6915283,
|
||||
"Z": -637.4762
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "UseItem",
|
||||
"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,
|
||||
"Position": {
|
||||
"X": -171.52673,
|
||||
"Y": 4.0131226,
|
||||
"Z": -655.787
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"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": {
|
||||
"X": -174.91425,
|
||||
"Y": 10.757568,
|
||||
"Z": -603.8148
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000766
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006535,
|
||||
"Position": {
|
||||
"X": 26.901611,
|
||||
"Y": 20.543928,
|
||||
"Z": -687.4037
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006531,
|
||||
"Position": {
|
||||
"X": 53.81848,
|
||||
"Y": 25.009521,
|
||||
"Z": -697.0779
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -505.211,
|
||||
"Y": -1.9684448,
|
||||
"Z": -467.46014
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
55
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002238,
|
||||
"Position": {
|
||||
"X": -505.211,
|
||||
"Y": -1.9684448,
|
||||
"Z": -467.46014
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006531,
|
||||
"Position": {
|
||||
"X": 53.81848,
|
||||
"Y": 25.009521,
|
||||
"Z": -697.0779
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,111 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006531,
|
||||
"Position": {
|
||||
"X": 53.81848,
|
||||
"Y": 25.009521,
|
||||
"Z": -697.0779
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006709,
|
||||
"Position": {
|
||||
"X": -428.79382,
|
||||
"Y": -6.623729,
|
||||
"Z": -528.6183
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "imperialsalute"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": {
|
||||
"X": -169.8482,
|
||||
"Y": 14.114502,
|
||||
"Z": -609.4606
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000771
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSC604_01004_EVENTAREA_WARP_YESNO_TITLE",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006555,
|
||||
"Position": {
|
||||
"X": -2.7619019,
|
||||
"Y": -158.5813,
|
||||
"Z": -1.6327515
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,242 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006555,
|
||||
"Position": {
|
||||
"X": -2.7619019,
|
||||
"Y": -158.5813,
|
||||
"Z": -1.6327515
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006557,
|
||||
"Position": {
|
||||
"X": 1.4190674,
|
||||
"Y": -158.5813,
|
||||
"Z": 1.3274536
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004093,
|
||||
"Position": {
|
||||
"X": -25.162231,
|
||||
"Y": 12.200003,
|
||||
"Z": 110.795654
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] Goldsmiths' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"TargetTerritoryId": 156,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSC605_01005_Q1_000_000",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006557,
|
||||
"Position": {
|
||||
"X": 1.4190674,
|
||||
"Y": -158.5813,
|
||||
"Z": 1.3274536
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006559,
|
||||
"Position": {
|
||||
"X": -57.724915,
|
||||
"Y": 3.7940114,
|
||||
"Z": -636.68274
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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,
|
||||
"Y": 13.709051,
|
||||
"Z": -610.729
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -183.43071,
|
||||
"Y": -2.638534,
|
||||
"Z": -595.8602
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -227.08566,
|
||||
"Y": 13.4605465,
|
||||
"Z": -670.02313
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -65.40249,
|
||||
"Y": 2.9154358,
|
||||
"Z": -634.5249
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "WalkTo"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006559,
|
||||
"Position": {
|
||||
"X": -57.724915,
|
||||
"Y": 3.7940114,
|
||||
"Z": -636.68274
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006561,
|
||||
"Position": {
|
||||
"X": -59.31189,
|
||||
"Y": 3.32667,
|
||||
"Z": -637.7814
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "welcome"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006560,
|
||||
"Position": {
|
||||
"X": -60.135864,
|
||||
"Y": 3.1014364,
|
||||
"Z": -641.3519
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006555,
|
||||
"Position": {
|
||||
"X": -2.7619019,
|
||||
"Y": -158.5813,
|
||||
"Z": -1.6327515
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006578,
|
||||
"Position": {
|
||||
"X": -467.27704,
|
||||
"Y": 22.996977,
|
||||
"Z": -475.21173
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -26.738379,
|
||||
"Y": 33,
|
||||
"Z": -495.80618
|
||||
},
|
||||
"TerritoryId": 141,
|
||||
"InteractionType": "WalkTo",
|
||||
"AetheryteShortcut": "Central Thanalan - Black Brush Station"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"StopDistance": 5,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Northern Thanalan - Camp Bluefog"
|
||||
},
|
||||
{
|
||||
"DataId": 1006638,
|
||||
"Position": {
|
||||
"X": 37.979614,
|
||||
"Y": 4.051331,
|
||||
"Z": 420.27917
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,104 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza, JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000168,
|
||||
"Position": {
|
||||
"X": -75.48645,
|
||||
"Y": -0.5013741,
|
||||
"Z": -5.081299
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -75.48645,
|
||||
"Y": -0.5013741,
|
||||
"Z": -5.081299
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 6001,
|
||||
"SkipIf": [
|
||||
"ChocoboUnlocked"
|
||||
],
|
||||
"Comment": "Use Chocobo whistle (if not yet unlocked)"
|
||||
},
|
||||
{
|
||||
"DataId": 1000257,
|
||||
"Position": {
|
||||
"X": 150.16394,
|
||||
"Y": 10.852949,
|
||||
"Z": -230.45703
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Lancers' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"$": "TODO: Questionable doesn't seem to interact with this ferry skipper",
|
||||
"DataId": 1001263,
|
||||
"Position": {
|
||||
"X": 181.41443,
|
||||
"Y": -2.3519497,
|
||||
"Z": -240.40594
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"ExcelSheet": "Warp",
|
||||
"Prompt": "Null",
|
||||
"Answer": "131077"
|
||||
},
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"ExcelSheet": "Warp",
|
||||
"Prompt": "Board the ferry to Sweetbloom Pier?",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "East Shroud - Hawthorne Hut",
|
||||
"StopDistance": 5
|
||||
},
|
||||
{
|
||||
"DataId": 1006188,
|
||||
"Position": {
|
||||
"X": -236.92688,
|
||||
"Y": 3.5435789,
|
||||
"Z": 283.4973
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,94 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006674,
|
||||
"Position": {
|
||||
"X": 21.98816,
|
||||
"Y": -3.7664814,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000576,
|
||||
"Position": {
|
||||
"X": 21.469421,
|
||||
"Y": -4.575074,
|
||||
"Z": 221.75928
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "dance",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000563,
|
||||
"Position": {
|
||||
"X": -3.768982,
|
||||
"Y": -5.8594565,
|
||||
"Z": 217.2732
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "dance",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000587,
|
||||
"Position": {
|
||||
"X": -7.248047,
|
||||
"Y": -8.407776,
|
||||
"Z": 268.23828
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "dance"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006674,
|
||||
"Position": {
|
||||
"X": 21.98816,
|
||||
"Y": -3.7664814,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,144 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006675,
|
||||
"Position": {
|
||||
"X": 23.11737,
|
||||
"Y": -3.7126513,
|
||||
"Z": 209.76575
|
||||
},
|
||||
"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",
|
||||
"KillEnemyDataIds": [
|
||||
179
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
16,
|
||||
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": [
|
||||
1,
|
||||
null,
|
||||
16,
|
||||
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": [
|
||||
1,
|
||||
null,
|
||||
16,
|
||||
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",
|
||||
"$": "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",
|
||||
"KillEnemyDataIds": [
|
||||
7
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,52 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002934,
|
||||
"Position": {
|
||||
"X": -164.41602,
|
||||
"Y": 8.398999,
|
||||
"Z": -63.61493
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2003006
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,140 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "South Shroud - Quarrymill",
|
||||
"TerritoryId": 153
|
||||
},
|
||||
{
|
||||
"DataId": 1003272,
|
||||
"Position": {
|
||||
"X": -262.92822,
|
||||
"Y": 16.2,
|
||||
"Z": 51.407593
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Limsa Lominsa",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Aetheryte Plaza",
|
||||
"[Limsa Lominsa] Hawkers' Alley"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001208,
|
||||
"Position": {
|
||||
"X": -228.16821,
|
||||
"Y": 16,
|
||||
"Z": 50.644653
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007721,
|
||||
"Position": {
|
||||
"X": -191.36346,
|
||||
"Y": 0.9999907,
|
||||
"Z": 212.9701
|
||||
},
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Limsa Lominsa] Hawkers' Alley",
|
||||
"[Limsa Lominsa] Fishermens' Guild"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000868,
|
||||
"Position": {
|
||||
"X": -192.00433,
|
||||
"Y": 0.9999907,
|
||||
"Z": 211.68835
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 129,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 138,
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"ExcelSheet": "Warp",
|
||||
"Prompt": null,
|
||||
"Answer": 131109
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1003393,
|
||||
"Position": {
|
||||
"X": 305.47034,
|
||||
"Y": -36.325005,
|
||||
"Z": 351.76624
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 410.07083,
|
||||
"Y": 31.504957,
|
||||
"Z": -12.586371
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"TargetTerritoryId": 139
|
||||
},
|
||||
{
|
||||
"DataId": 1006193,
|
||||
"Position": {
|
||||
"X": -334.0658,
|
||||
"Y": -0.81366825,
|
||||
"Z": 148.91272
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006193,
|
||||
"Position": {
|
||||
"X": -334.0658,
|
||||
"Y": -0.81366825,
|
||||
"Z": 148.91272
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -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": [
|
||||
{
|
||||
"DataId": 1006193,
|
||||
"Position": {
|
||||
"X": -334.0658,
|
||||
"Y": -0.81366825,
|
||||
"Z": 148.91272
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,104 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006199,
|
||||
"Position": {
|
||||
"X": -141.71057,
|
||||
"Y": 6.568114,
|
||||
"Z": -23.178528
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006201,
|
||||
"Position": {
|
||||
"X": -65.4765,
|
||||
"Y": 4.3282256,
|
||||
"Z": -27.237366
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
62
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006201,
|
||||
"Position": {
|
||||
"X": -65.4765,
|
||||
"Y": 4.3282256,
|
||||
"Z": -27.237366
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006203,
|
||||
"Position": {
|
||||
"X": 32.700073,
|
||||
"Y": 10.692124,
|
||||
"Z": -12.985474
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006672,
|
||||
"Position": {
|
||||
"X": -509.36142,
|
||||
"Y": -16.42,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1033920,
|
||||
"Position": {
|
||||
"X": -387.35028,
|
||||
"Y": -56.033897,
|
||||
"Z": 105.241455
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006672,
|
||||
"Position": {
|
||||
"X": -509.36142,
|
||||
"Y": -16.42,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003958,
|
||||
"Position": {
|
||||
"X": -497.70352,
|
||||
"Y": -19.630796,
|
||||
"Z": 39.993896
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,86 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006434,
|
||||
"Position": {
|
||||
"X": 237.14038,
|
||||
"Y": 302,
|
||||
"Z": -194.99512
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006383,
|
||||
"Position": {
|
||||
"X": 138.87231,
|
||||
"Y": 285.06497,
|
||||
"Z": 175.21924
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006435,
|
||||
"Position": {
|
||||
"X": -478.26355,
|
||||
"Y": 211,
|
||||
"Z": -203.81476
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,72 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006461,
|
||||
"Position": {
|
||||
"X": -415.9762,
|
||||
"Y": 224.99998,
|
||||
"Z": -299.73297
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -491.4813,
|
||||
"Y": 205.20322,
|
||||
"Z": -185.17868
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -321.0041,
|
||||
"Y": 255.60681,
|
||||
"Z": -159.89929
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"ComplexCombatData": [
|
||||
{
|
||||
"DataId": 132,
|
||||
"MinimumKillCount": 3,
|
||||
"RewardItemId": 2003018,
|
||||
"RewardItemCount": 3
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006461,
|
||||
"Position": {
|
||||
"X": -415.9762,
|
||||
"Y": 224.99998,
|
||||
"Z": -299.73297
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,91 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006710,
|
||||
"Position": {
|
||||
"X": -123.73547,
|
||||
"Y": 7.0426483,
|
||||
"Z": -149.98096
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Mih Khetto's Amphitheatre"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002195,
|
||||
"Position": {
|
||||
"X": -528.0995,
|
||||
"Y": 26.260742,
|
||||
"Z": -239.61243
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2003019,
|
||||
"KillEnemyDataIds": [
|
||||
1894
|
||||
],
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Mih Khetto's Amphitheatre",
|
||||
"[Gridania] White Wolf Gate (Central Shroud)"
|
||||
],
|
||||
"StopDistance": 4,
|
||||
"IgnoreDistanceToObject": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006710,
|
||||
"Position": {
|
||||
"X": -123.73547,
|
||||
"Y": 7.0426483,
|
||||
"Z": -149.98096
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Mih Khetto's Amphitheatre"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,105 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006552,
|
||||
"Position": {
|
||||
"X": 54.795166,
|
||||
"Y": 25.548265,
|
||||
"Z": -698.05444
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"IgnoreDistanceToObject": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -429.60284,
|
||||
"Y": -15.201682,
|
||||
"Z": -477.29346
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"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
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006552,
|
||||
"Position": {
|
||||
"X": 54.795166,
|
||||
"Y": 25.548265,
|
||||
"Z": -698.05444
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006988,
|
||||
"Position": {
|
||||
"X": 41.33667,
|
||||
"Y": 28.999998,
|
||||
"Z": -795.4681
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006552,
|
||||
"Position": {
|
||||
"X": 54.795166,
|
||||
"Y": 25.548265,
|
||||
"Z": -698.05444
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,125 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006638,
|
||||
"Position": {
|
||||
"X": 37.979614,
|
||||
"Y": 4.051331,
|
||||
"Z": 420.27917
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Northern Thanalan - Camp Bluefog",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"StopDistance": 5,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Northern Thanalan - Ceruleum Processing Plant"
|
||||
},
|
||||
{
|
||||
"DataId": 1006647,
|
||||
"Position": {
|
||||
"X": -28.244446,
|
||||
"Y": 46.96473,
|
||||
"Z": -17.654724
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006648,
|
||||
"Position": {
|
||||
"X": -76.12726,
|
||||
"Y": 49.98848,
|
||||
"Z": -59.494934
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "psych",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006650,
|
||||
"Position": {
|
||||
"X": -85.19116,
|
||||
"Y": 48,
|
||||
"Z": -34.40918
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "psych",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006649,
|
||||
"Position": {
|
||||
"X": -34.53119,
|
||||
"Y": 46.999996,
|
||||
"Z": 32.73047
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "psych",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006646,
|
||||
"Position": {
|
||||
"X": -29.953552,
|
||||
"Y": 46.99734,
|
||||
"Z": 32.547485
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"Emote": "psych"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,67 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006646,
|
||||
"Position": {
|
||||
"X": -29.953552,
|
||||
"Y": 46.99734,
|
||||
"Z": 32.547485
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006657,
|
||||
"Position": {
|
||||
"X": -294.81964,
|
||||
"Y": 88,
|
||||
"Z": -225.17743
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 15
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006657,
|
||||
"Position": {
|
||||
"X": -294.81964,
|
||||
"Y": 88,
|
||||
"Z": -225.17743
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,103 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006690,
|
||||
"Position": {
|
||||
"X": 39.261353,
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"DataId": 2001716,
|
||||
"Position": {
|
||||
"X": -15.701599,
|
||||
"Y": 1.083313,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1006578,
|
||||
"Position": {
|
||||
"X": -467.27704,
|
||||
"Y": 22.996977,
|
||||
"Z": -475.21173
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006633,
|
||||
"Position": {
|
||||
"X": -396.7804,
|
||||
"Y": 27.883184,
|
||||
"Z": -739.3149
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002252,
|
||||
"Position": {
|
||||
"X": -662.25684,
|
||||
"Y": 62.333008,
|
||||
"Z": -805.478
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006578,
|
||||
"Position": {
|
||||
"X": -467.27704,
|
||||
"Y": 22.996977,
|
||||
"Z": -475.21173
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,133 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006657,
|
||||
"Position": {
|
||||
"X": -294.81964,
|
||||
"Y": 88,
|
||||
"Z": -225.17743
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006668,
|
||||
"Position": {
|
||||
"X": -115.19043,
|
||||
"Y": 47.372406,
|
||||
"Z": 28.67163
|
||||
},
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 16
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": 0,
|
||||
"Z": 0
|
||||
},
|
||||
"TerritoryId": 1,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "Filler"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 1053,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 830
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 0,
|
||||
"Y": 0,
|
||||
"Z": 0
|
||||
},
|
||||
"TerritoryId": 1,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "Filler"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1039201,
|
||||
"Position": {
|
||||
"X": -704.0055,
|
||||
"Y": -185.66042,
|
||||
"Z": 479.9724
|
||||
},
|
||||
"TerritoryId": 1053,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001715,
|
||||
"Position": {
|
||||
"X": 23.25277,
|
||||
"Y": 2.1,
|
||||
"Z": 0
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1006692,
|
||||
"Position": {
|
||||
"X": 39.261353,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000393,
|
||||
"Position": {
|
||||
"X": -89.463684,
|
||||
"Y": 3.318795,
|
||||
"Z": -168.9021
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,125 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006343,
|
||||
"Position": {
|
||||
"X": 427.63403,
|
||||
"Y": 4.115109,
|
||||
"Z": 85.92346
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"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": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -492.96475,
|
||||
"Y": 20.999884,
|
||||
"Z": -380.82272
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2001711,
|
||||
"Position": {
|
||||
"X": -480.9181,
|
||||
"Y": 18.00103,
|
||||
"Z": -386.862
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001715,
|
||||
"Position": {
|
||||
"X": 23.23944,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1007467,
|
||||
"Position": {
|
||||
"X": 36.057007,
|
||||
"Y": 0.32037354,
|
||||
"Z": -1.5411987
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006355,
|
||||
"Position": {
|
||||
"X": -512.47424,
|
||||
"Y": -16.42,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_MANFST313_00517_Q1_000_050",
|
||||
"Answer": "TEXT_MANFST313_00517_A3_000_053"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,74 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006672,
|
||||
"Position": {
|
||||
"X": -509.36142,
|
||||
"Y": -16.42,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002105,
|
||||
"Position": {
|
||||
"X": -444.419,
|
||||
"Y": -27.237366,
|
||||
"Z": 15.945618
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
1902
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006672,
|
||||
"Position": {
|
||||
"X": -509.36142,
|
||||
"Y": -16.42,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006355,
|
||||
"Position": {
|
||||
"X": -512.47424,
|
||||
"Y": -16.42,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006492,
|
||||
"Position": {
|
||||
"X": 7.3395386,
|
||||
"Y": -21.970974,
|
||||
"Z": 121.934814
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007690,
|
||||
"Position": {
|
||||
"X": -84.58081,
|
||||
"Y": -0.6225241,
|
||||
"Z": -35.568848
|
||||
},
|
||||
"TerritoryId": 331,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 331,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 58
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006730,
|
||||
"Position": {
|
||||
"X": -44.63269,
|
||||
"Y": 84,
|
||||
"Z": -3.768982
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,63 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006730,
|
||||
"Position": {
|
||||
"X": -44.63269,
|
||||
"Y": 84,
|
||||
"Z": -3.768982
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -492.96475,
|
||||
"Y": 20.999884,
|
||||
"Z": -380.82272
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2001711,
|
||||
"Position": {
|
||||
"X": -480.9181,
|
||||
"Y": 18.00103,
|
||||
"Z": -386.862
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1007630,
|
||||
"Position": {
|
||||
"X": 22.812195,
|
||||
"Y": 0.9999986,
|
||||
"Z": 2.1820068
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,168 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006555,
|
||||
"Position": {
|
||||
"X": -2.7619019,
|
||||
"Y": -158.5813,
|
||||
"Z": -1.6327515
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 6223,
|
||||
"Comment": "Can be re-bought from Glaumunt in Mor Dhona"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 6224,
|
||||
"Comment": "Can be re-bought from Glaumunt in Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 2002502,
|
||||
"Position": {
|
||||
"X": 0.7476196,
|
||||
"Y": -156.93909,
|
||||
"Z": 16.281311
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 156
|
||||
},
|
||||
{
|
||||
"DataId": 1007537,
|
||||
"Position": {
|
||||
"X": -358.23608,
|
||||
"Y": -16.248493,
|
||||
"Z": -481.13226
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006568,
|
||||
"Position": {
|
||||
"X": -559.3805,
|
||||
"Y": -1.9197596,
|
||||
"Z": -318.349
|
||||
},
|
||||
"TerritoryId": 335,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "imperialsalute"
|
||||
},
|
||||
{
|
||||
"DataId": 1006567,
|
||||
"Position": {
|
||||
"X": -532.2195,
|
||||
"Y": -1.9197612,
|
||||
"Z": -284.50446
|
||||
},
|
||||
"TerritoryId": 335,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "imperialsalute"
|
||||
},
|
||||
{
|
||||
"DataId": 1006569,
|
||||
"Position": {
|
||||
"X": -491.44736,
|
||||
"Y": -3.9312067,
|
||||
"Z": -300.8011
|
||||
},
|
||||
"TerritoryId": 335,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "imperialsalute"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -530.1089,
|
||||
"Y": -3.3262053,
|
||||
"Z": -308.2147
|
||||
},
|
||||
"TerritoryId": 335,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1007611,
|
||||
"Position": {
|
||||
"X": -536.4004,
|
||||
"Y": -1.9197441,
|
||||
"Z": -308.00336
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 335,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "imperialsalute"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006562,
|
||||
"Position": {
|
||||
"X": -495.964,
|
||||
"Y": -3.7679372,
|
||||
"Z": -288.1667
|
||||
},
|
||||
"TerritoryId": 335,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002376,
|
||||
"Position": {
|
||||
"X": -427.75616,
|
||||
"Y": -0.77819824,
|
||||
"Z": -273.82324
|
||||
},
|
||||
"TerritoryId": 335,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006573,
|
||||
"Position": {
|
||||
"X": -43.717102,
|
||||
"Y": 84,
|
||||
"Z": 2.1514893
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,93 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006573,
|
||||
"Position": {
|
||||
"X": -43.717102,
|
||||
"Y": 84,
|
||||
"Z": 2.1514893
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001821,
|
||||
"Position": {
|
||||
"X": -24.124573,
|
||||
"Y": 38.000004,
|
||||
"Z": 85.31323
|
||||
},
|
||||
"TerritoryId": 131,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"AethernetShortcut": [
|
||||
"[Ul'dah] Aetheryte Plaza",
|
||||
"[Ul'dah] The Chamber of Rule"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -492.96475,
|
||||
"Y": 20.999884,
|
||||
"Z": -380.82272
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2001711,
|
||||
"Position": {
|
||||
"X": -480.9181,
|
||||
"Y": 18.00103,
|
||||
"Z": -386.862
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 2001715,
|
||||
"Position": {
|
||||
"X": 23.23944,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1006690,
|
||||
"Position": {
|
||||
"X": 39.261353,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,83 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004883,
|
||||
"Position": {
|
||||
"X": 37.88806,
|
||||
"Y": 1.2000012,
|
||||
"Z": 4.135132
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Prompt": "TEXT_MANWIL302_00682_Q1_000_1",
|
||||
"Type": "YesNo",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002391,
|
||||
"Position": {
|
||||
"X": -144.39618,
|
||||
"Y": 4.1,
|
||||
"Z": -107.22516
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_MANWIL302_00682_Q2_000_1",
|
||||
"Answer": "TEXT_MANWIL302_00682_A2_000_2"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1004887,
|
||||
"Position": {
|
||||
"X": 160.7843,
|
||||
"Y": 54.85158,
|
||||
"Z": -45.609253
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"AetheryteShortcut": "Western Thanalan - Horizon"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002391,
|
||||
"Position": {
|
||||
"X": -144.39618,
|
||||
"Y": 4.1,
|
||||
"Z": -107.22516
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ul'dah"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,66 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002391,
|
||||
"Position": {
|
||||
"X": -144.39618,
|
||||
"Y": 4.1,
|
||||
"Z": -107.22516
|
||||
},
|
||||
"TerritoryId": 130,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ul'dah",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -492.96475,
|
||||
"Y": 20.999884,
|
||||
"Z": -380.82272
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 2001711,
|
||||
"Position": {
|
||||
"X": -480.9181,
|
||||
"Y": 18.00103,
|
||||
"Z": -386.862
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 212
|
||||
},
|
||||
{
|
||||
"DataId": 1005012,
|
||||
"Position": {
|
||||
"X": 22.507019,
|
||||
"Y": 0.9999986,
|
||||
"Z": -2.02948
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,77 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000540,
|
||||
"Position": {
|
||||
"X": -238.17816,
|
||||
"Y": 3.543561,
|
||||
"Z": 283.71094
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000615,
|
||||
"Position": {
|
||||
"X": -246.44855,
|
||||
"Y": 3.5452707,
|
||||
"Z": 279.92664
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
},
|
||||
{
|
||||
"DataId": 1000557,
|
||||
"Position": {
|
||||
"X": -206.0426,
|
||||
"Y": 2.663525,
|
||||
"Z": 303.94446
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"$": "0 0 0 0 0 0 -> 17 0 0 0 0 128"
|
||||
},
|
||||
{
|
||||
"DataId": 1000553,
|
||||
"Position": {
|
||||
"X": -187.48767,
|
||||
"Y": 4.4436555,
|
||||
"Z": 292.50012
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"$": "17 0 0 0 0 128 -> 33 16 0 0 0 192"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000540,
|
||||
"Position": {
|
||||
"X": -238.17816,
|
||||
"Y": 3.543561,
|
||||
"Z": 283.71094
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,76 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000540,
|
||||
"Position": {
|
||||
"X": -238.17816,
|
||||
"Y": 3.543561,
|
||||
"Z": 283.71094
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000766,
|
||||
"Position": {
|
||||
"X": -485.70996,
|
||||
"Y": 9.170645,
|
||||
"Z": 177.203
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001902,
|
||||
"Position": {
|
||||
"X": -386.6789,
|
||||
"Y": -0.015319824,
|
||||
"Z": 192.46204
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterItemUse",
|
||||
"ItemId": 2000571,
|
||||
"KillEnemyDataIds": [
|
||||
33
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000540,
|
||||
"Position": {
|
||||
"X": -238.17816,
|
||||
"Y": 3.543561,
|
||||
"Z": 283.71094
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,102 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000540,
|
||||
"Position": {
|
||||
"X": -238.17816,
|
||||
"Y": 3.543561,
|
||||
"Z": 283.71094
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
16,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006188,
|
||||
"Position": {
|
||||
"X": -236.92688,
|
||||
"Y": 3.5435789,
|
||||
"Z": 283.4973
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "dance"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,168 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000585,
|
||||
"Position": {
|
||||
"X": 25.558838,
|
||||
"Y": -5.7208977,
|
||||
"Z": 241.62659
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"$": "0 0 0 0 0 0 -> 1 0 0 0 0 128",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
1,
|
||||
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": [
|
||||
1,
|
||||
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": [
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1000545,
|
||||
"Position": {
|
||||
"X": -242.72534,
|
||||
"Y": 3.5598407,
|
||||
"Z": 286.9154
|
||||
},
|
||||
"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": 2001918,
|
||||
"Position": {
|
||||
"X": -100.93848,
|
||||
"Y": -8.285706,
|
||||
"Z": 261.40222
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
1895,
|
||||
1896,
|
||||
1897,
|
||||
1898
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
4,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2001918,
|
||||
"Position": {
|
||||
"X": -100.93848,
|
||||
"Y": -8.285706,
|
||||
"Z": 261.40222
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,85 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002937,
|
||||
"Position": {
|
||||
"X": -72.22095,
|
||||
"Y": -2.5420866,
|
||||
"Z": 187.85376
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002998,
|
||||
"Position": {
|
||||
"X": -283.92462,
|
||||
"Y": 12.245282,
|
||||
"Z": -39.383606
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,82 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000168,
|
||||
"Position": {
|
||||
"X": -75.48645,
|
||||
"Y": -0.5013741,
|
||||
"Z": -5.081299
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Gridania"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000734,
|
||||
"Position": {
|
||||
"X": -2.5482788,
|
||||
"Y": -1.2191527,
|
||||
"Z": 39.96338
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Central Shroud - Bentbranch Meadows"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 164.6276,
|
||||
"Y": -23.814985,
|
||||
"Z": 551.0861
|
||||
},
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "WalkTo",
|
||||
"TargetTerritoryId": 153
|
||||
},
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006193,
|
||||
"Position": {
|
||||
"X": -334.0658,
|
||||
"Y": -0.81366825,
|
||||
"Z": 148.91272
|
||||
},
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,125 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001949,
|
||||
"Position": {
|
||||
"X": -142.77869,
|
||||
"Y": 14.450195,
|
||||
"Z": -130.11371
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
55
|
||||
],
|
||||
"$": "0 0 0 0 0 0 -> 16 0 16 0 0 128",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
16,
|
||||
null,
|
||||
16,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"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",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
16,
|
||||
1,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
8
|
||||
]
|
||||
},
|
||||
{
|
||||
"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"
|
||||
},
|
||||
{
|
||||
"DataId": 2001952,
|
||||
"Position": {
|
||||
"X": 18.722778,
|
||||
"Y": 7.614197,
|
||||
"Z": -43.137268
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Interact",
|
||||
"$": "49 1 16 0 0 168 -> 65 17 16 0 0 184"
|
||||
},
|
||||
{
|
||||
"DataId": 2001950,
|
||||
"Position": {
|
||||
"X": 63.553833,
|
||||
"Y": 13.473633,
|
||||
"Z": -32.333923
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
64,
|
||||
61
|
||||
],
|
||||
"$": "65 17 16 0 0 184 -> "
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000590,
|
||||
"Position": {
|
||||
"X": -165.9419,
|
||||
"Y": 9.869227,
|
||||
"Z": -81.34589
|
||||
},
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000576,
|
||||
"Position": {
|
||||
"X": 21.469421,
|
||||
"Y": -4.575074,
|
||||
"Z": 221.75928
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 190.6642,
|
||||
"Y": 8.673417,
|
||||
"Z": 187.67012
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "lookout"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000168,
|
||||
"Position": {
|
||||
"X": -75.48645,
|
||||
"Y": -0.5013741,
|
||||
"Z": -5.081299
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Gridania"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,102 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000168,
|
||||
"Position": {
|
||||
"X": -75.48645,
|
||||
"Y": -0.5013741,
|
||||
"Z": -5.081299
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Gridania",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1003785,
|
||||
"Position": {
|
||||
"X": -489.8299,
|
||||
"Y": 21.48999,
|
||||
"Z": -381.97913
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001711,
|
||||
"Position": {
|
||||
"X": -480.91858,
|
||||
"Y": 17.990356,
|
||||
"Z": -386.862
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"ExcelSheet": "Warp",
|
||||
"Type": "YesNo",
|
||||
"Yes": true,
|
||||
"Prompt": 131088
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2001715,
|
||||
"Position": {
|
||||
"X": 23.23944,
|
||||
"Y": 2.090454,
|
||||
"Z": -0.015319824
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"ExcelSheet": "Warp",
|
||||
"Type": "YesNo",
|
||||
"Yes": true,
|
||||
"Prompt": 131090
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006688,
|
||||
"Position": {
|
||||
"X": 39.29187,
|
||||
"Y": 1.2148079,
|
||||
"Z": 0.8086548
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,239 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003958,
|
||||
"Position": {
|
||||
"X": -497.70352,
|
||||
"Y": -19.630796,
|
||||
"Z": 39.993896
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 128,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 30362,
|
||||
"TargetTerritoryId": 140
|
||||
},
|
||||
{
|
||||
"DataId": 1006361,
|
||||
"Position": {
|
||||
"X": -495.964,
|
||||
"Y": 19.009007,
|
||||
"Z": -371.72504
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006348,
|
||||
"Position": {
|
||||
"X": -473.99103,
|
||||
"Y": 19.027954,
|
||||
"Z": -370.84003
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006347,
|
||||
"Position": {
|
||||
"X": -474.6319,
|
||||
"Y": 19.027954,
|
||||
"Z": -371.20624
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006346,
|
||||
"Position": {
|
||||
"X": -475.97467,
|
||||
"Y": 19.027954,
|
||||
"Z": -370.65692
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006345,
|
||||
"Position": {
|
||||
"X": -477.34802,
|
||||
"Y": 19.027954,
|
||||
"Z": -370.35175
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006362,
|
||||
"Position": {
|
||||
"X": -395.8954,
|
||||
"Y": 23,
|
||||
"Z": -353.6584
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006344,
|
||||
"Position": {
|
||||
"X": -474.57086,
|
||||
"Y": 18.112427,
|
||||
"Z": -372.5796
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006351,
|
||||
"Position": {
|
||||
"X": -475.82214,
|
||||
"Y": 18.966919,
|
||||
"Z": -372.67108
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006350,
|
||||
"Position": {
|
||||
"X": -476.55457,
|
||||
"Y": 19.027954,
|
||||
"Z": -372.91522
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006349,
|
||||
"Position": {
|
||||
"X": -477.6532,
|
||||
"Y": 19.027954,
|
||||
"Z": -372.2744
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact",
|
||||
"Comment": "TODO QW"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006362,
|
||||
"Position": {
|
||||
"X": -395.8954,
|
||||
"Y": 23,
|
||||
"Z": -353.6584
|
||||
},
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003958,
|
||||
"Position": {
|
||||
"X": -497.70352,
|
||||
"Y": -19.630796,
|
||||
"Z": 39.993896
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,57 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003958,
|
||||
"Position": {
|
||||
"X": -497.70352,
|
||||
"Y": -19.630796,
|
||||
"Z": 39.993896
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000580,
|
||||
"Position": {
|
||||
"X": 25.65039,
|
||||
"Y": -3.7080078,
|
||||
"Z": 209.97937
|
||||
},
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003958,
|
||||
"Position": {
|
||||
"X": -497.70352,
|
||||
"Y": -19.630796,
|
||||
"Z": 39.993896
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006355,
|
||||
"Position": {
|
||||
"X": -512.47424,
|
||||
"Y": -16.42,
|
||||
"Z": -7.522766
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1002780,
|
||||
"Position": {
|
||||
"X": -89.79938,
|
||||
"Y": -45.331406,
|
||||
"Z": 195.88
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006371,
|
||||
"Position": {
|
||||
"X": -301.04523,
|
||||
"Y": -13.60442,
|
||||
"Z": 198.44348
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,49 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006371,
|
||||
"Position": {
|
||||
"X": -301.04523,
|
||||
"Y": -13.60442,
|
||||
"Z": 198.44348
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -372.23636,
|
||||
"Y": -2.92979,
|
||||
"Z": 178.26855
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1006372,
|
||||
"Position": {
|
||||
"X": 171.52661,
|
||||
"Y": 222.69258,
|
||||
"Z": 355.48938
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,96 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006372,
|
||||
"Position": {
|
||||
"X": 171.52661,
|
||||
"Y": 222.69258,
|
||||
"Z": 355.48938
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006731,
|
||||
"Position": {
|
||||
"X": 52.231567,
|
||||
"Y": 235.30933,
|
||||
"Z": 347.85986
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
724,
|
||||
725
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006731,
|
||||
"Position": {
|
||||
"X": 52.231567,
|
||||
"Y": 235.30933,
|
||||
"Z": 347.85986
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006372,
|
||||
"Position": {
|
||||
"X": 171.52661,
|
||||
"Y": 222.69258,
|
||||
"Z": 355.48938
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006376,
|
||||
"Position": {
|
||||
"X": 195.3612,
|
||||
"Y": 234.79839,
|
||||
"Z": 419.3026
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006377,
|
||||
"Position": {
|
||||
"X": 200.97656,
|
||||
"Y": 293.33,
|
||||
"Z": 420.37073
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,67 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006378,
|
||||
"Position": {
|
||||
"X": 204.5166,
|
||||
"Y": 293.32996,
|
||||
"Z": 418.57007
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006379,
|
||||
"Position": {
|
||||
"X": 538.4756,
|
||||
"Y": 235.2618,
|
||||
"Z": 317.1587
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006378,
|
||||
"Position": {
|
||||
"X": 204.5166,
|
||||
"Y": 293.32996,
|
||||
"Z": 418.57007
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006380,
|
||||
"Position": {
|
||||
"X": 169.48193,
|
||||
"Y": 223.03537,
|
||||
"Z": 366.26233
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,120 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006380,
|
||||
"Position": {
|
||||
"X": 169.48193,
|
||||
"Y": 223.03537,
|
||||
"Z": 366.26233
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002111,
|
||||
"Position": {
|
||||
"X": 24.12439,
|
||||
"Y": 207.599,
|
||||
"Z": 427.35938
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002110,
|
||||
"Position": {
|
||||
"X": 11.886719,
|
||||
"Y": 207.20227,
|
||||
"Z": 439.1698
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002261,
|
||||
"Position": {
|
||||
"X": 4.196167,
|
||||
"Y": 206.19507,
|
||||
"Z": 465.9646
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
724,
|
||||
725,
|
||||
726
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002261,
|
||||
"Position": {
|
||||
"X": 4.196167,
|
||||
"Y": 206.19507,
|
||||
"Z": 465.9646
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006380,
|
||||
"Position": {
|
||||
"X": 169.48193,
|
||||
"Y": 223.03537,
|
||||
"Z": 366.26233
|
||||
},
|
||||
"StopDistance": 2,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006382,
|
||||
"Position": {
|
||||
"X": 165.20935,
|
||||
"Y": 222.99998,
|
||||
"Z": 367.72717
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006383,
|
||||
"Position": {
|
||||
"X": 138.87231,
|
||||
"Y": 285.06497,
|
||||
"Z": 175.21924
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "List",
|
||||
"Prompt": "TEXT_GAIUSB608_00890_Q1_000_020",
|
||||
"Answer": "TEXT_GAIUSB608_00890_A3_000_023"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"StopDistance": 5,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
},
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,150 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006395,
|
||||
"Position": {
|
||||
"X": 206.86658,
|
||||
"Y": 303.115,
|
||||
"Z": -296.2539
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 205.61038,
|
||||
"Y": 256.0028,
|
||||
"Z": 83.6889
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "NW Skyfire Locks door (outside)"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 198.30511,
|
||||
"Y": 256.99997,
|
||||
"Z": 76.41981
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "NW Skyfire Locks door (inside)",
|
||||
"DisableNavmesh": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006396,
|
||||
"Position": {
|
||||
"X": 193.1029,
|
||||
"Y": 257,
|
||||
"Z": 57.87744
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 198.30511,
|
||||
"Y": 256.99997,
|
||||
"Z": 76.41981
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "NW Skyfire Locks door (inside)"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 205.61038,
|
||||
"Y": 256.0028,
|
||||
"Z": 83.6889
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "NW Skyfire Locks door (outside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006377,
|
||||
"Position": {
|
||||
"X": 200.97656,
|
||||
"Y": 293.33,
|
||||
"Z": 420.37073
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,134 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006407,
|
||||
"Position": {
|
||||
"X": 224.01758,
|
||||
"Y": 355.34894,
|
||||
"Z": -554.8334
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
1904
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006410,
|
||||
"Position": {
|
||||
"X": 232.59314,
|
||||
"Y": 359.00003,
|
||||
"Z": -563.95825
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006408,
|
||||
"Position": {
|
||||
"X": 212.57336,
|
||||
"Y": 361.0884,
|
||||
"Z": -586.9078
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006409,
|
||||
"Position": {
|
||||
"X": 189.50183,
|
||||
"Y": 359.89996,
|
||||
"Z": -590.20374
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006407,
|
||||
"Position": {
|
||||
"X": 224.01758,
|
||||
"Y": 355.34894,
|
||||
"Z": -554.8334
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,145 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006412,
|
||||
"Position": {
|
||||
"X": 282.30713,
|
||||
"Y": 255.013,
|
||||
"Z": 91.26416
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006413,
|
||||
"Position": {
|
||||
"X": 209.09436,
|
||||
"Y": 302,
|
||||
"Z": -190.1427
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002139,
|
||||
"Position": {
|
||||
"X": 208.05664,
|
||||
"Y": 301.9912,
|
||||
"Z": -193.59125
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002140,
|
||||
"Position": {
|
||||
"X": 210.00989,
|
||||
"Y": 301.9912,
|
||||
"Z": -193.22504
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002141,
|
||||
"Position": {
|
||||
"X": 212.05457,
|
||||
"Y": 301.9912,
|
||||
"Z": -193.65228
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006413,
|
||||
"Position": {
|
||||
"X": 209.09436,
|
||||
"Y": 302,
|
||||
"Z": -190.1427
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,86 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006415,
|
||||
"Position": {
|
||||
"X": 238.30005,
|
||||
"Y": 312,
|
||||
"Z": -227.00854
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006416,
|
||||
"Position": {
|
||||
"X": 445.0598,
|
||||
"Y": 304.93317,
|
||||
"Z": -258.56415
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006384,
|
||||
"Position": {
|
||||
"X": 263.5996,
|
||||
"Y": 303.1,
|
||||
"Z": -199.96954
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,85 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006435,
|
||||
"Position": {
|
||||
"X": -478.26355,
|
||||
"Y": 211,
|
||||
"Z": -203.81476
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006441,
|
||||
"Position": {
|
||||
"X": -414.45032,
|
||||
"Y": 211.45752,
|
||||
"Z": -294.48395
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006442,
|
||||
"Position": {
|
||||
"X": -417.92938,
|
||||
"Y": 224.99995,
|
||||
"Z": -301.89978
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006443,
|
||||
"Position": {
|
||||
"X": -434.95844,
|
||||
"Y": 224.39996,
|
||||
"Z": -199.45074
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,150 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006448,
|
||||
"Position": {
|
||||
"X": -428.97693,
|
||||
"Y": 211,
|
||||
"Z": -194.23212
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
],
|
||||
"Mount": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002158,
|
||||
"Position": {
|
||||
"X": -424.24664,
|
||||
"Y": 279.0111,
|
||||
"Z": 89.58569
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
2196
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006448,
|
||||
"Position": {
|
||||
"X": -428.97693,
|
||||
"Y": 211,
|
||||
"Z": -194.23212
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006450,
|
||||
"Position": {
|
||||
"X": -429.22107,
|
||||
"Y": 211,
|
||||
"Z": -201.7091
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006449,
|
||||
"Position": {
|
||||
"X": -436.51483,
|
||||
"Y": 211.01697,
|
||||
"Z": -204.18103
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006451,
|
||||
"Position": {
|
||||
"X": -432.2118,
|
||||
"Y": 224.39995,
|
||||
"Z": -197.83319
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006448,
|
||||
"Position": {
|
||||
"X": -428.97693,
|
||||
"Y": 211,
|
||||
"Z": -194.23212
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007567,
|
||||
"Position": {
|
||||
"X": -411.64264,
|
||||
"Y": 225.02267,
|
||||
"Z": -304.036
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,118 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006461,
|
||||
"Position": {
|
||||
"X": -415.9762,
|
||||
"Y": 224.99998,
|
||||
"Z": -299.73297
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006466,
|
||||
"Position": {
|
||||
"X": -410.23883,
|
||||
"Y": 218.1,
|
||||
"Z": -296.86432
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
],
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006441,
|
||||
"Position": {
|
||||
"X": -414.45032,
|
||||
"Y": 211.45752,
|
||||
"Z": -294.48395
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1007585,
|
||||
"Position": {
|
||||
"X": -462.2721,
|
||||
"Y": 211,
|
||||
"Z": -270.43567
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
16
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006448,
|
||||
"Position": {
|
||||
"X": -428.97693,
|
||||
"Y": 211,
|
||||
"Z": -194.23212
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006467,
|
||||
"Position": {
|
||||
"X": -437.94922,
|
||||
"Y": 211.17,
|
||||
"Z": -245.7771
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,122 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006467,
|
||||
"Position": {
|
||||
"X": -437.94922,
|
||||
"Y": 211.17,
|
||||
"Z": -245.7771
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -398.1833,
|
||||
"Y": 193.72365,
|
||||
"Z": -330.6203
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -495.94693,
|
||||
"Y": 149.93378,
|
||||
"Z": -258.90088
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -476.1802,
|
||||
"Y": 149.06573,
|
||||
"Z": -304.7811
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "Avoids part of the tail that is non-walkable"
|
||||
},
|
||||
{
|
||||
"DataId": 2002170,
|
||||
"Position": {
|
||||
"X": -488.6702,
|
||||
"Y": 150.1029,
|
||||
"Z": -318.71527
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AutoOnEnterArea",
|
||||
"KillEnemyDataIds": [
|
||||
46
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2002170,
|
||||
"Position": {
|
||||
"X": -488.6702,
|
||||
"Y": 150.1029,
|
||||
"Z": -318.71527
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002590,
|
||||
"Position": {
|
||||
"X": -488.6702,
|
||||
"Y": 150.65222,
|
||||
"Z": -317.79968
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -476.1802,
|
||||
"Y": 149.06573,
|
||||
"Z": -304.7811
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "Avoids part of the tail that is non-walkable"
|
||||
},
|
||||
{
|
||||
"DataId": 1006467,
|
||||
"Position": {
|
||||
"X": -437.94922,
|
||||
"Y": 211.17,
|
||||
"Z": -245.7771
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,116 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006467,
|
||||
"Position": {
|
||||
"X": -437.94922,
|
||||
"Y": 211.17,
|
||||
"Z": -245.7771
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006466,
|
||||
"Position": {
|
||||
"X": -410.23883,
|
||||
"Y": 218.1,
|
||||
"Z": -296.86432
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006468,
|
||||
"Position": {
|
||||
"X": -418.17352,
|
||||
"Y": 210.78818,
|
||||
"Z": -280.0794
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006468,
|
||||
"Position": {
|
||||
"X": -418.17352,
|
||||
"Y": 210.78818,
|
||||
"Z": -280.0794
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Emote",
|
||||
"Emote": "doubt"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002174,
|
||||
"Position": {
|
||||
"X": -391.3482,
|
||||
"Y": 219.25684,
|
||||
"Z": -179.43091
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002175,
|
||||
"Position": {
|
||||
"X": -391.22614,
|
||||
"Y": 219.28735,
|
||||
"Z": -179.49188
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,55 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006469,
|
||||
"Position": {
|
||||
"X": -886.2593,
|
||||
"Y": 228.30641,
|
||||
"Z": 1.6021729
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006467,
|
||||
"Position": {
|
||||
"X": -437.94922,
|
||||
"Y": 211.17,
|
||||
"Z": -245.7771
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,80 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006467,
|
||||
"Position": {
|
||||
"X": -437.94922,
|
||||
"Y": 211.17,
|
||||
"Z": -245.7771
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006444,
|
||||
"Position": {
|
||||
"X": -432.9748,
|
||||
"Y": 233.47266,
|
||||
"Z": -199.6643
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006490,
|
||||
"Position": {
|
||||
"X": -673.21277,
|
||||
"Y": 205.95982,
|
||||
"Z": -515.7702
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 11
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006491,
|
||||
"Position": {
|
||||
"X": 7.248047,
|
||||
"Y": -21.970922,
|
||||
"Z": 119.73743
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006492,
|
||||
"Position": {
|
||||
"X": 7.3395386,
|
||||
"Y": -21.970974,
|
||||
"Z": 121.934814
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006493,
|
||||
"Position": {
|
||||
"X": -437.67456,
|
||||
"Y": -55.694504,
|
||||
"Z": 100.87732
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006493,
|
||||
"Position": {
|
||||
"X": -437.67456,
|
||||
"Y": -55.694504,
|
||||
"Z": 100.87732
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006495,
|
||||
"Position": {
|
||||
"X": -2.2736206,
|
||||
"Y": -17.544205,
|
||||
"Z": 24.734863
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,89 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006495,
|
||||
"Position": {
|
||||
"X": -2.2736206,
|
||||
"Y": -17.544205,
|
||||
"Z": 24.734863
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002327,
|
||||
"Position": {
|
||||
"X": 423.17834,
|
||||
"Y": -62.45526,
|
||||
"Z": 213.39734
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000742
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002501,
|
||||
"Position": {
|
||||
"X": 423.17834,
|
||||
"Y": -62.45526,
|
||||
"Z": 213.39734
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "UseItem",
|
||||
"ItemId": 2000837
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006495,
|
||||
"Position": {
|
||||
"X": -2.2736206,
|
||||
"Y": -17.544205,
|
||||
"Z": 24.734863
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006493,
|
||||
"Position": {
|
||||
"X": -437.67456,
|
||||
"Y": -55.694504,
|
||||
"Z": 100.87732
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,41 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006493,
|
||||
"Position": {
|
||||
"X": -437.67456,
|
||||
"Y": -55.694504,
|
||||
"Z": 100.87732
|
||||
},
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,146 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 326.6569,
|
||||
"Y": -11.008737,
|
||||
"Z": 254.36206
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-32
|
||||
]
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 318.4823,
|
||||
"Y": -15.19004,
|
||||
"Z": 253.61394
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"DisableNavmesh": true,
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
-32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006500,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -15.187395,
|
||||
"Z": 253.52856
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006499,
|
||||
"Position": {
|
||||
"X": 260.88342,
|
||||
"Y": -24.975,
|
||||
"Z": 249.04248
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006498,
|
||||
"Position": {
|
||||
"X": 178.78992,
|
||||
"Y": -41.131824,
|
||||
"Z": 257.16016
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 293.98203,
|
||||
"Y": -24.988865,
|
||||
"Z": 240.63774
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Aleport Crates"
|
||||
},
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 293.98203,
|
||||
"Y": -24.988865,
|
||||
"Z": 240.63774
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Aleport Crates"
|
||||
},
|
||||
{
|
||||
"DataId": 1006502,
|
||||
"Position": {
|
||||
"X": 182.39111,
|
||||
"Y": -41.0828,
|
||||
"Z": 260.151
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 293.98203,
|
||||
"Y": -24.988865,
|
||||
"Z": 240.63774
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Aleport Crates"
|
||||
},
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006501,
|
||||
"Position": {
|
||||
"X": 311.4214,
|
||||
"Y": -36.405907,
|
||||
"Z": 333.54688
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 305.6621,
|
||||
"Y": -36.405907,
|
||||
"Z": 320.81702
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,71 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipIf": [
|
||||
"AetheryteShortcutIfInSameTerritory"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007640,
|
||||
"Position": {
|
||||
"X": 317.95215,
|
||||
"Y": -40.425003,
|
||||
"Z": 374.10547
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007540,
|
||||
"Position": {
|
||||
"X": -285.96942,
|
||||
"Y": -40.868286,
|
||||
"Z": 410.39136
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006503,
|
||||
"Position": {
|
||||
"X": -266.5904,
|
||||
"Y": -40.040386,
|
||||
"Z": 461.72266
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,95 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006503,
|
||||
"Position": {
|
||||
"X": -266.5904,
|
||||
"Y": -40.040386,
|
||||
"Z": 461.72266
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007639,
|
||||
"Position": {
|
||||
"X": -196.82617,
|
||||
"Y": -40.651188,
|
||||
"Z": 499.9618
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006506,
|
||||
"Position": {
|
||||
"X": -198.47418,
|
||||
"Y": -40.461403,
|
||||
"Z": 499.9923
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006505,
|
||||
"Position": {
|
||||
"X": -200.36627,
|
||||
"Y": -40.340702,
|
||||
"Z": 503.19666
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006503,
|
||||
"Position": {
|
||||
"X": -266.5904,
|
||||
"Y": -40.040386,
|
||||
"Z": 461.72266
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,123 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006503,
|
||||
"Position": {
|
||||
"X": -266.5904,
|
||||
"Y": -40.040386,
|
||||
"Z": 461.72266
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006507,
|
||||
"Position": {
|
||||
"X": -287.22064,
|
||||
"Y": -40.98314,
|
||||
"Z": 407.64465
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007716,
|
||||
"Position": {
|
||||
"X": -312.03174,
|
||||
"Y": -41.36315,
|
||||
"Z": 682.70386
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002189,
|
||||
"Position": {
|
||||
"X": -307.75922,
|
||||
"Y": -41.672424,
|
||||
"Z": 695.3993
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007716,
|
||||
"Position": {
|
||||
"X": -312.03174,
|
||||
"Y": -41.36315,
|
||||
"Z": 682.70386
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006503,
|
||||
"Position": {
|
||||
"X": -266.5904,
|
||||
"Y": -40.040386,
|
||||
"Z": 461.72266
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Comment": "Ferry Skipper",
|
||||
"DataId": 1005239,
|
||||
"Position": {
|
||||
"X": -289.9062,
|
||||
"Y": -41.2455,
|
||||
"Z": 406.51562
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"TargetTerritoryId": 138
|
||||
},
|
||||
{
|
||||
"DataId": 1006497,
|
||||
"Position": {
|
||||
"X": 321.1565,
|
||||
"Y": -18.197807,
|
||||
"Z": 276.5697
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,61 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006710,
|
||||
"Position": {
|
||||
"X": -123.73547,
|
||||
"Y": 7.0426483,
|
||||
"Z": -149.98096
|
||||
},
|
||||
"TerritoryId": 133,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Aetheryte Plaza",
|
||||
"[Gridania] Mih Khetto's Amphitheatre"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1000106,
|
||||
"Position": {
|
||||
"X": 29.007324,
|
||||
"Y": -19.000002,
|
||||
"Z": 105.485596
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "Interact",
|
||||
"AethernetShortcut": [
|
||||
"[Gridania] Mih Khetto's Amphitheatre",
|
||||
"[Gridania] Airship Landing"
|
||||
],
|
||||
"DialogueChoices": [
|
||||
{
|
||||
"Type": "YesNo",
|
||||
"Prompt": "TEXT_GAIUSC308_00975_Q1_000_040",
|
||||
"Yes": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 1006492,
|
||||
"Position": {
|
||||
"X": 7.3395386,
|
||||
"Y": -21.970974,
|
||||
"Z": 121.934814
|
||||
},
|
||||
"TerritoryId": 132,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1007473,
|
||||
"Position": {
|
||||
"X": 37.308228,
|
||||
"Y": 1.2000015,
|
||||
"Z": 2.9144287
|
||||
},
|
||||
"TerritoryId": 212,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006380,
|
||||
"Position": {
|
||||
"X": 169.48193,
|
||||
"Y": 223.03537,
|
||||
"Z": 366.26233
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,51 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006380,
|
||||
"Position": {
|
||||
"X": 169.48193,
|
||||
"Y": 223.03537,
|
||||
"Z": 366.26233
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006517,
|
||||
"Position": {
|
||||
"X": -49.607117,
|
||||
"Y": 223.60161,
|
||||
"Z": 350.57593
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006518,
|
||||
"Position": {
|
||||
"X": -354.84857,
|
||||
"Y": 214.79114,
|
||||
"Z": 687.5867
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,156 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006518,
|
||||
"Position": {
|
||||
"X": -354.84857,
|
||||
"Y": 214.79114,
|
||||
"Z": 687.5867
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002196,
|
||||
"Position": {
|
||||
"X": -322.80463,
|
||||
"Y": 216.54077,
|
||||
"Z": 655.8479
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002197,
|
||||
"Position": {
|
||||
"X": -290.9438,
|
||||
"Y": 223.25464,
|
||||
"Z": 590.5393
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002198,
|
||||
"Position": {
|
||||
"X": -316.15173,
|
||||
"Y": 228.93103,
|
||||
"Z": 540.917
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002199,
|
||||
"Position": {
|
||||
"X": -338.2467,
|
||||
"Y": 235.21777,
|
||||
"Z": 525.5664
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002200,
|
||||
"Position": {
|
||||
"X": -358.29712,
|
||||
"Y": 236.71313,
|
||||
"Z": 506.27905
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -399.05286,
|
||||
"Y": 228.68446,
|
||||
"Z": 445.9758
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"DataId": 1006519,
|
||||
"Position": {
|
||||
"X": -397.54333,
|
||||
"Y": 229.15173,
|
||||
"Z": 448.32532
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -688.1699,
|
||||
"Y": 241.99994,
|
||||
"Z": 355.80283
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (outside)"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -692.2779,
|
||||
"Y": 242.18399,
|
||||
"Z": 366.4715
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (inside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006521,
|
||||
"Position": {
|
||||
"X": -697.04736,
|
||||
"Y": 242.18399,
|
||||
"Z": 380.63623
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,120 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006520,
|
||||
"Position": {
|
||||
"X": -699.51935,
|
||||
"Y": 242.184,
|
||||
"Z": 373.495
|
||||
},
|
||||
"StopDistance": 7,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006521,
|
||||
"Position": {
|
||||
"X": -697.04736,
|
||||
"Y": 242.18399,
|
||||
"Z": 380.63623
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -692.2779,
|
||||
"Y": 242.18399,
|
||||
"Z": 366.4715
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (inside)"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -688.1699,
|
||||
"Y": 241.99994,
|
||||
"Z": 355.80283
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (outside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 2002265,
|
||||
"Position": {
|
||||
"X": -693.01904,
|
||||
"Y": 253.86426,
|
||||
"Z": 506.98096
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -690.43774,
|
||||
"Y": 261.3325,
|
||||
"Z": 433.44107
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"Comment": "Enemies lose aggro around here"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -688.1699,
|
||||
"Y": 241.99994,
|
||||
"Z": 355.80283
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (outside)",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -692.2779,
|
||||
"Y": 242.18399,
|
||||
"Z": 366.4715
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (inside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006520,
|
||||
"Position": {
|
||||
"X": -699.51935,
|
||||
"Y": 242.184,
|
||||
"Z": 373.495
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,109 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006520,
|
||||
"Position": {
|
||||
"X": -699.51935,
|
||||
"Y": 242.184,
|
||||
"Z": 373.495
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006522,
|
||||
"Position": {
|
||||
"X": -694.42285,
|
||||
"Y": 300.96927,
|
||||
"Z": 372.1521
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -692.2779,
|
||||
"Y": 242.18399,
|
||||
"Z": 366.4715
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (inside)"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -688.1699,
|
||||
"Y": 241.99994,
|
||||
"Z": 355.80283
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (outside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006525,
|
||||
"Position": {
|
||||
"X": -478.3551,
|
||||
"Y": 288.4877,
|
||||
"Z": 168.01697
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -688.1699,
|
||||
"Y": 241.99994,
|
||||
"Z": 355.80283
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (outside)",
|
||||
"Mount": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -692.2779,
|
||||
"Y": 242.18399,
|
||||
"Z": 366.4715
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (inside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"DataId": 1006520,
|
||||
"Position": {
|
||||
"X": -699.51935,
|
||||
"Y": 242.184,
|
||||
"Z": 373.495
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,88 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006528,
|
||||
"Position": {
|
||||
"X": -698.51227,
|
||||
"Y": 242.18399,
|
||||
"Z": 375.17358
|
||||
},
|
||||
"StopDistance": 5,
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -692.2779,
|
||||
"Y": 242.18399,
|
||||
"Z": 366.4715
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (inside)"
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -688.1699,
|
||||
"Y": 241.99994,
|
||||
"Z": 355.80283
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo",
|
||||
"$": "Monument Tower (outside)",
|
||||
"DisableNavmesh": true
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": -217.57614,
|
||||
"Y": 217.23946,
|
||||
"Z": 706.57166
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "WalkTo"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"StopDistance": 5,
|
||||
"InteractionType": "AttuneAetheryte",
|
||||
"Aetheryte": "Mor Dhona"
|
||||
},
|
||||
{
|
||||
"DataId": 1006530,
|
||||
"Position": {
|
||||
"X": 21.927185,
|
||||
"Y": 20.746975,
|
||||
"Z": -682.06305
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006531,
|
||||
"Position": {
|
||||
"X": 53.81848,
|
||||
"Y": 25.009521,
|
||||
"Z": -697.0779
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,86 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "JerryWester",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006531,
|
||||
"Position": {
|
||||
"X": 53.81848,
|
||||
"Y": 25.009521,
|
||||
"Z": -697.0779
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002201,
|
||||
"Position": {
|
||||
"X": -420.5539,
|
||||
"Y": -16.922302,
|
||||
"Z": -325.30713
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
43
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002202,
|
||||
"Position": {
|
||||
"X": -420.52344,
|
||||
"Y": -16.922302,
|
||||
"Z": -325.30713
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006534,
|
||||
"Position": {
|
||||
"X": 28.213867,
|
||||
"Y": 20.662334,
|
||||
"Z": -688.4413
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Mor Dhona"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1006535,
|
||||
"Position": {
|
||||
"X": 26.901611,
|
||||
"Y": 20.543928,
|
||||
"Z": -687.4037
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"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)"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
{
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1018317,
|
||||
"Position": {
|
||||
"X": 44.174805,
|
||||
"Y": 206.99484,
|
||||
"Z": -9.720032
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "AcceptQuest"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017653,
|
||||
"Position": {
|
||||
"X": -17.990417,
|
||||
"Y": 211.4722,
|
||||
"Z": -1.4801636
|
||||
},
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user