Compare commits

..

30 Commits

Author SHA1 Message Date
03a438bc43
Version bump 2025-03-03 23:24:25 +01:00
dec1e76ca4 Merge pull request '[Stormblood][Unlocks][The Hunt for Rathalos]' (#146) from Redacted/Questionable:Rathalos into master
Reviewed-on: #146
2025-03-03 22:20:12 +00:00
fb04bba9d2 Merge pull request '[Heavensward][Allied Society][Moogles]' (#152) from Redacted/Questionable:Moogles into master
Reviewed-on: #152
2025-03-03 22:17:51 +00:00
0b7c5099e3
Update author for 'Bearers Wanted' 2025-03-03 23:17:23 +01:00
ddfe98e8b2 Merge pull request 'AddingNewQuests' (#149) from pot0to/Questionable:AddingNewQuests into master
Reviewed-on: #149
2025-03-03 22:16:39 +00:00
ff610d38fc Merge pull request '[Shadowbringers][Sidequests][Eulmore]' (#141) from Redacted/Questionable:Eulmore into master
Reviewed-on: #141
2025-03-03 22:11:55 +00:00
d5232f68fb
Update some early SB quest battles 2025-03-03 23:08:40 +01:00
b46d0868bf
Add dubious free fantasia handling 2025-03-03 23:07:55 +01:00
pot0to
37c09b6ea1 fixing quest author name 2025-03-03 13:13:24 -08:00
7eca59fbf2 Added 2324_The Tools Make the Moogle 2025-03-03 16:35:01 +00:00
caf336c078
Add Little Ladies' Day (2025) quests 2025-03-03 16:40:00 +01:00
a970fdfa5d
Update dungeon/trial json schema to allow notes (part 2) 2025-03-03 15:17:17 +01:00
007ffd676a
Update post-HW quest battles 2025-03-03 03:44:12 +01:00
5c904d6cb3
Update dungeon/trial json schema to allow notes (similar to quest battles) 2025-03-03 02:53:18 +01:00
6c27b7d85e
Add workaround for non-landable area in 'Unlikely Allied' 2025-03-03 02:02:03 +01:00
0eb2c48f54
Show which quest fails to load for local projects 2025-03-03 02:01:36 +01:00
5766cfabce
Disable Xelphatol (pathing issues with bridges and lift) 2025-03-03 01:27:31 +01:00
0b001e83c9
Update Wrath IPC 2025-03-02 23:19:13 +01:00
d2501825c8
Don't stop Questionable/AD if dying in an AD-run dungeon 2025-03-02 22:06:39 +01:00
pot0to
9fd25e29ac fix whitespace 2025-03-01 12:57:21 -08:00
pot0to
e704375cf4 Merge branch 'master' of https://git.carvel.li/liza/Questionable 2025-03-01 12:47:04 -08:00
pot0to
37afd54776 fixed RequiredQuestVariables for one namazu quest 2025-02-28 17:45:14 -08:00
pot0to
276a97477b Merge branch 'master' of https://git.carvel.li/liza/Questionable 2025-02-27 12:56:16 -08:00
bb7fec09d8 Added 1555_The Newer King on the Block 2025-02-26 18:34:41 +00:00
pot0to
60be4cc618 reverting one quest i don't know why i changed 2025-02-23 23:59:54 -08:00
pot0to
ddaa651865 adding 3 more beast tribe dailies 2025-02-23 23:46:28 -08:00
pot0to
e74551693d Merge branch 'master' of https://git.carvel.li/liza/Questionable 2025-02-23 22:49:51 -08:00
1e02a8a1f2 Added 3731_A Ship on His Shoulder 2025-02-21 23:02:24 +00:00
pot0to
4ecc1fb675 adding one more moog 2025-02-20 14:17:20 -08:00
pot0to
ae8a6e20be added in missing BLU class quest 2025-02-16 19:22:38 -08:00
236 changed files with 2780 additions and 859 deletions

View File

@ -1,5 +1,5 @@
<Project> <Project>
<PropertyGroup Condition="$(MSBuildProjectName) != 'GatheringPathRenderer'"> <PropertyGroup Condition="$(MSBuildProjectName) != 'GatheringPathRenderer'">
<Version>4.21</Version> <Version>4.23</Version>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View 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()))));
}
}

View File

