--- /dev/null
+{
+ "$schema": "https://git.carvel.li/liza/Questionable/raw/branch/master/QuestPaths/quest-v1.json",
+ "Author": "liza",
+ "QuestSequence": [
+ {
+ "Sequence": 0,
+ "Steps": [
+ {
+ "DataId": 1052475,
+ "Position": {
+ "X": -22.354492,
+ "Y": 10.13581,
+ "Z": -241.41296
+ },
+ "TerritoryId": 133,
+ "InteractionType": "AcceptQuest",
+ "AetheryteShortcut": "Gridania",
+ "AethernetShortcut": [
+ "[Gridania] Aetheryte Plaza",
+ "[Gridania] Mih Khetto's Amphitheatre"
+ ],
+ "SkipConditions": {
+ "AetheryteShortcutIf": {
+ "InSameTerritory": true,
+ "InTerritory": [
+ 133
+ ]
+ }
+ }
+ }
+ ]
+ }
+ ]
+}
}));
quests.Add(new UnlockLinkQuestInfo(new UnlockLinkId(506), "Patch 7.2 Fantasia", 1052475));
+ quests.Add(new UnlockLinkQuestInfo(new UnlockLinkId(568), "Patch 7.3 Fantasia", 1052475));
_quests = quests.ToDictionary(x => x.QuestId, x => x);
{
if (unlockLinkId.Value == 506)
return !IsFestivalActive(160, 2);
+ else if (unlockLinkId.Value == 568)
+ return !IsFestivalActive(160, 3);
else
return true;
}
[SuppressMessage("ReSharper", "CollectionNeverUpdated.Local")]
private readonly List<EventQuest> _eventQuests =
[
- new EventQuest("Limited Time Items", [new UnlockLinkId(506)], DateTime.MaxValue),
- new EventQuest("Make It Rain", [new QuestId(5322)], AtDailyReset(new(2025, 6, 11)))
+ new EventQuest("Limited Time Items", [new UnlockLinkId(568)], DateTime.MaxValue),
];
private readonly QuestData _questData;