Compare commits

..

7 Commits

Author SHA1 Message Date
pot0to
da360f47f2 added all the import export insert stuff 2025-03-01 19:35:32 -08:00
pot0to
a11d2362be removed unnecessary imports 2025-03-01 13:03:00 -08:00
pot0to
05202320db moving new quest paths to another branch 2025-03-01 12:53:20 -08:00
pot0to
6bd4583cc8 fixing whitespace to remove diff from PR 2025-03-01 12:51:09 -08:00
pot0to
e48d1f32a6 Merge branch 'master' of https://git.carvel.li/liza/Questionable into AddQuestPriorityIPC 2025-03-01 12:46:23 -08:00
pot0to
8a8034de94 added quest piriority ipc 2025-02-27 15:37:43 -08:00
pot0to
3297b7009c idk 2025-02-27 13:23:17 -08:00
240 changed files with 1068 additions and 3015 deletions

View File

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

View File

@ -1,30 +0,0 @@
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,8 +117,11 @@ 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.DutyOptions), step.DutyOptions, Assignment(nameof(QuestStep.ContentFinderConditionId),
emptyStep.DutyOptions) step.ContentFinderConditionId, emptyStep.ContentFinderConditionId)
.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,10 +152,6 @@ internal static class SkipConditionsExtensions
emptyAetheryte.RequiredQuestVariablesNotMet) emptyAetheryte.RequiredQuestVariablesNotMet)
.AsSyntaxNodeOrToken(), .AsSyntaxNodeOrToken(),
Assignment(nameof(skipAetheryteCondition.NearPosition), skipAetheryteCondition.NearPosition, Assignment(nameof(skipAetheryteCondition.NearPosition), skipAetheryteCondition.NearPosition,
emptyAetheryte.NearPosition) emptyAetheryte.NearPosition).AsSyntaxNodeOrToken()))));
.AsSyntaxNodeOrToken(),
Assignment(nameof(skipAetheryteCondition.ExtraCondition), skipAetheryteCondition.ExtraCondition,
emptyAetheryte.ExtraCondition)
.AsSyntaxNodeOrToken()))));
} }
} }

View File

@ -62,7 +62,6 @@ 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,10 +54,7 @@
{ {
"TerritoryId": 156, "TerritoryId": 156,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 92
"ContentFinderConditionId": 92,
"Enabled": false
}
} }
] ]
}, },

View File

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

View File

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

View File

