Compare commits
30 Commits
Author | SHA1 | Date | |
---|---|---|---|
03a438bc43 | |||
dec1e76ca4 | |||
fb04bba9d2 | |||
0b7c5099e3 | |||
ddfe98e8b2 | |||
ff610d38fc | |||
d5232f68fb | |||
b46d0868bf | |||
![]() |
37c09b6ea1 | ||
7eca59fbf2 | |||
caf336c078 | |||
a970fdfa5d | |||
007ffd676a | |||
5c904d6cb3 | |||
6c27b7d85e | |||
0eb2c48f54 | |||
5766cfabce | |||
0b001e83c9 | |||
d2501825c8 | |||
![]() |
9fd25e29ac | ||
![]() |
e704375cf4 | ||
![]() |
37afd54776 | ||
![]() |
276a97477b | ||
bb7fec09d8 | |||
![]() |
60be4cc618 | ||
![]() |
ddaa651865 | ||
![]() |
e74551693d | ||
1e02a8a1f2 | |||
![]() |
4ecc1fb675 | ||
![]() |
ae8a6e20be |
@ -1,5 +1,5 @@
|
||||
<Project>
|
||||
<PropertyGroup Condition="$(MSBuildProjectName) != 'GatheringPathRenderer'">
|
||||
<Version>4.21</Version>
|
||||
<Version>4.23</Version>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
30
QuestPathGenerator/RoslynElements/DutyOptionsExtensions.cs
Normal file
30
QuestPathGenerator/RoslynElements/DutyOptionsExtensions.cs
Normal file
@ -0,0 +1,30 @@
|
||||
using Microsoft.CodeAnalysis.CSharp;
|
||||
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
||||
using Questionable.Model.Questing;
|
||||
using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory;
|
||||
using static Questionable.QuestPathGenerator.RoslynShortcuts;
|
||||
|
||||
namespace Questionable.QuestPathGenerator.RoslynElements;
|
||||
|
||||
internal static class DutyOptionsExtensions
|
||||
{
|
||||
public static ExpressionSyntax ToExpressionSyntax(this DutyOptions dutyOptions)
|
||||
{
|
||||
var emptyOptions = new DutyOptions();
|
||||
return ObjectCreationExpression(
|
||||
IdentifierName(nameof(DutyOptions)))
|
||||
.WithInitializer(
|
||||
InitializerExpression(
|
||||
SyntaxKind.ObjectInitializerExpression,
|
||||
SeparatedList<ExpressionSyntax>(
|
||||
SyntaxNodeList(
|
||||
Assignment(nameof(DutyOptions.Enabled),
|
||||
dutyOptions.Enabled, emptyOptions.Enabled)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(DutyOptions.ContentFinderConditionId),
|
||||
dutyOptions.ContentFinderConditionId, emptyOptions.ContentFinderConditionId)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
AssignmentList(nameof(DutyOptions.Notes), dutyOptions.Notes)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
}
|
@ -117,11 +117,8 @@ internal static class QuestStepExtensions
|
||||
Assignment(nameof(QuestStep.JumpDestination), step.JumpDestination,
|
||||
emptyStep.JumpDestination)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.ContentFinderConditionId),
|
||||
step.ContentFinderConditionId, emptyStep.ContentFinderConditionId)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.AutoDutyEnabled),
|
||||
step.AutoDutyEnabled, emptyStep.AutoDutyEnabled)
|
||||
Assignment(nameof(QuestStep.DutyOptions), step.DutyOptions,
|
||||
emptyStep.DutyOptions)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(QuestStep.SinglePlayerDutyOptions), step.SinglePlayerDutyOptions,
|
||||
emptyStep.SinglePlayerDutyOptions)
|
||||
|
@ -152,6 +152,10 @@ internal static class SkipConditionsExtensions
|
||||
emptyAetheryte.RequiredQuestVariablesNotMet)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(skipAetheryteCondition.NearPosition), skipAetheryteCondition.NearPosition,
|
||||
emptyAetheryte.NearPosition).AsSyntaxNodeOrToken()))));
|
||||
emptyAetheryte.NearPosition)
|
||||
.AsSyntaxNodeOrToken(),
|
||||
Assignment(nameof(skipAetheryteCondition.ExtraCondition), skipAetheryteCondition.ExtraCondition,
|
||||
emptyAetheryte.ExtraCondition)
|
||||
.AsSyntaxNodeOrToken()))));
|
||||
}
|
||||
}
|
||||
|
@ -62,6 +62,7 @@ public static class RoslynShortcuts
|
||||
ComplexCombatData complexCombatData => complexCombatData.ToExpressionSyntax(),
|
||||
QuestWorkValue questWorkValue => questWorkValue.ToExpressionSyntax(),
|
||||
List<QuestWorkValue> list => list.ToExpressionSyntax(), // TODO fix in AssignmentList
|
||||
DutyOptions dutyOptions => dutyOptions.ToExpressionSyntax(),
|
||||
SinglePlayerDutyOptions dutyOptions => dutyOptions.ToExpressionSyntax(),
|
||||
SkipConditions skipConditions => skipConditions.ToExpressionSyntax(),
|
||||
SkipStepConditions skipStepConditions => skipStepConditions.ToExpressionSyntax(),
|
||||
|
@ -54,7 +54,10 @@
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 92
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 92,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -97,7 +97,10 @@
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 102
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 102,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -81,7 +81,10 @@
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 111
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 111,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,453 +1,471 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002499,
|
||||
"Position": {
|
||||
"X": -319.17297,
|
||||
"Y": -36.636963,
|
||||
"Z": -278.73657
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "WaitForManualProgress",
|
||||
"Comment": "Craft/purchase off marketboard an erudite's picatrix of healing and meld 2 grade 3 quicktongue materia to it."
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TerritoryId": 154,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 74,
|
||||
"Comment": "Queue for A Relic Reborn: The Chimera"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001304,
|
||||
"Position": {
|
||||
"X": 25.589355,
|
||||
"Y": 29,
|
||||
"Z": -825.37573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 14,
|
||||
"Comment": "Queue for Amdapor Keep"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001304,
|
||||
"Position": {
|
||||
"X": 25.589355,
|
||||
"Y": 29,
|
||||
"Z": -825.37573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 2192,
|
||||
"TerritoryId": 138,
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 768,
|
||||
"Position": {
|
||||
"X": -317.9305,
|
||||
"Y": -39.35494,
|
||||
"Z": -298.3956
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [
|
||||
766,
|
||||
767,
|
||||
768
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 8
|
||||
},
|
||||
{
|
||||
"High": 8,
|
||||
"Low": 8
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 11,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 12,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 75,
|
||||
"Comment": "Queue for A Relic Reborn: The Hydra"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 13,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 14,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "EquipRecommended"
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 15,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 59
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 16,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 61
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 17,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 60
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 18,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008119,
|
||||
"Position": {
|
||||
"X": 62.333008,
|
||||
"Y": 31.28805,
|
||||
"Z": -739.98627
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "PurchaseItem",
|
||||
"ItemId": 6267,
|
||||
"ItemCount": 1,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": false
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2002499,
|
||||
"Position": {
|
||||
"X": -319.17297,
|
||||
"Y": -36.636963,
|
||||
"Z": -278.73657
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact",
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "WaitForManualProgress",
|
||||
"Comment": "Craft/purchase off marketboard an erudite's picatrix of healing and meld 2 grade 3 quicktongue materia to it."
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"InteractionType": "Interact",
|
||||
"TerritoryId": 154,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "Duty",
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 74,
|
||||
"Enabled": false
|
||||
},
|
||||
"Comment": "Queue for A Relic Reborn: The Chimera"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 5,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 6,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001304,
|
||||
"Position": {
|
||||
"X": 25.589355,
|
||||
"Y": 29,
|
||||
"Z": -825.37573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 7,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"Fly": true,
|
||||
"InteractionType": "Duty",
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 14,
|
||||
"Enabled": false
|
||||
},
|
||||
"Comment": "Queue for Amdapor Keep"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 8,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1001304,
|
||||
"Position": {
|
||||
"X": 25.589355,
|
||||
"Y": 29,
|
||||
"Z": -825.37573
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 9,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 10,
|
||||
"Steps": [
|
||||
{
|
||||
"InteractionType": "EquipItem",
|
||||
"ItemId": 2192,
|
||||
"TerritoryId": 138,
|
||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 768,
|
||||
"Position": {
|
||||
"X": -317.9305,
|
||||
"Y": -39.35494,
|
||||
"Z": -298.3956
|
||||
},
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Combat",
|
||||
"EnemySpawnType": "OverworldEnemies",
|
||||
"KillEnemyDataIds": [
|
||||
766,
|
||||
767,
|
||||
768
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
{
|
||||
"Low": 8
|
||||
},
|
||||
{
|
||||
"High": 8,
|
||||
"Low": 8
|
||||
},
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
],
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 11,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 12,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 75,
|
||||
"Enabled": false
|
||||
},
|
||||
"Comment": "Queue for A Relic Reborn: The Hydra"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 13,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 14,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "EquipRecommended"
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 15,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 59,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 16,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 61,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 17,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Duty",
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 60,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 18,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1008119,
|
||||
"Position": {
|
||||
"X": 62.333008,
|
||||
"Y": 31.28805,
|
||||
"Z": -739.98627
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "PurchaseItem",
|
||||
"ItemId": 6267,
|
||||
"ItemCount": 1,
|
||||
"AetheryteShortcut": "Mor Dhona",
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": false
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"Position": {
|
||||
"X": 437.6279,
|
||||
"Y": -3.1627378,
|
||||
"Z": -67.35514
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"InSameTerritory": true
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1003075,
|
||||
"Position": {
|
||||
"X": 440.7262,
|
||||
"Y": -0.9374562,
|
||||
"Z": -62.21112
|
||||
},
|
||||
"TerritoryId": 154,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -112,8 +112,10 @@
|
||||
{
|
||||
"TerritoryId": 138,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 4,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 4,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -75,8 +75,10 @@
|
||||
{
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 56,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 56,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -62,8 +62,10 @@
|
||||
{
|
||||
"TerritoryId": 140,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 3,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 3,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -57,8 +57,10 @@
|
||||
{
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 2,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 2,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -44,8 +44,10 @@
|
||||
{
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 1,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 1,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -66,8 +66,13 @@
|
||||
{
|
||||
"TerritoryId": 148,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 6,
|
||||
"AutoDutyEnabled": false
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 6,
|
||||
"Enabled": false,
|
||||
"Notes": [
|
||||
"(after boss 2) Will not pick up the bloody parchment, and instead run off to open a random unrelated chest that it can't reach"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -85,8 +85,13 @@
|
||||
{
|
||||
"TerritoryId": 137,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 8,
|
||||
"AutoDutyEnabled": false
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 8,
|
||||
"Enabled": false,
|
||||
"Notes": [
|
||||
"(boss 2) Will walk out of the boss arena to try and attack optional enemies on the upper level, thus resetting the boss and breaking the path"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -45,8 +45,10 @@
|
||||
{
|
||||
"TerritoryId": 139,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 57,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 57,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -59,8 +59,14 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 11,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 11,
|
||||
"Enabled": false,
|
||||
"Notes": [
|
||||
"(boss 1) AI will not face cleaves away from healer, typically killing them",
|
||||
"(boss 3) AI will not face cleaves away from healer, which doesn't always kill them"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -38,8 +38,10 @@
|
||||
{
|
||||
"TerritoryId": 331,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 58,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 58,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -195,8 +195,10 @@
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 15,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 15,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -46,8 +46,10 @@
|
||||
{
|
||||
"TerritoryId": 147,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 16,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 16,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -72,8 +74,10 @@
|
||||
{
|
||||
"TerritoryId": 1053,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 830,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 830,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -279,7 +279,10 @@
|
||||
{
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 66
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 66,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -29,7 +29,10 @@
|
||||
{
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 72
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 72,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -93,7 +93,10 @@
|
||||
{
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 77
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 77,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -88,8 +88,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 27,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 27,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -70,7 +70,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 79
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 79,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -107,8 +107,10 @@
|
||||
{
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 32,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 32,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -71,7 +71,10 @@
|
||||
{
|
||||
"TerritoryId": 351,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 84
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 84,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -103,7 +103,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 76
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 76,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -92,7 +92,10 @@
|
||||
{
|
||||
"TerritoryId": 145,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 81
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 81,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -84,7 +84,10 @@
|
||||
{
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 85
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 85,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -49,7 +49,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 65
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 65,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -119,7 +119,10 @@
|
||||
{
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 64
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 64,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -108,7 +108,10 @@
|
||||
{
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 63
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 63,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -23,7 +23,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 65,
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 65,
|
||||
"Enabled": false
|
||||
},
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
@ -36,7 +39,10 @@
|
||||
{
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 64,
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 64,
|
||||
"Enabled": false
|
||||
},
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
@ -49,7 +55,10 @@
|
||||
{
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 63,
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 63,
|
||||
"Enabled": false
|
||||
},
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
|
@ -65,7 +65,10 @@
|
||||
{
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 78
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 78,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -41,7 +41,10 @@
|
||||
{
|
||||
"TerritoryId": 153,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 82
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 82,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -85,7 +85,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 80
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 80,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -40,7 +40,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 13
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 13,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -40,7 +40,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 13
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 13,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -40,7 +40,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 13
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 13,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -71,7 +71,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 5
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 5,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -71,7 +71,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 5
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 5,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -71,7 +71,10 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 5
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 5,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -38,7 +38,10 @@
|
||||
{
|
||||
"TerritoryId": 397,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 36
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 36,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -29,7 +29,10 @@
|
||||
{
|
||||
"TerritoryId": 478,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 220
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 220,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 120
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 120,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -172,7 +172,10 @@
|
||||
{
|
||||
"TerritoryId": 567,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 168
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 168,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -88,7 +88,10 @@
|
||||
{
|
||||
"TerritoryId": 567,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 220
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 220,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -1,7 +1,6 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "liza",
|
||||
"Disabled": true,
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -14,10 +13,119 @@
|
||||
"Z": 313.98486
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "AcceptQuest"
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "The Churning Mists - Zenith",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017459,
|
||||
"Position": {
|
||||
"X": -611.41376,
|
||||
"Y": 70,
|
||||
"Z": 209.30798
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1017458,
|
||||
"Position": {
|
||||
"X": -618.7381,
|
||||
"Y": 70,
|
||||
"Z": 207.9347
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
},
|
||||
{
|
||||
"DataId": 1017457,
|
||||
"Position": {
|
||||
"X": -619.74524,
|
||||
"Y": 70,
|
||||
"Z": 214.52649
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017352,
|
||||
"Position": {
|
||||
"X": -56.809387,
|
||||
"Y": -8.866012,
|
||||
"Z": 161.8219
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017461,
|
||||
"Position": {
|
||||
"X": 79.9115,
|
||||
"Y": -22.838034,
|
||||
"Z": -123.67438
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1017462,
|
||||
"Position": {
|
||||
"X": -479.08752,
|
||||
"Y": 106.92683,
|
||||
"Z": -112.077515
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1017460,
|
||||
"Position": {
|
||||
"X": -689.05164,
|
||||
"Y": 78.99983,
|
||||
"Z": 266.0105
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true,
|
||||
"AetheryteShortcut": "The Churning Mists - Zenith"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017352,
|
||||
"Position": {
|
||||
"X": -56.809387,
|
||||
"Y": -8.866012,
|
||||
"Z": 161.8219
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
|
@ -0,0 +1,126 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Redacted",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017169,
|
||||
"Position": {
|
||||
"X": -342.15308,
|
||||
"Y": 59.03801,
|
||||
"Z": 315.14453
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "The Churning Mists - Zenith",
|
||||
"Fly": true,
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"NearPosition": {
|
||||
"Position": {
|
||||
"X": -335.56116,
|
||||
"Y": 59.003433,
|
||||
"Z": 313.98486
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"MaximumDistance": 50
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017170,
|
||||
"Position": {
|
||||
"X": -344.22827,
|
||||
"Y": 59.038006,
|
||||
"Z": 317.1587
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017446,
|
||||
"Position": {
|
||||
"X": -103.92926,
|
||||
"Y": -8.845976,
|
||||
"Z": 216.35767
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 3,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017170,
|
||||
"Position": {
|
||||
"X": -344.22827,
|
||||
"Y": 59.038006,
|
||||
"Z": 317.1587
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1017172,
|
||||
"Position": {
|
||||
"X": -329.3355,
|
||||
"Y": 59.056396,
|
||||
"Z": 298.23755
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Craft",
|
||||
"ItemId": 15722,
|
||||
"ItemCount": 1,
|
||||
"SkipConditions": {
|
||||
"StepIf": {
|
||||
"Item": {
|
||||
"NotInInventory": false
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"DataId": 1017170,
|
||||
"Position": {
|
||||
"X": -344.22827,
|
||||
"Y": 59.038006,
|
||||
"Z": 317.1587
|
||||
},
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "CompleteQuest"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -51,7 +51,10 @@
|
||||
{
|
||||
"TerritoryId": 462,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 86
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 86,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -78,8 +78,10 @@
|
||||
{
|
||||
"TerritoryId": 398,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 37,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 37,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -42,8 +42,10 @@
|
||||
{
|
||||
"TerritoryId": 418,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 39,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 39,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -59,8 +59,10 @@
|
||||
{
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 34,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 34,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -109,7 +109,10 @@
|
||||
{
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 88
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 88,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -110,8 +110,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 31,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 31,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -62,8 +62,10 @@
|
||||
{
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 38,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 38,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
@ -88,7 +90,10 @@
|
||||
{
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 90
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 90,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -35,10 +35,15 @@
|
||||
},
|
||||
"TerritoryId": 419,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"SinglePlayerDutyOptions": {
|
||||
"Enabled": true,
|
||||
"TestedBossModVersion": "0.1.0.1"
|
||||
},
|
||||
"AethernetShortcut": [
|
||||
"[Ishgard] The Forgotten Knight",
|
||||
"[Ishgard] The Jeweled Crozier"
|
||||
]
|
||||
"[Ishgard] Saint Reymanaud's Cathedral"
|
||||
],
|
||||
"$": "Changed aethernet from Jeweled Crozier, since navmesh thinks the pillar atop the stairs is walk-through"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -77,8 +77,11 @@
|
||||
{
|
||||
"TerritoryId": 463,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 141,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 141,
|
||||
"Enabled": true,
|
||||
"TestedAutoDutyVersion": "0.0.0.191"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -41,7 +41,14 @@
|
||||
5537,
|
||||
5538
|
||||
],
|
||||
"$": "0 0 0 0 0 0 -> 16 48 0 0 0 128"
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
128
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2006870,
|
||||
@ -56,6 +63,14 @@
|
||||
"EnemySpawnType": "AfterInteraction",
|
||||
"KillEnemyDataIds": [
|
||||
5539
|
||||
],
|
||||
"CompletionQuestVariablesFlags": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -55,7 +55,11 @@
|
||||
"Z": -300.83167
|
||||
},
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"SinglePlayerDutyOptions": {
|
||||
"Enabled": true,
|
||||
"TestedBossModVersion": "0.1.0.1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -97,7 +97,10 @@
|
||||
{
|
||||
"TerritoryId": 400,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 171
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 171,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -45,7 +45,10 @@
|
||||
{
|
||||
"TerritoryId": 569,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 169
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 169,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -57,8 +57,14 @@
|
||||
{
|
||||
"TerritoryId": 155,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 182,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 182,
|
||||
"Enabled": false,
|
||||
"Notes": [
|
||||
"(after boss 1) the drawbridges being up will lead you to die from the spikes",
|
||||
"(after boss 1) the lift isn't working properly"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -74,6 +74,16 @@
|
||||
{
|
||||
"Sequence": 4,
|
||||
"Steps": [
|
||||
{
|
||||
"Position": {
|
||||
"X": -112.94925,
|
||||
"Y": 74.435455,
|
||||
"Z": -281.74304
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "WalkTo",
|
||||
"Fly": true
|
||||
},
|
||||
{
|
||||
"DataId": 1017734,
|
||||
"Position": {
|
||||
@ -83,7 +93,9 @@
|
||||
},
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
"Mount": false,
|
||||
"DisableNavmesh": true,
|
||||
"DelaySecondsAtStart": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -198,7 +198,10 @@
|
||||
{
|
||||
"TerritoryId": 180,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 60
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 60,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -44,7 +44,11 @@
|
||||
"Z": -9.720032
|
||||
},
|
||||
"TerritoryId": 146,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"SinglePlayerDutyOptions": {
|
||||
"Enabled": true,
|
||||
"TestedBossModVersion": "0.1.0.1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -109,8 +109,10 @@
|
||||
{
|
||||
"TerritoryId": 152,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 219,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 219,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -40,6 +40,13 @@
|
||||
},
|
||||
"TerritoryId": 156,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"SinglePlayerDutyOptions": {
|
||||
"Enabled": false,
|
||||
"TestedBossModVersion": "0.1.0.1",
|
||||
"Notes": [
|
||||
"(phase 2) AI doesn't use any of the Red Baron's attacks, just moves with it and eventually dies (after a few minutes)"
|
||||
]
|
||||
},
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
|
@ -113,7 +113,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 112
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 112,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 113
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 113,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 114
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 114,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 115
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 115,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -87,7 +87,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 136
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 136,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 137
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 137,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 138
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 138,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 139
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 139,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -55,7 +55,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 186
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 186,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 187
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 187,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 188
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 188,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -27,7 +27,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 189
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 189,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -123,7 +123,10 @@
|
||||
{
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 89
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 89,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -116,7 +116,10 @@
|
||||
{
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 87
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 87,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -81,7 +81,10 @@
|
||||
{
|
||||
"TerritoryId": 401,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 134
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 134,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -81,7 +81,10 @@
|
||||
{
|
||||
"TerritoryId": 402,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 183
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 183,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -114,7 +114,10 @@
|
||||
{
|
||||
"TerritoryId": 507,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 223
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 223,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -71,7 +71,10 @@
|
||||
{
|
||||
"TerritoryId": 399,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 196
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 196,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -82,7 +82,10 @@
|
||||
{
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 235
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 235,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -26,7 +26,10 @@
|
||||
{
|
||||
"TerritoryId": 736,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 281
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 281,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -24,7 +24,10 @@
|
||||
{
|
||||
"TerritoryId": 736,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 550
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 550,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -23,7 +23,10 @@
|
||||
{
|
||||
"TerritoryId": 735,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 636
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 636,
|
||||
"Enabled": false
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -0,0 +1,164 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 2009137,
|
||||
"Position": {
|
||||
"X": -141.68011,
|
||||
"Y": -149.34009,
|
||||
"Z": -214.64868
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[ 2, 3, 4, 5, 18, 19, 20, 21, 34, 35, 36, 37, 50, 51, 52, 53 ],
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2009138,
|
||||
"Position": {
|
||||
"X": -298.2376,
|
||||
"Y": -194.17108,
|
||||
"Z": -126.20746
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[ 1, 3, 4, 5, 17, 19, 20, 21, 33, 35, 36, 37, 49, 51, 52, 53 ],
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2009139,
|
||||
"Position": {
|
||||
"X": -131.7312,
|
||||
"Y": -191.97375,
|
||||
"Z": -6.1189575
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[ 1, 2, 3, 4, 5, 17, 18, 19, 21, 33, 34, 35, 37, 49, 50, 51, 53 ],
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2009135,
|
||||
"Position": {
|
||||
"X": -77.74481,
|
||||
"Y": -180.6211,
|
||||
"Z": 33.157837
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[ 1, 2, 4, 5, 17, 18, 20, 21, 33, 34, 36, 37, 49, 50, 52, 53 ],
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2009136,
|
||||
"Position": {
|
||||
"X": -150.10309,
|
||||
"Y": -167.01001,
|
||||
"Z": 87.60205
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "Interact",
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
[ 1, 2, 3, 4, 17, 18, 19, 20, 33, 34, 35, 36, 49, 50, 51, 52 ],
|
||||
null,
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025824,
|
||||
"Position": {
|
||||
"X": 87.08313,
|
||||
"Y": -11.459534,
|
||||
"Z": 653.2234
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Craft",
|
||||
"ItemId": 22743,
|
||||
"ItemCount": 1
|
||||
},
|
||||
{
|
||||
"DataId": 1025822,
|
||||
"Position": {
|
||||
"X": 88.45642,
|
||||
"Y": -11.547716,
|
||||
"Z": 652.7351
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1024217,
|
||||
"Position": {
|
||||
"X": 394.39978,
|
||||
"Y": -119.58932,
|
||||
"Z": -232.28815
|
||||
},
|
||||
"TerritoryId": 613,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Ruby Sea - Tamamizu"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "Theo",
|
||||
"Author": ["Theo", "pot0to"],
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
@ -62,13 +62,13 @@
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"Action": "Wasshoi",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[ 2, 5, 6 ],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
64
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -83,13 +83,34 @@
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"Action": "Wasshoi",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[ 2, 3, 4 ],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
"DataId": 2009502,
|
||||
"Position": {
|
||||
"X": 95.47571,
|
||||
"Y": -12.619263,
|
||||
"Z": 699.1836
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Action",
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"Action": "Wasshoi",
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
128
|
||||
null,
|
||||
[ 1, 3, 6 ],
|
||||
null,
|
||||
null,
|
||||
null
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -104,13 +125,13 @@
|
||||
"Fly": true,
|
||||
"Land": true,
|
||||
"Action": "Wasshoi",
|
||||
"CompletionQuestVariablesFlags": [
|
||||
"RequiredQuestVariables": [
|
||||
null,
|
||||
null,
|
||||
[ 1, 4, 5 ],
|
||||
null,
|
||||
null,
|
||||
null,
|
||||
32
|
||||
null
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -0,0 +1,95 @@
|
||||
{
|
||||
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
|
||||
"Author": "pot0to",
|
||||
"QuestSequence": [
|
||||
{
|
||||
"Sequence": 0,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025602,
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "AcceptQuest",
|
||||
"AetheryteShortcut": "Azim Steppe - Dhoro Iloh",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"AetheryteLocked": "Azim Steppe - Dhoro Iloh"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 1,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025822,
|
||||
"Position": {
|
||||
"X": 88.45642,
|
||||
"Y": -11.547716,
|
||||
"Z": 652.7351
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact",
|
||||
"Fly": true
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 2,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025824,
|
||||
"Position": {
|
||||
"X": 87.08313,
|
||||
"Y": -11.459534,
|
||||
"Z": 653.2234
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact"
|
||||
},
|
||||
{
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Craft",
|
||||
"ItemId": 22743,
|
||||
"ItemCount": 1
|
||||
},
|
||||
{
|
||||
"DataId": 1025822,
|
||||
"Position": {
|
||||
"X": 88.45642,
|
||||
"Y": -11.547716,
|
||||
"Z": 652.7351
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "Interact"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"Sequence": 255,
|
||||
"Steps": [
|
||||
{
|
||||
"DataId": 1025602,
|
||||
"Position": {
|
||||
"X": -780.148,
|
||||
"Y": 128.25195,
|
||||
"Z": 97.154175
|
||||
},
|
||||
"TerritoryId": 622,
|
||||
"InteractionType": "CompleteQuest",
|
||||
"AetheryteShortcut": "Azim Steppe - Dhoro Iloh",
|
||||
"SkipConditions": {
|
||||
"AetheryteShortcutIf": {
|
||||
"AetheryteLocked": "Azim Steppe - Dhoro Iloh"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -36,6 +36,10 @@
|
||||
},
|
||||
"TerritoryId": 135,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"SinglePlayerDutyOptions": {
|
||||
"Enabled": true,
|
||||
"TestedBossModVersion": "0.1.0.1"
|
||||
},
|
||||
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks"
|
||||
}
|
||||
]
|
||||
|
@ -66,6 +66,10 @@
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"SinglePlayerDutyOptions": {
|
||||
"Enabled": true,
|
||||
"TestedBossModVersion": "0.1.0.1"
|
||||
},
|
||||
"AetheryteShortcut": "Fringes - Castrum Oriens"
|
||||
}
|
||||
]
|
||||
|
@ -35,7 +35,11 @@
|
||||
"Z": -37.766113
|
||||
},
|
||||
"TerritoryId": 612,
|
||||
"InteractionType": "SinglePlayerDuty"
|
||||
"InteractionType": "SinglePlayerDuty",
|
||||
"SinglePlayerDutyOptions": {
|
||||
"Enabled": true,
|
||||
"TestedBossModVersion": "0.1.0.1"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -87,8 +87,10 @@
|
||||
{
|
||||
"TerritoryId": 680,
|
||||
"InteractionType": "Duty",
|
||||
"ContentFinderConditionId": 238,
|
||||
"AutoDutyEnabled": true
|
||||
"DutyOptions": {
|
||||
"ContentFinderConditionId": 238,
|
||||
"Enabled": true
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -156,7 +156,8 @@
|
||||
"Z": -108.87432
|
||||
},
|
||||
"TerritoryId": 635,
|
||||
"InteractionType": "WalkTo"
|
||||
"InteractionType": "WalkTo",
|
||||
"Mount": false
|
||||
},
|
||||
{
|
||||
"DataId": 1019470,
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user