Replace SkipIf logic
This commit is contained in:
parent
b86d01bd6f
commit
e40084ada1
@ -357,7 +357,7 @@ public class QuestSourceGenerator : ISourceGenerator
|
|||||||
Assignment(nameof(QuestStep.ContentFinderConditionId),
|
Assignment(nameof(QuestStep.ContentFinderConditionId),
|
||||||
step.ContentFinderConditionId, emptyStep.ContentFinderConditionId)
|
step.ContentFinderConditionId, emptyStep.ContentFinderConditionId)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
AssignmentList(nameof(QuestStep.SkipIf), step.SkipIf)
|
Assignment(nameof(QuestStep.SkipConditions), step.SkipConditions, emptyStep.SkipConditions)
|
||||||
.AsSyntaxNodeOrToken(),
|
.AsSyntaxNodeOrToken(),
|
||||||
AssignmentList(nameof(QuestStep.RequiredQuestVariables),
|
AssignmentList(nameof(QuestStep.RequiredQuestVariables),
|
||||||
step.RequiredQuestVariables)
|
step.RequiredQuestVariables)
|
||||||
|
@ -223,6 +223,83 @@ public static class RoslynShortcuts
|
|||||||
SyntaxNodeList(list.Select(x => ExpressionElement(
|
SyntaxNodeList(list.Select(x => ExpressionElement(
|
||||||
LiteralValue(x)).AsSyntaxNodeOrToken()).ToArray())));
|
LiteralValue(x)).AsSyntaxNodeOrToken()).ToArray())));
|
||||||
}
|
}
|
||||||
|
else if (value is SkipConditions skipConditions)
|
||||||
|
{
|
||||||
|
var emptySkip = new SkipConditions();
|
||||||
|
return ObjectCreationExpression(
|
||||||
|
IdentifierName(nameof(SkipConditions)))
|
||||||
|
.WithInitializer(
|
||||||
|
InitializerExpression(
|
||||||
|
SyntaxKind.ObjectInitializerExpression,
|
||||||
|
SeparatedList<ExpressionSyntax>(
|
||||||
|
SyntaxNodeList(
|
||||||
|
Assignment(nameof(SkipConditions.StepIf), skipConditions.StepIf, emptySkip.StepIf)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(SkipConditions.AetheryteShortcutIf),
|
||||||
|
skipConditions.AetheryteShortcutIf, emptySkip.AetheryteShortcutIf)
|
||||||
|
.AsSyntaxNodeOrToken()))));
|
||||||
|
}
|
||||||
|
else if (value is SkipStepConditions skipStepConditions)
|
||||||
|
{
|
||||||
|
var emptyStep = new SkipStepConditions();
|
||||||
|
return ObjectCreationExpression(
|
||||||
|
IdentifierName(nameof(SkipStepConditions)))
|
||||||
|
.WithInitializer(
|
||||||
|
InitializerExpression(
|
||||||
|
SyntaxKind.ObjectInitializerExpression,
|
||||||
|
SeparatedList<ExpressionSyntax>(
|
||||||
|
SyntaxNodeList(
|
||||||
|
Assignment(nameof(SkipStepConditions.Never), skipStepConditions.Never,
|
||||||
|
emptyStep.Never)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(SkipStepConditions.Flying), skipStepConditions.Flying,
|
||||||
|
emptyStep.Flying)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(SkipStepConditions.Chocobo), skipStepConditions.Chocobo,
|
||||||
|
emptyStep.Chocobo)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(SkipStepConditions.NotTargetable),
|
||||||
|
skipStepConditions.NotTargetable, emptyStep.NotTargetable)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
AssignmentList(nameof(SkipStepConditions.InTerritory),
|
||||||
|
skipStepConditions.InTerritory).AsSyntaxNodeOrToken(),
|
||||||
|
AssignmentList(nameof(SkipStepConditions.NotInTerritory),
|
||||||
|
skipStepConditions.NotInTerritory).AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(SkipStepConditions.Item), skipStepConditions.Item, emptyStep.Item)
|
||||||
|
.AsSyntaxNodeOrToken(),
|
||||||
|
Assignment(nameof(SkipStepConditions.ExtraCondition),
|
||||||
|
skipStepConditions.ExtraCondition, emptyStep.ExtraCondition)
|
||||||
|
.AsSyntaxNodeOrToken()))));
|
||||||
|
}
|
||||||
|
else if (value is SkipItemConditions skipItemCondition)
|
||||||
|
{
|
||||||
|
var emptyItem = new SkipItemConditions();
|
||||||
|
return ObjectCreationExpression(
|
||||||
|
IdentifierName(nameof(SkipItemConditions)))
|
||||||
|
.WithInitializer(
|
||||||
|
InitializerExpression(
|
||||||
|
SyntaxKind.ObjectInitializerExpression,
|
||||||
|
SeparatedList<ExpressionSyntax>(
|
||||||
|
SyntaxNodeList(
|
||||||
|
Assignment(nameof(SkipItemConditions.NotInInventory),
|
||||||
|
skipItemCondition.NotInInventory,
|
||||||
|
emptyItem.NotInInventory)))));
|
||||||
|
}
|
||||||
|
else if (value is SkipAetheryteCondition skipAetheryteCondition)
|
||||||
|
{
|
||||||
|
var emptyAetheryte = new SkipAetheryteCondition();
|
||||||
|
return ObjectCreationExpression(
|
||||||
|
IdentifierName(nameof(SkipAetheryteCondition)))
|
||||||
|
.WithInitializer(
|
||||||
|
InitializerExpression(
|
||||||
|
SyntaxKind.ObjectInitializerExpression,
|
||||||
|
SeparatedList<ExpressionSyntax>(
|
||||||
|
SyntaxNodeList(
|
||||||
|
Assignment(nameof(SkipAetheryteCondition.Never), skipAetheryteCondition.Never,
|
||||||
|
emptyAetheryte.Never),
|
||||||
|
Assignment(nameof(SkipAetheryteCondition.InSameTerritory),
|
||||||
|
skipAetheryteCondition.InSameTerritory, emptyAetheryte.InSameTerritory)))));
|
||||||
|
}
|
||||||
else if (value is null)
|
else if (value is null)
|
||||||
return LiteralExpression(SyntaxKind.NullLiteralExpression);
|
return LiteralExpression(SyntaxKind.NullLiteralExpression);
|
||||||
}
|
}
|
||||||
|
@ -34,9 +34,11 @@
|
|||||||
"TerritoryId": 180,
|
"TerritoryId": 180,
|
||||||
"InteractionType": "WalkTo",
|
"InteractionType": "WalkTo",
|
||||||
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
"AetheryteShortcut": "Outer La Noscea - Camp Overlook",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
],
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"CompletionQuestVariablesFlags": [
|
"CompletionQuestVariablesFlags": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
|
@ -128,9 +128,11 @@
|
|||||||
null,
|
null,
|
||||||
-32
|
-32
|
||||||
],
|
],
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"FlyingUnlocked"
|
"StepIf": {
|
||||||
]
|
"Flying": "Unlocked"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1007842,
|
"DataId": 1007842,
|
||||||
|
@ -35,9 +35,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
],
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"CompletionQuestVariablesFlags": [
|
"CompletionQuestVariablesFlags": [
|
||||||
null,
|
null,
|
||||||
null,
|
null,
|
||||||
|
@ -37,9 +37,11 @@
|
|||||||
-128
|
-128
|
||||||
],
|
],
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
],
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"Fly": true
|
"Fly": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -95,9 +97,11 @@
|
|||||||
],
|
],
|
||||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||||
"Fly": true,
|
"Fly": true,
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
],
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"Comment": "TODO Verify enemy id"
|
"Comment": "TODO Verify enemy id"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -43,9 +43,11 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 2002312,
|
"DataId": 2002312,
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Ul'dah",
|
"AetheryteShortcut": "Ul'dah",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Gridania",
|
"AetheryteShortcut": "Gridania",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -33,9 +35,11 @@
|
|||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "UseItem",
|
"InteractionType": "UseItem",
|
||||||
"ItemId": 6001,
|
"ItemId": 6001,
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"ChocoboUnlocked"
|
"StepIf": {
|
||||||
],
|
"Chocobo": "Unlocked"
|
||||||
|
}
|
||||||
|
},
|
||||||
"Comment": "Use Chocobo whistle (if not yet unlocked)"
|
"Comment": "Use Chocobo whistle (if not yet unlocked)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -18,9 +18,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 152,
|
"TerritoryId": 152,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
"AetheryteShortcut": "East Shroud - Hawthorne Hut",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Gridania",
|
"AetheryteShortcut": "Gridania",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Quarrymill",
|
"AetheryteShortcut": "South Shroud - Quarrymill",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
"AetheryteShortcut": "Southern Thanalan - Little Ala Mhigo",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
"TerritoryId": 154,
|
"TerritoryId": 154,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 154,
|
"TerritoryId": 154,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
"TerritoryId": 154,
|
"TerritoryId": 154,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 154,
|
"TerritoryId": 154,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 146,
|
"TerritoryId": 146,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
"AetheryteShortcut": "Southern Thanalan - Forgotten Springs",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -18,9 +18,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
"AetheryteShortcut": "Eastern La Noscea - Costa Del Sol",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -19,9 +19,11 @@
|
|||||||
"TerritoryId": 139,
|
"TerritoryId": 139,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
|
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 139,
|
"TerritoryId": 139,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
|
"AetheryteShortcut": "Upper La Noscea - Camp Bronze Lake",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 154,
|
"TerritoryId": 154,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
"AetheryteShortcut": "North Shroud - Fallgourd Float",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
],
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
},
|
||||||
"Mount": true
|
"Mount": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -18,9 +18,11 @@
|
|||||||
"TerritoryId": 155,
|
"TerritoryId": 155,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
"AetheryteShortcut": "Coerthas Central Highlands - Camp Dragonhead",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 145,
|
"TerritoryId": 145,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
"AetheryteShortcut": "Eastern Thanalan - Camp Drybone",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 138,
|
"TerritoryId": 138,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 138,
|
"TerritoryId": 138,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 138,
|
"TerritoryId": 138,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 138,
|
"TerritoryId": 138,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Western La Noscea - Aleport",
|
"AetheryteShortcut": "Western La Noscea - Aleport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
"AetheryteShortcut": "Mor Dhona",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Northern Thanalan - Camp Bluefog",
|
"AetheryteShortcut": "Northern Thanalan - Camp Bluefog",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -19,9 +19,11 @@
|
|||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -20,9 +20,11 @@
|
|||||||
"TerritoryId": 147,
|
"TerritoryId": 147,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
"AetheryteShortcut": "Northern Thanalan - Ceruleum Processing Plant",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -41,9 +41,11 @@
|
|||||||
"TerritoryId": 212,
|
"TerritoryId": 212,
|
||||||
"InteractionType": "Interact",
|
"InteractionType": "Interact",
|
||||||
"TargetTerritoryId": 212,
|
"TargetTerritoryId": 212,
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"WakingSandsMainArea"
|
"StepIf": {
|
||||||
]
|
"ExtraCondition": "WakingSandsMainArea"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"DataId": 1007533,
|
"DataId": 1007533,
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 132,
|
"TerritoryId": 132,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Gridania",
|
"AetheryteShortcut": "Gridania",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 153,
|
"TerritoryId": 153,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
"AetheryteShortcut": "South Shroud - Camp Tranquil",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 137,
|
"TerritoryId": 137,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
"AetheryteShortcut": "Eastern La Noscea - Wineport",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 156,
|
"TerritoryId": 156,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Mor Dhona",
|
"AetheryteShortcut": "Mor Dhona",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 140,
|
"TerritoryId": 140,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Western Thanalan - Horizon",
|
"AetheryteShortcut": "Western Thanalan - Horizon",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -18,9 +18,11 @@
|
|||||||
"TerritoryId": 135,
|
"TerritoryId": 135,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
"AetheryteShortcut": "Lower La Noscea - Moraby Drydocks",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
"AetheryteShortcut": "Limsa Lominsa",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -16,9 +16,11 @@
|
|||||||
"TerritoryId": 129,
|
"TerritoryId": 129,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Limsa Lominsa",
|
"AetheryteShortcut": "Limsa Lominsa",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -15,9 +15,11 @@
|
|||||||
"TerritoryId": 130,
|
"TerritoryId": 130,
|
||||||
"InteractionType": "AcceptQuest",
|
"InteractionType": "AcceptQuest",
|
||||||
"AetheryteShortcut": "Ul'dah",
|
"AetheryteShortcut": "Ul'dah",
|
||||||
"SkipIf": [
|
"SkipConditions": {
|
||||||
"AetheryteShortcutIfInSameTerritory"
|
"AetheryteShortcutIf": {
|
||||||
]
|
"NotInSameTerritory": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user