From 36ed78bceab9d3df8cf92a82463f7944cb7aecae Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sat, 20 Jul 2024 14:34:54 +0200 Subject: [PATCH] Tweaks to non-implemented/RNG daily quests --- QuestPathGenerator/QuestSourceGenerator.cs | 6 ++- ...89_Where There's Wool, There's a Way.json} | 1 + .../Dailies/3691_Sharing Is Caring.json | 16 +++++++ .../Pixies/Dailies/3691_Sharing Is Caring.md | 1 + .../3692_The Aesthetician of Il Mheg.md | 1 + .../Dailies/3698_Porxine Perfection.json | 44 +++++++++++++++++++ .../Pixies/Dailies/3699_The Big Sleep.json | 44 +++++++++++++++++++ ...706_Bring Your Water to the Slaughter.json | 44 +++++++++++++++++++ .../Pixies/Dailies/3710_What the Phooka.json | 44 +++++++++++++++++++ .../Dailies/3711_No Grown-ups Allowed.json | 44 +++++++++++++++++++ .../Pixies/Dailies/3712_Pride-and-Seek.json | 44 +++++++++++++++++++ .../Dailies/3713_A Porxie Before Swine.json | 44 +++++++++++++++++++ .../Pixies/Dailies/3714_Snot My Problem.json | 44 +++++++++++++++++++ .../Tribal/Pixies/Dailies/3715_Aim High.json | 44 +++++++++++++++++++ .../Pixies/Dailies/3716_The Chaser.json | 44 +++++++++++++++++++ ...4551_Ridin' Flyers for Flyin' Riders.json} | 1 + .../Dailies/4560_Bloomin' Ocean.json | 44 +++++++++++++++++++ .../4561_Fresh Eats and Ripe Sweets.json | 44 +++++++++++++++++++ .../Dailies/4572_An Explosive Brew.json | 44 +++++++++++++++++++ .../Dailies/4573_Gathering Moss.json | 44 +++++++++++++++++++ .../Dailies/4574_Blood from a Stonemason.json | 44 +++++++++++++++++++ .../Dailies/4575_A Radiant Delivery.json | 44 +++++++++++++++++++ .../Dailies/4576_Like a Crate to Water.json | 44 +++++++++++++++++++ .../Dailies/4577_Manusyan for a Day.json | 44 +++++++++++++++++++ .../Dailies/4578_Steep the Legs.json | 44 +++++++++++++++++++ Questionable/Controller/QuestRegistry.cs | 2 +- Questionable/Questionable.csproj | 2 +- 27 files changed, 863 insertions(+), 3 deletions(-) rename QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/{~template.json => 3689_Where There's Wool, There's a Way.json} (97%) create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3698_Porxine Perfection.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3699_The Big Sleep.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3706_Bring Your Water to the Slaughter.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3710_What the Phooka.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3711_No Grown-ups Allowed.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3712_Pride-and-Seek.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3713_A Porxie Before Swine.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3714_Snot My Problem.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3715_Aim High.json create mode 100644 QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3716_The Chaser.json rename QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/{~template.json => 4551_Ridin' Flyers for Flyin' Riders.json} (97%) create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4560_Bloomin' Ocean.json create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4561_Fresh Eats and Ripe Sweets.json create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4572_An Explosive Brew.json create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4573_Gathering Moss.json create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4574_Blood from a Stonemason.json create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4575_A Radiant Delivery.json create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4576_Like a Crate to Water.json create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4577_Manusyan for a Day.json create mode 100644 QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4578_Steep the Legs.json diff --git a/QuestPathGenerator/QuestSourceGenerator.cs b/QuestPathGenerator/QuestSourceGenerator.cs index 6190603f..5ba7b363 100644 --- a/QuestPathGenerator/QuestSourceGenerator.cs +++ b/QuestPathGenerator/QuestSourceGenerator.cs @@ -80,7 +80,11 @@ public class QuestSourceGenerator : ISourceGenerator var quest = questNode.Deserialize()!; if (quest.Disabled) - continue; + { + quest.Author = []; + quest.QuestSequence = []; + quest.TerritoryBlacklist = []; + } quests.Add((id, quest)); } diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/~template.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3689_Where There's Wool, There's a Way.json similarity index 97% rename from QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/~template.json rename to QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3689_Where There's Wool, There's a Way.json index 7b587be6..b068dc26 100644 --- a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/~template.json +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3689_Where There's Wool, There's a Way.json @@ -1,6 +1,7 @@ { "$schema": "https://carvel.li/questionable/quest-1.0", "Author": "liza", + "Disabled": true, "QuestSequence": [ { "Sequence": 0, diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3691_Sharing Is Caring.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3691_Sharing Is Caring.json index 6ba49247..0d300612 100644 --- a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3691_Sharing Is Caring.json +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3691_Sharing Is Caring.json @@ -47,6 +47,22 @@ "NotTargetable" ] }, + { + "DataId": 1032141, + "Position": { + "X": -473.47223, + "Y": 45.390854, + "Z": -311.6656 + }, + "TerritoryId": 816, + "InteractionType": "Say", + "ChatMessage": { + "Key": "TEXT_BANPIX103_03691_SAYTODO_000_030" + }, + "SkipIf": [ + "NotTargetable" + ] + }, { "DataId": 1032142, "Position": { diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3691_Sharing Is Caring.md b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3691_Sharing Is Caring.md index 26720aaa..0f2ea2b5 100644 --- a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3691_Sharing Is Caring.md +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3691_Sharing Is Caring.md @@ -4,6 +4,7 @@ QuestWork: ``` 0 0 0 x 0 0 2 → 1032142 + 3 → 1032141 unknown ? → 1032140 diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3692_The Aesthetician of Il Mheg.md b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3692_The Aesthetician of Il Mheg.md index 78a9c16d..b3776681 100644 --- a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3692_The Aesthetician of Il Mheg.md +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3692_The Aesthetician of Il Mheg.md @@ -3,5 +3,6 @@ QuestWork: ``` 0 x 0 0 0 0 + 4 → 2010861, 2010863 5 → 2010861, 2010862 ``` diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3698_Porxine Perfection.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3698_Porxine Perfection.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3698_Porxine Perfection.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3699_The Big Sleep.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3699_The Big Sleep.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3699_The Big Sleep.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3706_Bring Your Water to the Slaughter.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3706_Bring Your Water to the Slaughter.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3706_Bring Your Water to the Slaughter.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3710_What the Phooka.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3710_What the Phooka.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3710_What the Phooka.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3711_No Grown-ups Allowed.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3711_No Grown-ups Allowed.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3711_No Grown-ups Allowed.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3712_Pride-and-Seek.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3712_Pride-and-Seek.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3712_Pride-and-Seek.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3713_A Porxie Before Swine.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3713_A Porxie Before Swine.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3713_A Porxie Before Swine.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3714_Snot My Problem.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3714_Snot My Problem.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3714_Snot My Problem.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3715_Aim High.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3715_Aim High.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3715_Aim High.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3716_The Chaser.json b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3716_The Chaser.json new file mode 100644 index 00000000..b068dc26 --- /dev/null +++ b/QuestPaths/5.x - Shadowbringers/Tribal/Pixies/Dailies/3716_The Chaser.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1031809, + "Position": { + "X": -454.3069, + "Y": 71.43217, + "Z": 575.1278 + }, + "TerritoryId": 816, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/~template.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4551_Ridin' Flyers for Flyin' Riders.json similarity index 97% rename from QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/~template.json rename to QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4551_Ridin' Flyers for Flyin' Riders.json index f7be2e84..2fcc3eba 100644 --- a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/~template.json +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4551_Ridin' Flyers for Flyin' Riders.json @@ -1,6 +1,7 @@ { "$schema": "https://carvel.li/questionable/quest-1.0", "Author": "liza", + "Disabled": true, "QuestSequence": [ { "Sequence": 0, diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4560_Bloomin' Ocean.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4560_Bloomin' Ocean.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4560_Bloomin' Ocean.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4561_Fresh Eats and Ripe Sweets.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4561_Fresh Eats and Ripe Sweets.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4561_Fresh Eats and Ripe Sweets.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4572_An Explosive Brew.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4572_An Explosive Brew.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4572_An Explosive Brew.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4573_Gathering Moss.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4573_Gathering Moss.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4573_Gathering Moss.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4574_Blood from a Stonemason.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4574_Blood from a Stonemason.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4574_Blood from a Stonemason.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4575_A Radiant Delivery.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4575_A Radiant Delivery.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4575_A Radiant Delivery.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4576_Like a Crate to Water.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4576_Like a Crate to Water.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4576_Like a Crate to Water.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4577_Manusyan for a Day.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4577_Manusyan for a Day.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4577_Manusyan for a Day.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4578_Steep the Legs.json b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4578_Steep the Legs.json new file mode 100644 index 00000000..2fcc3eba --- /dev/null +++ b/QuestPaths/6.x - Endwalker/Tribal/Arkasodara/Dailies/4578_Steep the Legs.json @@ -0,0 +1,44 @@ +{ + "$schema": "https://carvel.li/questionable/quest-1.0", + "Author": "liza", + "Disabled": true, + "QuestSequence": [ + { + "Sequence": 0, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "AcceptQuest" + } + ] + }, + { + "Sequence": 1, + "Steps": [ + + ] + }, + { + "Sequence": 255, + "Steps": [ + { + "DataId": 1042301, + "Position": { + "X": -66.02582, + "Y": 39.994705, + "Z": 321.06494 + }, + "TerritoryId": 957, + "InteractionType": "CompleteQuest", + "Fly": true + } + ] + } + ] +} diff --git a/Questionable/Controller/QuestRegistry.cs b/Questionable/Controller/QuestRegistry.cs index c8e67986..a7b83b7f 100644 --- a/Questionable/Controller/QuestRegistry.cs +++ b/Questionable/Controller/QuestRegistry.cs @@ -40,7 +40,7 @@ internal sealed class QuestRegistry } public IEnumerable AllQuests => _quests.Values; - public int Count => _quests.Count; + public int Count => _quests.Count(x => !x.Value.Root.Disabled); public int ValidationIssueCount => _questValidator.IssueCount; public int ValidationErrorCount => _questValidator.ErrorCount; diff --git a/Questionable/Questionable.csproj b/Questionable/Questionable.csproj index 47e2386e..61be9589 100644 --- a/Questionable/Questionable.csproj +++ b/Questionable/Questionable.csproj @@ -1,6 +1,6 @@  - 1.12 + 1.13 dist $(SolutionDir)=X:\