@ -1,471 +1,453 @@
{ {
"$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": [
{ {
"DataId": 1003075, "Sequence": 0,
"Position": { "Steps": [
"X": 440.7262, {
"Y": -0.9374562, "DataId": 1003075,
"Z": -62.21112 "Position": {
}, "X": 440.7262,
"TerritoryId": 154, "Y": -0.9374562,
"InteractionType": "AcceptQuest", "Z": -62.21112
"AetheryteShortcut": "North Shroud - Fallgourd Float", },
"Fly": true, "TerritoryId": 154,
"SkipConditions": { "InteractionType": "AcceptQuest",
"AetheryteShortcutIf": { "AetheryteShortcut": "North Shroud - Fallgourd Float",
"InSameTerritory": true "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, "Sequence": 1,
"Position": { "Steps": [
"X": 440.7262, {
"Y": -0.9374562, "DataId": 2002499,
"Z": -62.21112 "Position": {
}, "X": -319.17297,
"InteractionType": "Interact", "Y": -36.636963,
"TerritoryId": 154, "Z": -278.73657
"AetheryteShortcut": "North Shroud - Fallgourd Float", },
"Fly": true, "TerritoryId": 138,
"SkipConditions": { "InteractionType": "Interact",
"AetheryteShortcutIf": { "AetheryteShortcut": "Western La Noscea - Aleport",
"InSameTerritory": true "Fly": 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, "Sequence": 2,
"Position": { "Steps": [
"X": 440.7262, {
"Y": -0.9374562, "DataId": 1003075,
"Z": -62.21112 "Position": {
}, "X": 440.7262,
"TerritoryId": 154, "Y": -0.9374562,
"InteractionType": "Interact" "Z": -62.21112
} },
] "TerritoryId": 154,
}, "InteractionType": "Interact",
{ "AetheryteShortcut": "North Shroud - Fallgourd Float",
"Sequence": 6, "Fly": true
"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, "Sequence": 3,
"Position": { "Steps": [
"X": 440.7262, {
"Y": -0.9374562, "DataId": 1003075,
"Z": -62.21112 "Position": {
}, "X": 440.7262,
"TerritoryId": 154, "Y": -0.9374562,
"InteractionType": "Interact" "Z": -62.21112
} },
] "TerritoryId": 154,
}, "Fly": true,
{ "InteractionType": "WaitForManualProgress",
"Sequence": 10, "Comment": "Craft/purchase off marketboard an erudite's picatrix of healing and meld 2 grade 3 quicktongue materia to it."
"Steps": [ },
{ {
"InteractionType": "EquipItem", "DataId": 1003075,
"ItemId": 2192, "Position": {
"TerritoryId": 138, "X": 440.7262,
"AetheryteShortcut": "Western La Noscea - Aleport", "Y": -0.9374562,
"SkipConditions": { "Z": -62.21112
"AetheryteShortcutIf": { },
"InSameTerritory": true "InteractionType": "Interact",
} "TerritoryId": 154,
} "AetheryteShortcut": "North Shroud - Fallgourd Float",
"Fly": true,
"SkipConditions": {
"AetheryteShortcutIf": {
"InSameTerritory": true
}
}
}
]
}, },
{ {
"DataId": 768, "Sequence": 4,
"Position": { "Steps": [
"X": -317.9305, {
"Y": -39.35494, "TerritoryId": 154,
"Z": -298.3956 "Fly": true,
}, "InteractionType": "Duty",
"TerritoryId": 138, "ContentFinderConditionId": 74,
"InteractionType": "Combat", "Comment": "Queue for A Relic Reborn: The Chimera"
"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, "Sequence": 5,
"Position": { "Steps": [
"X": 440.7262, {
"Y": -0.9374562, "Position": {
"Z": -62.21112 "X": 437.6279,
}, "Y": -3.1627378,
"TerritoryId": 154, "Z": -67.35514
"InteractionType": "Interact" },
} "TerritoryId": 154,
] "InteractionType": "WalkTo",
}, "Fly": true,
{ "AetheryteShortcut": "North Shroud - Fallgourd Float",
"Sequence": 12, "SkipConditions": {
"Steps": [ "AetheryteShortcutIf": {
{ "InSameTerritory": true
"TerritoryId": 154, }
"InteractionType": "Duty", }
"DutyOptions": { },
"ContentFinderConditionId": 75, {
"Enabled": false "DataId": 1003075,
}, "Position": {
"Comment": "Queue for A Relic Reborn: The Hydra" "X": 440.7262,
} "Y": -0.9374562,
] "Z": -62.21112
}, },
{ "TerritoryId": 154,
"Sequence": 13, "InteractionType": "Interact"
"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, "Sequence": 6,
"Position": { "Steps": [
"X": 440.7262, {
"Y": -0.9374562, "DataId": 1001304,
"Z": -62.21112 "Position": {
}, "X": 25.589355,
"TerritoryId": 154, "Y": 29,
"InteractionType": "Interact" "Z": -825.37573
} },
] "TerritoryId": 156,
}, "InteractionType": "Interact",
{ "Fly": true,
"Sequence": 14, "AetheryteShortcut": "Mor Dhona",
"Steps": [ "SkipConditions": {
{ "AetheryteShortcutIf": {
"TerritoryId": 154, "InSameTerritory": true
"InteractionType": "EquipRecommended" }
}
}
]
}, },
{ {
"DataId": 1003075, "Sequence": 7,
"Position": { "Steps": [
"X": 440.7262, {
"Y": -0.9374562, "TerritoryId": 154,
"Z": -62.21112 "Fly": true,
}, "InteractionType": "Duty",
"TerritoryId": 154, "ContentFinderConditionId": 14,
"InteractionType": "Interact" "Comment": "Queue for Amdapor Keep"
} }
] ]
},
{
"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": { "Sequence": 8,
"X": 437.6279, "Steps": [
"Y": -3.1627378, {
"Z": -67.35514 "DataId": 1001304,
}, "Position": {
"TerritoryId": 154, "X": 25.589355,
"InteractionType": "WalkTo", "Y": 29,
"Fly": true, "Z": -825.37573
"AetheryteShortcut": "North Shroud - Fallgourd Float", },
"SkipConditions": { "TerritoryId": 156,
"AetheryteShortcutIf": { "InteractionType": "Interact"
"InSameTerritory": true }
} ]
}
}, },
{ {
"DataId": 1003075, "Sequence": 9,
"Position": { "Steps": [
"X": 440.7262, {
"Y": -0.9374562, "Position": {
"Z": -62.21112 "X": 437.6279,
}, "Y": -3.1627378,
"TerritoryId": 154, "Z": -67.35514
"InteractionType": "CompleteQuest" },
"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"
}
]
} }
] ]
}
]
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -66,13 +66,8 @@
{ {
"TerritoryId": 148, "TerritoryId": 148,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 6,
"ContentFinderConditionId": 6, "AutoDutyEnabled": false
"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,13 +85,8 @@
{ {
"TerritoryId": 137, "TerritoryId": 137,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 8,
"ContentFinderConditionId": 8, "AutoDutyEnabled": false
"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,10 +45,8 @@
{ {
"TerritoryId": 139, "TerritoryId": 139,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 57,
"ContentFinderConditionId": 57, "AutoDutyEnabled": true
"Enabled": true
}
} }
] ]
}, },

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -144,7 +144,6 @@
}, },
"TerritoryId": 135, "TerritoryId": 135,
"InteractionType": "WalkTo", "InteractionType": "WalkTo",
"Fly": true,
"RestartNavigationIfCancelled": true "RestartNavigationIfCancelled": true
} }
] ]

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,111 +1,52 @@
{ {
"$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": "Redacted", "Author": "liza",
"QuestSequence": [ "Disabled": true,
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{ {
"Sequence": 0, "DataId": 1017171,
"Steps": [ "Position": {
{ "X": -335.56116,
"DataId": 1017171, "Y": 59.003433,
"Position": { "Z": 313.98486
"X": -335.56116, },
"Y": 59.003433, "TerritoryId": 400,
"Z": 313.98486 "InteractionType": "AcceptQuest"
},
"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": 1017377,
"Position": {
"X": 559.9907,
"Y": -1.071418,
"Z": -372.42694
},
"TerritoryId": 400,
"InteractionType": "Interact",
"Fly": true,
"Land": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"TerritoryId": 400,
"InteractionType": "Craft",
"ItemId": 15731,
"ItemCount": 1,
"SkipConditions": {
"StepIf": {
"Item": {
"NotInInventory": false
}
}
}
},
{
"DataId": 1017378,
"Position": {
"X": 555.84033,
"Y": -1.1545231,
"Z": -386.28217
},
"TerritoryId": 400,
"InteractionType": "Interact"
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1017171,
"Position": {
"X": -335.56116,
"Y": 59.003433,
"Z": 313.98486
},
"TerritoryId": 400,
"InteractionType": "CompleteQuest",
"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": 255,
"Steps": [
{
"DataId": 1017171,
"Position": {
"X": -335.56116,
"Y": 59.003433,
"Z": 313.98486
},
"TerritoryId": 400,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "The Churning Mists - Zenith",
"Fly": true,
"SkipConditions": {
"AetheryteShortcutIf": {
"NearPosition": {
"Position": {
"X": -335.56116,
"Y": 59.003433,
"Z": 313.98486
},
"TerritoryId": 400,
"MaximumDistance": 50
}
}
}
}
]
}
]
} }

View File

@ -1,129 +1,52 @@
{ {
"$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": "Redacted", "Author": "liza",
"QuestSequence": [ "Disabled": true,
"QuestSequence": [
{
"Sequence": 0,
"Steps": [
{ {
"Sequence": 0, "DataId": 1017171,
"Steps": [ "Position": {
{ "X": -335.56116,
"DataId": 1017171, "Y": 59.003433,
"Position": { "Z": 313.98486
"X": -335.56116, },
"Y": 59.003433, "TerritoryId": 400,
"Z": 313.98486 "InteractionType": "AcceptQuest"
},
"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": 1017416,
"Position": {
"X": -696.9253,
"Y": 180.23418,
"Z": 709.8954
},
"TerritoryId": 400,
"InteractionType": "Interact",
"Fly": true
}
]
},
{
"Sequence": 2,
"Steps": [
{
"DataId": 1017421,
"Position": {
"X": 217.51733,
"Y": 6.1228147,
"Z": 721.94995
},
"TerritoryId": 400,
"InteractionType": "Interact",
"AetheryteShortcut": "The Churning Mists - Moghome",
"Fly": true
}
]
},
{
"Sequence": 3,
"Steps": [
{
"TerritoryId": 400,
"InteractionType": "Craft",
"ItemId": 15739,
"ItemCount": 1,
"SkipConditions": {
"StepIf": {
"Item": {
"NotInInventory": false
}
}
}
},
{
"DataId": 1017416,
"Position": {
"X": -696.9253,
"Y": 180.23418,
"Z": 709.8954
},
"TerritoryId": 400,
"InteractionType": "Interact",
"AetheryteShortcut": "The Churning Mists - Zenith",
"Fly": true
}
]
},
{
"Sequence": 255,
"Steps": [
{
"DataId": 1017171,
"Position": {
"X": -335.56116,
"Y": 59.003433,
"Z": 313.98486
},
"TerritoryId": 400,
"InteractionType": "CompleteQuest",
"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": 255,
"Steps": [
{
"DataId": 1017171,
"Position": {
"X": -335.56116,
"Y": 59.003433,
"Z": 313.98486
},
"TerritoryId": 400,
"InteractionType": "CompleteQuest",
"AetheryteShortcut": "The Churning Mists - Zenith",
"Fly": true,
"SkipConditions": {
"AetheryteShortcutIf": {
"NearPosition": {
"Position": {
"X": -335.56116,
"Y": 59.003433,
"Z": 313.98486
},
"TerritoryId": 400,
"MaximumDistance": 50
}
}
}
}
]
}
]
} }

View File

@ -1,6 +1,7 @@
{ {
"$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": "liza",
"Disabled": true,
"QuestSequence": [ "QuestSequence": [
{ {
"Sequence": 0, "Sequence": 0,
@ -13,119 +14,10 @@
"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

@ -1,126 +0,0 @@
{
"$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,10 +51,7 @@
{ {
"TerritoryId": 462, "TerritoryId": 462,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 86
"ContentFinderConditionId": 86,
"Enabled": false
}
} }
] ]
}, },

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -35,15 +35,10 @@
}, },
"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] Saint Reymanaud's Cathedral" "[Ishgard] The Jeweled Crozier"
], ]
"$": "Changed aethernet from Jeweled Crozier, since navmesh thinks the pillar atop the stairs is walk-through"
} }
] ]
}, },

View File

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

View File

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

View File

@ -55,11 +55,7 @@
"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,10 +97,7 @@
{ {
"TerritoryId": 400, "TerritoryId": 400,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 171
"ContentFinderConditionId": 171,
"Enabled": false
}
} }
] ]
}, },

