Add quest names

This commit is contained in:
Chomp 2023-07-29 08:23:38 +01:00
parent 89d5e37801
commit 438d0c4747
2 changed files with 10 additions and 3 deletions

View File

@ -321,7 +321,6 @@ namespace QuestValidator.Common.Helpers
{ Quest.BestJobInTheWorld, "63a9ae24009ffc6a551631a5" }, { Quest.BestJobInTheWorld, "63a9ae24009ffc6a551631a5" },
{ Quest.BroadcastPart4, "6391372c8ba6894d155e77d7" }, { Quest.BroadcastPart4, "6391372c8ba6894d155e77d7" },
{ Quest.RoadClosed, "639282134ed9512be67647ed"}, { Quest.RoadClosed, "639282134ed9512be67647ed"},
{ Quest.MakeAmends, "6391d9144b15ca31f76bc323" },
{ Quest.InformationSource, "63966faeea19ac7ed845db2c" }, { Quest.InformationSource, "63966faeea19ac7ed845db2c" },
{ Quest.MissingInformant, "63966fbeea19ac7ed845db2e" }, { Quest.MissingInformant, "63966fbeea19ac7ed845db2e" },
{ Quest.Snatch, "63966fccac6f8f3c677b9d89" }, { Quest.Snatch, "63966fccac6f8f3c677b9d89" },
@ -342,6 +341,9 @@ namespace QuestValidator.Common.Helpers
{ Quest.TerraGroupTrialP1, "64b90786bbf5bf2b460ad982"}, { Quest.TerraGroupTrialP1, "64b90786bbf5bf2b460ad982"},
{ Quest.TerraGroupTrialP2, "64b90792f43eebce7c01e7af"}, { Quest.TerraGroupTrialP2, "64b90792f43eebce7c01e7af"},
{ Quest.TerraGroupTrialP3, "64b907978d327e5bf9085bd9"}, { Quest.TerraGroupTrialP3, "64b907978d327e5bf9085bd9"},
{ Quest.MakeAmendsP1, "6391d90f4ed9512be67647df"},
{ Quest.MakeAmendsP2, "6391d912f8e5dd32bf4e3ab2"},
{ Quest.MakeAmendsP2Copy, "6391d9144b15ca31f76bc323"},
}; };
private static readonly Dictionary<string, string> questNames = new Dictionary<string, string> private static readonly Dictionary<string, string> questNames = new Dictionary<string, string>
@ -647,6 +649,7 @@ namespace QuestValidator.Common.Helpers
{ "625d70031ed3bb5bcc5bd9e5", "Key to the Tower"}, { "625d70031ed3bb5bcc5bd9e5", "Key to the Tower"},
{ "625d7005a4eb80027c4f2e09", "Knock - Knock"}, { "625d7005a4eb80027c4f2e09", "Knock - Knock"},
{ "625d700cc48e6c62a440fab5", "Getting Acquainted"}, { "625d700cc48e6c62a440fab5", "Getting Acquainted"},
{ "6391d90f4ed9512be67647df", "Make Amends P1"},
{ "626148251ed3bb5bcc5bd9ed", "Make Amends - Buyout"}, { "626148251ed3bb5bcc5bd9ed", "Make Amends - Buyout"},
{ "6261482fa4eb80027c4f2e11", "Make Amends - Equipment"}, { "6261482fa4eb80027c4f2e11", "Make Amends - Equipment"},
{ "626148334149f1149b5b12ca", "Make Amends - Security"}, { "626148334149f1149b5b12ca", "Make Amends - Security"},
@ -662,7 +665,8 @@ namespace QuestValidator.Common.Helpers
{ "63a9ae24009ffc6a551631a5", "Best Job in the World" }, { "63a9ae24009ffc6a551631a5", "Best Job in the World" },
{ "6391372c8ba6894d155e77d7", "Broadcast - Part 4"}, { "6391372c8ba6894d155e77d7", "Broadcast - Part 4"},
{ "639282134ed9512be67647ed", "Road Closed" }, { "639282134ed9512be67647ed", "Road Closed" },
{ "6391d9144b15ca31f76bc323", "Make Amends"}, { "6391d912f8e5dd32bf4e3ab2", "Make Amends p2"},
{ "6391d9144b15ca31f76bc323", "Make Amends p2 copy"},
{ "63966faeea19ac7ed845db2c", "Information Source"}, { "63966faeea19ac7ed845db2c", "Information Source"},
{ "63966fbeea19ac7ed845db2e", "Missing Informant"}, { "63966fbeea19ac7ed845db2e", "Missing Informant"},
{ "63966fccac6f8f3c677b9d89", "Snatch"}, { "63966fccac6f8f3c677b9d89", "Snatch"},

View File

@ -338,6 +338,9 @@
CocktailTasting = 333, CocktailTasting = 333,
TerraGroupTrialP1 = 334, TerraGroupTrialP1 = 334,
TerraGroupTrialP2 = 335, TerraGroupTrialP2 = 335,
TerraGroupTrialP3 = 336 TerraGroupTrialP3 = 336,
MakeAmendsP1 = 337,
MakeAmendsP2 = 338,
MakeAmendsP2Copy = 339
} }
} }