forked from liza/Questionable
Update packaging + schema
This commit is contained in:
parent
ab2c4f505c
commit
a5861b1639
QuestPaths
.gitignoreAssemblyQuestLoader.cs
Endwalker
AetherCurrents
Elpis
4288_You and the Ailouros.json4313_The Perks of Being a Lost Flower.json4507_Touring Anagnorisis Part 1.json4511_An Expected Guest.json
Garlemald
4216_Best Delivered Cold.json4232_Children Are Our Future.json4498_In Pursuit of Power.json4502_Stranded at the Station.json
Labyrinthos
4320_Gleaners Wish.json4329_Let the Good Times Troll.json4480_Lost Little Troll.json4484_The Lad in Labyrinthos.json
Mare Lamentorum
4240_True Carrot Crimes.json4241_Carrots Its Whats for Dinner.json4253_Alluring Allag.json4516_Name That Way.json
Thavnair
4203_Alchemist or Dancer.json4257_In Agamas Footsteps.json4259_Radiant Patrol.json4489_Steppe Child.json
Ultima Thule
MSQ
A-Thavnair1-Labyrinthos1
4357_The Next Ship to Sail.json4358_Old Sharlayan New to You.json4359_Hitting the Books.json4360_A Seat at the Last Stand.json4361_A Labyrinthine Descent.json4362_Glorified Ratcatcher.json4363_Deeper into the Maze.json4364_The Medial Circuit.json4365_The Full Reports Warts and All.json4366_A Guide of Sorts.json4367_Estate Visitor.json4368_For Thavnair Bound.json4369_On Low Tide.json4370_A Fishermans Friend.json4371_House of Divinities.json4372_The Great Work.json4373_Shadowed Footsteps.json4374_A Boys Errand.json4375_Tipping the Scale.json4376_The Satrap of Radz at Han.json4377_In the Dark of the Tower.json4378_The Jewel of Thavnair.json4379_The Color of Joy.json
B-Garlemald
4380_Sound the Bell, Schools in.json4381_A Capital Idea.json4382_Best of the Best.json4383_A Frosty Reception.json4384_Tracks in the Snow.json4385_How the Mighty Are Fallen.json4386_At the End of the Trail.json4387_A Way Forward.json4388_The Last Bastion.json4389_Personae non Gratae.json4390_His Park Materials.json4391_No Good Deed.json4392_Alea Iacta Est.json4393_Strange Bedfellows.json4394_In from the Cold.json4395_Gateway of the Gods.json4396_A Trip to the Moon.json4397_Sea of Sorrow.json4398_The Martyr.json
C-MareLamentorum
4399_In_Shadows_Wake.json4400_Helping Hands.json4401_A Harey Situation.json4402_A Taste of the Moon.json4403_Styled a Hero.json4404_Alls Vale That Endsvale.json4405_Back to Old Tricks.json4406_Settiing Things Straight.json4407_Heart of the Matter.json4408_Returning Home.json
D-Thavnair2
4409_Skies Aflame.json4410_The Blasphemy Unmasked.json4411_Amidst the Apocalypse.json4412_Beyond the Depths of Despair.json4413_That We Might Live.json4414_When All Hope Seems Lost.json4415_Warm Hearts, Rekindled Hopes.json4416_Simple Pleasures.json4417_Under His Wing.json4418_At Worlds End.json
E-Elpis
4419_Return to the Crystarium.json4420_Hope Upon a Flower.json4421_Petalouda Hunt.json4422_In Search of Hermes.json4423_Ponder Warrant Cherish Welcome.json4424_Lives Apart.json4425_Their Greatest Contribution.json4426_Aether to Aether.json4427_A Sentimental Gift.json4428_Verdict and Execution.json4429_Travelers at the Crossroads.json4430_A Past Not Yet Come to Pass.json4431_Witness to the Spectacle.json
3
QuestPaths/.gitignore
vendored
Normal file
3
QuestPaths/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
/dist
|
||||
/obj
|
||||
/bin
|
25
QuestPaths/AssemblyQuestLoader.cs
Normal file
25
QuestPaths/AssemblyQuestLoader.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.IO.Compression;
|
||||
|
||||
namespace Questionable.QuestPaths;
|
||||
|
||||
public static class AssemblyQuestLoader
|
||||
{
|
||||
public static void LoadQuestsFromEmbeddedResources(Action<string, Stream> loadFunction)
|
||||
{
|
||||
foreach (string resourceName in typeof(AssemblyQuestLoader).Assembly.GetManifestResourceNames())
|
||||
{
|
||||
if (resourceName.EndsWith(".zip"))
|
||||
{
|
||||
using ZipArchive zipArchive =
|
||||
new ZipArchive(typeof(AssemblyQuestLoader).Assembly.GetManifestResourceStream(resourceName)!);
|
||||
foreach (ZipArchiveEntry entry in zipArchive.Entries)
|
||||
{
|
||||
using Stream stream = entry.Open();
|
||||
loadFunction(entry.Name, stream);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"Comment": "This is possibly the least polished quest so far, as the follow steps are awkward (need to move >10 units away to trigger the follow-up)",
|
||||
"QuestSequence": [
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"TerritoryBlacklist": [
|
||||
1010
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"TerritoryBlacklist": [
|
||||
992
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"$schema": "https://carvel.li/questionable/quest-1.0",
|
||||
"Author": "liza",
|
||||
"QuestSequence": [
|
||||
{
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user