View File

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

View File

@ -57,14 +57,8 @@
{ {
"TerritoryId": 155, "TerritoryId": 155,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 182,
"ContentFinderConditionId": 182, "AutoDutyEnabled": true
"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,16 +74,6 @@
{ {
"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": {
@ -93,9 +83,7 @@
}, },
"TerritoryId": 180, "TerritoryId": 180,
"InteractionType": "Interact", "InteractionType": "Interact",
"Mount": false, "Fly": true
"DisableNavmesh": true,
"DelaySecondsAtStart": 1
} }
] ]
}, },

View File

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

View File

@ -44,11 +44,7 @@
"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,10 +109,8 @@
{ {
"TerritoryId": 152, "TerritoryId": 152,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 219,
"ContentFinderConditionId": 219, "AutoDutyEnabled": true
"Enabled": true
}
} }
] ]
}, },

View File

@ -40,13 +40,6 @@
}, },
"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,10 +113,7 @@
{ {
"TerritoryId": 399, "TerritoryId": 399,
"InteractionType": "Duty", "InteractionType": "Duty",
"DutyOptions": { "ContentFinderConditionId": 112
"ContentFinderConditionId": 112,
"Enabled": false
}
} }
] ]
}, },

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,164 +0,0 @@
{
"$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", "pot0to"], "Author": "Theo",
"QuestSequence": [ "QuestSequence": [
{ {
"Sequence": 0, "Sequence": 0,
@ -62,13 +62,13 @@
"Fly": true, "Fly": true,
"Land": true, "Land": true,
"Action": "Wasshoi", "Action": "Wasshoi",
"RequiredQuestVariables": [ "CompletionQuestVariablesFlags": [
null, null,
null, null,
[ 2, 5, 6 ],
null, null,
null, null,
null null,
64
] ]
}, },
{ {
@ -83,34 +83,13 @@
"Fly": true, "Fly": true,
"Land": true, "Land": true,
"Action": "Wasshoi", "Action": "Wasshoi",
"RequiredQuestVariables": [ "CompletionQuestVariablesFlags": [
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,
null, 128
[ 1, 3, 6 ],
null,
null,
null
] ]
}, },
{ {
@ -125,13 +104,13 @@
"Fly": true, "Fly": true,
"Land": true, "Land": true,
"Action": "Wasshoi", "Action": "Wasshoi",
"RequiredQuestVariables": [ "CompletionQuestVariablesFlags": [
null, null,
null, null,
[ 1, 4, 5 ],
null, null,
null, null,
null null,
32
] ]
} }
] ]

View File

@ -1,95 +0,0 @@
{
"$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,10 +36,6 @@
}, },
"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,10 +66,6 @@
}, },
"TerritoryId": 612, "TerritoryId": 612,
"InteractionType": "SinglePlayerDuty", "InteractionType": "SinglePlayerDuty",
"SinglePlayerDutyOptions": {
"Enabled": true,
"TestedBossModVersion": "0.1.0.1"
},
"AetheryteShortcut": "Fringes - Castrum Oriens" "AetheryteShortcut": "Fringes - Castrum Oriens"
} }
] ]

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