forked from liza/Questionable
Update packaging + schema
This commit is contained in:
parent
ab2c4f505c
commit
a5861b1639
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…
Reference in New Issue
Block a user