@ -117,11 +117,8 @@ internal static class QuestStepExtensions
Assignment(nameof(QuestStep.JumpDestination), step.JumpDestination, Assignment(nameof(QuestStep.JumpDestination), step.JumpDestination,
emptyStep.JumpDestination) emptyStep.JumpDestination)
.AsSyntaxNodeOrToken(), .AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.ContentFinderConditionId), Assignment(nameof(QuestStep.DutyOptions), step.DutyOptions,
step.ContentFinderConditionId, emptyStep.ContentFinderConditionId) emptyStep.DutyOptions)
.AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.AutoDutyEnabled),
step.AutoDutyEnabled, emptyStep.AutoDutyEnabled)
.AsSyntaxNodeOrToken(), .AsSyntaxNodeOrToken(),
Assignment(nameof(QuestStep.SinglePlayerDutyOptions), step.SinglePlayerDutyOptions, Assignment(nameof(QuestStep.SinglePlayerDutyOptions), step.SinglePlayerDutyOptions,
emptyStep.SinglePlayerDutyOptions) emptyStep.SinglePlayerDutyOptions)

View File

@ -152,6 +152,10 @@ internal static class SkipConditionsExtensions
emptyAetheryte.RequiredQuestVariablesNotMet) emptyAetheryte.RequiredQuestVariablesNotMet)
.AsSyntaxNodeOrToken(), .AsSyntaxNodeOrToken(),
Assignment(nameof(skipAetheryteCondition.NearPosition), skipAetheryteCondition.NearPosition, Assignment(nameof(skipAetheryteCondition.NearPosition), skipAetheryteCondition.NearPosition,
emptyAetheryte.NearPosition).AsSyntaxNodeOrToken())))); emptyAetheryte.NearPosition)
.AsSyntaxNodeOrToken(),
Assignment(nameof(skipAetheryteCondition.ExtraCondition), skipAetheryteCondition.ExtraCondition,
emptyAetheryte.ExtraCondition)
.AsSyntaxNodeOrToken()))));
} }
} }

View File

@ -62,6 +62,7 @@ public static class RoslynShortcuts
ComplexCombatData complexCombatData => complexCombatData.ToExpressionSyntax(), ComplexCombatData complexCombatData => complexCombatData.ToExpressionSyntax(),
QuestWorkValue questWorkValue => questWorkValue.ToExpressionSyntax(), QuestWorkValue questWorkValue => questWorkValue.ToExpressionSyntax(),
List<QuestWorkValue> list => list.ToExpressionSyntax(), // TODO fix in AssignmentList List<QuestWorkValue> list => list.ToExpressionSyntax(), // TODO fix in AssignmentList
DutyOptions dutyOptions => dutyOptions.ToExpressionSyntax(),
SinglePlayerDutyOptions dutyOptions => dutyOptions.ToExpressionSyntax(), SinglePlayerDutyOptions dutyOptions => dutyOptions.ToExpressionSyntax(),
SkipConditions skipConditions => skipConditions.ToExpressionSyntax(), SkipConditions skipConditions => skipConditions.ToExpressionSyntax(),
SkipStepConditions skipStepConditions => skipStepConditions.ToExpressionSyntax(), SkipStepConditions skipStepConditions => skipStepConditions.ToExpressionSyntax(),

View File

@ -54,7 +54,10 @@
{ {
"TerritoryId": 156, "TerritoryId": 156,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 92 "DutyOptions": {
"ContentFinderConditionId": 92,
"Enabled": false
}
} }
] ]
}, },

View File

@ -97,7 +97,10 @@
{ {
"TerritoryId": 156, "TerritoryId": 156,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 102 "DutyOptions": {
"ContentFinderConditionId": 102,
"Enabled": false
}
} }
] ]
}, },

View File

@ -81,7 +81,10 @@
{ {
"TerritoryId": 156, "TerritoryId": 156,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 111 "DutyOptions": {
"ContentFinderConditionId": 111,
"Enabled": false
}
} }
] ]
}, },

View File

@ -1,453 +1,471 @@
{ {
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json", "$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "pot0to", "Author": "pot0to",
"QuestSequence": [ "QuestSequence": [
{
"Sequence": 0,
"Steps": [
{ {
"Sequence": 0, "DataId": 1003075,
"Steps": [ "Position": {
{ "X": 440.7262,
"DataId": 1003075, "Y": -0.9374562,
"Position": { "Z": -62.21112
"X": 440.7262, },
"Y": -0.9374562, "TerritoryId": 154,
"Z": -62.21112 "InteractionType": "AcceptQuest",
}, "AetheryteShortcut": "North Shroud - Fallgourd Float",
"TerritoryId": 154, "Fly": true,
"InteractionType": "AcceptQuest", "SkipConditions": {
"AetheryteShortcut": "North Shroud - Fallgourd Float", "AetheryteShortcutIf": {
"Fly": true, "InSameTerritory": 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"
}
]
} }
] ]
} },
{
"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"
}
]
}
]
}

View File

@ -112,8 +112,10 @@
{ {
"TerritoryId": 138, "TerritoryId": 138,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 4, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 4,
"Enabled": true
}
} }
] ]
}, },

View File

@ -75,8 +75,10 @@
{ {
"TerritoryId": 146, "TerritoryId": 146,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 56, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 56,
"Enabled": true
}
} }
] ]
}, },

View File

@ -62,8 +62,10 @@
{ {
"TerritoryId": 140, "TerritoryId": 140,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 3, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 3,
"Enabled": true
}
} }
] ]
}, },

View File

@ -57,8 +57,10 @@
{ {
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 2, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 2,
"Enabled": true
}
} }
] ]
}, },

View File

@ -44,8 +44,10 @@
{ {
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 1, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 1,
"Enabled": true
}
} }
] ]
}, },

View File

@ -66,8 +66,13 @@
{ {
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 6, "DutyOptions": {
"AutoDutyEnabled": false "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"
]
}
} }
] ]
}, },

View File

@ -85,8 +85,13 @@
{ {
"TerritoryId": 137, "TerritoryId": 137,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 8, "DutyOptions": {
"AutoDutyEnabled": false "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"
]
}
} }
] ]
}, },

View File

@ -45,8 +45,10 @@
{ {
"TerritoryId": 139, "TerritoryId": 139,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 57, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 57,
"Enabled": true
}
} }
] ]
}, },

View File

@ -59,8 +59,14 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 11, "DutyOptions": {
"AutoDutyEnabled": true "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"
]
}
} }
] ]
}, },

View File

@ -38,8 +38,10 @@
{ {
"TerritoryId": 331, "TerritoryId": 331,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 58, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 58,
"Enabled": true
}
} }
] ]
}, },

View File

@ -195,8 +195,10 @@
{ {
"TerritoryId": 147, "TerritoryId": 147,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 15, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 15,
"Enabled": true
}
} }
] ]
}, },

View File

@ -46,8 +46,10 @@
{ {
"TerritoryId": 147, "TerritoryId": 147,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 16, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 16,
"Enabled": true
}
} }
] ]
}, },
@ -72,8 +74,10 @@
{ {
"TerritoryId": 1053, "TerritoryId": 1053,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 830, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 830,
"Enabled": true
}
} }
] ]
}, },

View File

@ -279,7 +279,10 @@
{ {
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 66 "DutyOptions": {
"ContentFinderConditionId": 66,
"Enabled": false
}
} }
] ]
}, },

View File

@ -29,7 +29,10 @@
{ {
"TerritoryId": 135, "TerritoryId": 135,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 72 "DutyOptions": {
"ContentFinderConditionId": 72,
"Enabled": false
}
} }
] ]
}, },

View File

@ -93,7 +93,10 @@
{ {
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 77 "DutyOptions": {
"ContentFinderConditionId": 77,
"Enabled": false
}
} }
] ]
}, },

View File

@ -88,8 +88,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 27, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 27,
"Enabled": true
}
} }
] ]
}, },

View File

@ -70,7 +70,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 79 "DutyOptions": {
"ContentFinderConditionId": 79,
"Enabled": false
}
} }
] ]
}, },

View File

@ -107,8 +107,10 @@
{ {
"TerritoryId": 156, "TerritoryId": 156,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 32, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 32,
"Enabled": true
}
} }
] ]
}, },

View File

@ -71,7 +71,10 @@
{ {
"TerritoryId": 351, "TerritoryId": 351,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 84 "DutyOptions": {
"ContentFinderConditionId": 84,
"Enabled": false
}
} }
] ]
}, },

View File

@ -103,7 +103,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 76 "DutyOptions": {
"ContentFinderConditionId": 76,
"Enabled": false
}
} }
] ]
}, },

View File

@ -92,7 +92,10 @@
{ {
"TerritoryId": 145, "TerritoryId": 145,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 81 "DutyOptions": {
"ContentFinderConditionId": 81,
"Enabled": false
}
} }
] ]
}, },

View File

@ -84,7 +84,10 @@
{ {
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 85 "DutyOptions": {
"ContentFinderConditionId": 85,
"Enabled": false
}
} }
] ]
}, },

View File

@ -49,7 +49,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 65 "DutyOptions": {
"ContentFinderConditionId": 65,
"Enabled": false
}
} }
] ]
}, },

View File

@ -119,7 +119,10 @@
{ {
"TerritoryId": 180, "TerritoryId": 180,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 64 "DutyOptions": {
"ContentFinderConditionId": 64,
"Enabled": false
}
} }
] ]
}, },

View File

@ -108,7 +108,10 @@
{ {
"TerritoryId": 146, "TerritoryId": 146,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 63 "DutyOptions": {
"ContentFinderConditionId": 63,
"Enabled": false
}
} }
] ]
}, },

View File

@ -23,7 +23,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 65, "DutyOptions": {
"ContentFinderConditionId": 65,
"Enabled": false
},
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, null,
null, null,
@ -36,7 +39,10 @@
{ {
"TerritoryId": 180, "TerritoryId": 180,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 64, "DutyOptions": {
"ContentFinderConditionId": 64,
"Enabled": false
},
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, null,
null, null,
@ -49,7 +55,10 @@
{ {
"TerritoryId": 146, "TerritoryId": 146,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 63, "DutyOptions": {
"ContentFinderConditionId": 63,
"Enabled": false
},
"CompletionQuestVariablesFlags": [ "CompletionQuestVariablesFlags": [
null, null,
null, null,

View File

@ -65,7 +65,10 @@
{ {
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 78 "DutyOptions": {
"ContentFinderConditionId": 78,
"Enabled": false
}
} }
] ]
}, },

View File

@ -41,7 +41,10 @@
{ {
"TerritoryId": 153, "TerritoryId": 153,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 82 "DutyOptions": {
"ContentFinderConditionId": 82,
"Enabled": false
}
} }
] ]
}, },

View File

@ -85,7 +85,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 80 "DutyOptions": {
"ContentFinderConditionId": 80,
"Enabled": false
}
} }
] ]
}, },

View File

@ -40,7 +40,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 13 "DutyOptions": {
"ContentFinderConditionId": 13,
"Enabled": false
}
} }
] ]
}, },

View File

@ -40,7 +40,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 13 "DutyOptions": {
"ContentFinderConditionId": 13,
"Enabled": false
}
} }
] ]
}, },

View File

@ -40,7 +40,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 13 "DutyOptions": {
"ContentFinderConditionId": 13,
"Enabled": false
}
} }
] ]
}, },

View File

@ -71,7 +71,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 5 "DutyOptions": {
"ContentFinderConditionId": 5,
"Enabled": false
}
} }
] ]
}, },

View File

@ -71,7 +71,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 5 "DutyOptions": {
"ContentFinderConditionId": 5,
"Enabled": false
}
} }
] ]
}, },

View File

@ -71,7 +71,10 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 5 "DutyOptions": {
"ContentFinderConditionId": 5,
"Enabled": false
}
} }
] ]
}, },

View File

@ -38,7 +38,10 @@
{ {
"TerritoryId": 397, "TerritoryId": 397,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 36 "DutyOptions": {
"ContentFinderConditionId": 36,
"Enabled": false
}
} }
] ]
}, },

View File

@ -29,7 +29,10 @@
{ {
"TerritoryId": 478, "TerritoryId": 478,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 220 "DutyOptions": {
"ContentFinderConditionId": 220,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 401, "TerritoryId": 401,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 120 "DutyOptions": {
"ContentFinderConditionId": 120,
"Enabled": false
}
} }
] ]
}, },

View File

@ -172,7 +172,10 @@
{ {
"TerritoryId": 567, "TerritoryId": 567,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 168 "DutyOptions": {
"ContentFinderConditionId": 168,
"Enabled": false
}
} }
] ]
}, },

View File

@ -88,7 +88,10 @@
{ {
"TerritoryId": 567, "TerritoryId": 567,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 220 "DutyOptions": {
"ContentFinderConditionId": 220,
"Enabled": false
}
} }
] ]
}, },

View File

@ -1,7 +1,6 @@
{ {
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json", "$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "liza", "Author": "pot0to",
"Disabled": true,
"QuestSequence": [ "QuestSequence": [
{ {
"Sequence": 0, "Sequence": 0,
@ -14,10 +13,119 @@
"Z": 313.98486 "Z": 313.98486
}, },
"TerritoryId": 400, "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, "Sequence": 255,
"Steps": [ "Steps": [

View File

@ -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"
}
]
}
]
}

View File

@ -51,7 +51,10 @@
{ {
"TerritoryId": 462, "TerritoryId": 462,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 86 "DutyOptions": {
"ContentFinderConditionId": 86,
"Enabled": false
}
} }
] ]
}, },

View File

@ -78,8 +78,10 @@
{ {
"TerritoryId": 398, "TerritoryId": 398,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 37, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 37,
"Enabled": true
}
} }
] ]
}, },

View File

@ -42,8 +42,10 @@
{ {
"TerritoryId": 418, "TerritoryId": 418,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 39, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 39,
"Enabled": true
}
} }
] ]
}, },

View File

@ -59,8 +59,10 @@
{ {
"TerritoryId": 419, "TerritoryId": 419,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 34, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 34,
"Enabled": true
}
} }
] ]
}, },

View File

@ -109,7 +109,10 @@
{ {
"TerritoryId": 401, "TerritoryId": 401,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 88 "DutyOptions": {
"ContentFinderConditionId": 88,
"Enabled": false
}
} }
] ]
}, },

View File

@ -110,8 +110,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 31, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 31,
"Enabled": true
}
} }
] ]
}, },

View File

@ -62,8 +62,10 @@
{ {
"TerritoryId": 402, "TerritoryId": 402,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 38, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 38,
"Enabled": true
}
} }
] ]
}, },
@ -88,7 +90,10 @@
{ {
"TerritoryId": 402, "TerritoryId": 402,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 90 "DutyOptions": {
"ContentFinderConditionId": 90,
"Enabled": false
}
} }
] ]
}, },

View File

@ -35,10 +35,15 @@
}, },
"TerritoryId": 419, "TerritoryId": 419,
"InteractionType": "SinglePlayerDuty", "InteractionType": "SinglePlayerDuty",
"SinglePlayerDutyOptions": {
"Enabled": true,
"TestedBossModVersion": "0.1.0.1"
},
"AethernetShortcut": [ "AethernetShortcut": [
"[Ishgard] The Forgotten Knight", "[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"
} }
] ]
}, },

View File

@ -77,8 +77,11 @@
{ {
"TerritoryId": 463, "TerritoryId": 463,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 141, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 141,
"Enabled": true,
"TestedAutoDutyVersion": "0.0.0.191"
}
} }
] ]
}, },

View File

@ -41,7 +41,14 @@
5537, 5537,
5538 5538
], ],
"$": "0 0 0 0 0 0 -> 16 48 0 0 0 128" "CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
128
]
}, },
{ {
"DataId": 2006870, "DataId": 2006870,
@ -56,6 +63,14 @@
"EnemySpawnType": "AfterInteraction", "EnemySpawnType": "AfterInteraction",
"KillEnemyDataIds": [ "KillEnemyDataIds": [
5539 5539
],
"CompletionQuestVariablesFlags": [
null,
null,
null,
null,
null,
64
] ]
} }
] ]

View File

@ -55,7 +55,11 @@
"Z": -300.83167 "Z": -300.83167
}, },
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "SinglePlayerDuty" "InteractionType": "SinglePlayerDuty",
"SinglePlayerDutyOptions": {
"Enabled": true,
"TestedBossModVersion": "0.1.0.1"
}
} }
] ]
}, },

View File

@ -97,7 +97,10 @@
{ {
"TerritoryId": 400, "TerritoryId": 400,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 171 "DutyOptions": {
"ContentFinderConditionId": 171,
"Enabled": false
}
} }
] ]
}, },

View File

@ -45,7 +45,10 @@
{ {
"TerritoryId": 569, "TerritoryId": 569,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 169 "DutyOptions": {
"ContentFinderConditionId": 169,
"Enabled": false
}
} }
] ]
}, },

View File

@ -57,8 +57,14 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 182, "DutyOptions": {
"AutoDutyEnabled": true "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"
]
}
} }
] ]
}, },

View File

@ -74,6 +74,16 @@
{ {
"Sequence": 4, "Sequence": 4,
"Steps": [ "Steps": [
{
"Position": {
"X": -112.94925,
"Y": 74.435455,
"Z": -281.74304
},
"TerritoryId": 180,
"InteractionType": "WalkTo",
"Fly": true
},
{ {
"DataId": 1017734, "DataId": 1017734,
"Position": { "Position": {
@ -83,7 +93,9 @@
}, },
"TerritoryId": 180, "TerritoryId": 180,
"InteractionType": "Interact", "InteractionType": "Interact",
"Fly": true "Mount": false,
"DisableNavmesh": true,
"DelaySecondsAtStart": 1
} }
] ]
}, },

View File

@ -198,7 +198,10 @@
{ {
"TerritoryId": 180, "TerritoryId": 180,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 60 "DutyOptions": {
"ContentFinderConditionId": 60,
"Enabled": false
}
} }
] ]
}, },

View File

@ -44,7 +44,11 @@
"Z": -9.720032 "Z": -9.720032
}, },
"TerritoryId": 146, "TerritoryId": 146,
"InteractionType": "SinglePlayerDuty" "InteractionType": "SinglePlayerDuty",
"SinglePlayerDutyOptions": {
"Enabled": true,
"TestedBossModVersion": "0.1.0.1"
}
} }
] ]
}, },

View File

@ -109,8 +109,10 @@
{ {
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 219, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 219,
"Enabled": true
}
} }
] ]
}, },

View File

@ -40,6 +40,13 @@
}, },
"TerritoryId": 156, "TerritoryId": 156,
"InteractionType": "SinglePlayerDuty", "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 "Fly": true
} }
] ]

View File

@ -113,7 +113,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 112 "DutyOptions": {
"ContentFinderConditionId": 112,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 113 "DutyOptions": {
"ContentFinderConditionId": 113,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 114 "DutyOptions": {
"ContentFinderConditionId": 114,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 115 "DutyOptions": {
"ContentFinderConditionId": 115,
"Enabled": false
}
} }
] ]
}, },

View File

@ -87,7 +87,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 136 "DutyOptions": {
"ContentFinderConditionId": 136,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 137 "DutyOptions": {
"ContentFinderConditionId": 137,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 138 "DutyOptions": {
"ContentFinderConditionId": 138,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 139 "DutyOptions": {
"ContentFinderConditionId": 139,
"Enabled": false
}
} }
] ]
}, },

View File

@ -55,7 +55,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 186 "DutyOptions": {
"ContentFinderConditionId": 186,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 187 "DutyOptions": {
"ContentFinderConditionId": 187,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 188 "DutyOptions": {
"ContentFinderConditionId": 188,
"Enabled": false
}
} }
] ]
}, },

View File

@ -27,7 +27,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 189 "DutyOptions": {
"ContentFinderConditionId": 189,
"Enabled": false
}
} }
] ]
}, },

View File

@ -123,7 +123,10 @@
{ {
"TerritoryId": 401, "TerritoryId": 401,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 89 "DutyOptions": {
"ContentFinderConditionId": 89,
"Enabled": false
}
} }
] ]
}, },

View File

@ -116,7 +116,10 @@
{ {
"TerritoryId": 401, "TerritoryId": 401,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 87 "DutyOptions": {
"ContentFinderConditionId": 87,
"Enabled": false
}
} }
] ]
}, },

View File

@ -81,7 +81,10 @@
{ {
"TerritoryId": 401, "TerritoryId": 401,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 134 "DutyOptions": {
"ContentFinderConditionId": 134,
"Enabled": false
}
} }
] ]
}, },

View File

@ -81,7 +81,10 @@
{ {
"TerritoryId": 402, "TerritoryId": 402,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 183 "DutyOptions": {
"ContentFinderConditionId": 183,
"Enabled": false
}
} }
] ]
}, },

View File

@ -114,7 +114,10 @@
{ {
"TerritoryId": 507, "TerritoryId": 507,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 223 "DutyOptions": {
"ContentFinderConditionId": 223,
"Enabled": false
}
} }
] ]
}, },

View File

@ -71,7 +71,10 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 196 "DutyOptions": {
"ContentFinderConditionId": 196,
"Enabled": false
}
} }
] ]
}, },
@ -97,4 +100,4 @@
] ]
} }
] ]
} }

View File

@ -82,7 +82,10 @@
{ {
"TerritoryId": 613, "TerritoryId": 613,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 235 "DutyOptions": {
"ContentFinderConditionId": 235,
"Enabled": false
}
} }
] ]
}, },

View File

@ -26,7 +26,10 @@
{ {
"TerritoryId": 736, "TerritoryId": 736,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 281 "DutyOptions": {
"ContentFinderConditionId": 281,
"Enabled": false
}
} }
] ]
}, },

View File

@ -24,7 +24,10 @@
{ {
"TerritoryId": 736, "TerritoryId": 736,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 550 "DutyOptions": {
"ContentFinderConditionId": 550,
"Enabled": false
}
} }
] ]
}, },

View File

@ -23,7 +23,10 @@
{ {
"TerritoryId": 735, "TerritoryId": 735,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 636 "DutyOptions": {
"ContentFinderConditionId": 636,
"Enabled": false
}
} }
] ]
}, },

View File

@ -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"
}
]
}
]
}

View File

@ -1,6 +1,6 @@
{ {
"$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json", "$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
"Author": "Theo", "Author": ["Theo", "pot0to"],
"QuestSequence": [ "QuestSequence": [
{ {
"Sequence": 0, "Sequence": 0,
@ -62,13 +62,13 @@
"Fly": true, "Fly": true,
"Land": true, "Land": true,
"Action": "Wasshoi", "Action": "Wasshoi",
"CompletionQuestVariablesFlags": [ "RequiredQuestVariables": [
null, null,
null, null,
[ 2, 5, 6 ],
null, null,
null, null,
null, null
64
] ]
}, },
{ {
@ -83,13 +83,34 @@
"Fly": true, "Fly": true,
"Land": true, "Land": true,
"Action": "Wasshoi", "Action": "Wasshoi",
"CompletionQuestVariablesFlags": [ "RequiredQuestVariables": [
null, null,
null, null,
[ 2, 3, 4 ],
null, null,
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, null,
128 null,
[ 1, 3, 6 ],
null,
null,
null
] ]
}, },
{ {
@ -104,13 +125,13 @@
"Fly": true, "Fly": true,
"Land": true, "Land": true,
"Action": "Wasshoi", "Action": "Wasshoi",
"CompletionQuestVariablesFlags": [ "RequiredQuestVariables": [
null, null,
null, null,
[ 1, 4, 5 ],
null, null,
null, null,
null, null
32
] ]
} }
] ]

View File

@ -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"
}
}
}
]
}
]
}

View File

@ -36,6 +36,10 @@
}, },
"TerritoryId": 135, "TerritoryId": 135,
"InteractionType": "SinglePlayerDuty", "InteractionType": "SinglePlayerDuty",
"SinglePlayerDutyOptions": {
"Enabled": true,
"TestedBossModVersion": "0.1.0.1"
},
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks" "AetheryteShortcut": "Lower La Noscea - Moraby Drydocks"
} }
] ]

View File

@ -66,6 +66,10 @@
}, },
"TerritoryId": 612, "TerritoryId": 612,
"InteractionType": "SinglePlayerDuty", "InteractionType": "SinglePlayerDuty",
"SinglePlayerDutyOptions": {
"Enabled": true,
"TestedBossModVersion": "0.1.0.1"
},
"AetheryteShortcut": "Fringes - Castrum Oriens" "AetheryteShortcut": "Fringes - Castrum Oriens"
} }
] ]

View File

@ -35,7 +35,11 @@
"Z": -37.766113 "Z": -37.766113
}, },
"TerritoryId": 612, "TerritoryId": 612,
"InteractionType": "SinglePlayerDuty" "InteractionType": "SinglePlayerDuty",
"SinglePlayerDutyOptions": {
"Enabled": true,
"TestedBossModVersion": "0.1.0.1"
}
} }
] ]
}, },

View File

@ -87,8 +87,10 @@
{ {
"TerritoryId": 680, "TerritoryId": 680,
"InteractionType": "Duty", "InteractionType": "Duty",
"ContentFinderConditionId": 238, "DutyOptions": {
"AutoDutyEnabled": true "ContentFinderConditionId": 238,
"Enabled": true
}
} }
] ]
}, },

View File

@ -156,7 +156,8 @@
"Z": -108.87432 "Z": -108.87432
}, },
"TerritoryId": 635, "TerritoryId": 635,
"InteractionType": "WalkTo" "InteractionType": "WalkTo",
"Mount": false
}, },
{ {
"DataId": 1019470, "DataId": 1019470,

Some files were not shown because too many files have changed in this diff Show More