Add event quest at level 25
This commit is contained in:
parent
a458605221
commit
999fdcd43c
@ -1,7 +1,5 @@
|
|||||||
using QuestValidator.Common.Models;
|
using QuestValidator.Common.Models;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq.Expressions;
|
|
||||||
using System.Threading;
|
|
||||||
|
|
||||||
namespace QuestValidator.Common.Helpers
|
namespace QuestValidator.Common.Helpers
|
||||||
{
|
{
|
||||||
@ -339,7 +337,8 @@ namespace QuestValidator.Common.Helpers
|
|||||||
{ Quest.ImportantPatient, "641dbfd7f43eda9d810d7137"},
|
{ Quest.ImportantPatient, "641dbfd7f43eda9d810d7137"},
|
||||||
{ Quest.FailedSetup, "64916da7ad4e722c106f2345" },
|
{ Quest.FailedSetup, "64916da7ad4e722c106f2345" },
|
||||||
{ Quest.Hustle, "649567f359eab30d1b7c9585"},
|
{ Quest.Hustle, "649567f359eab30d1b7c9585"},
|
||||||
{ Quest.Tourist, "649570491bb4d158bc4d0168" }
|
{ Quest.Tourist, "649570491bb4d158bc4d0168" },
|
||||||
|
{ Quest.CocktailTasting, "649af47d717cb30e7e4b5e26" }
|
||||||
};
|
};
|
||||||
|
|
||||||
private static readonly Dictionary<string, string> questNames = new Dictionary<string, string>
|
private static readonly Dictionary<string, string> questNames = new Dictionary<string, string>
|
||||||
@ -676,7 +675,8 @@ private static readonly Dictionary<string, string> questNames = new Dictionary<s
|
|||||||
{ "641dbfd7f43eda9d810d7137", "Important Patient-Event" },
|
{ "641dbfd7f43eda9d810d7137", "Important Patient-Event" },
|
||||||
{ "64916da7ad4e722c106f2345", "Failed setup" },
|
{ "64916da7ad4e722c106f2345", "Failed setup" },
|
||||||
{ "649567f359eab30d1b7c9585", "Hustle-Event"},
|
{ "649567f359eab30d1b7c9585", "Hustle-Event"},
|
||||||
{ "649570491bb4d158bc4d0168", "Tourist-Event"}
|
{ "649570491bb4d158bc4d0168", "Tourist-Event"},
|
||||||
|
{ "649af47d717cb30e7e4b5e26", "Cocktail Tasting-Event" }
|
||||||
};
|
};
|
||||||
public static string GetNameById(string id)
|
public static string GetNameById(string id)
|
||||||
{
|
{
|
||||||
|
@ -688,6 +688,8 @@ namespace QuestValidator.Common.Helpers
|
|||||||
.AddPrerequisiteQuest(Quest.RevisionReserve, QuestStatus.Success) },
|
.AddPrerequisiteQuest(Quest.RevisionReserve, QuestStatus.Success) },
|
||||||
{ Quest.Surveillance, GetQuestData(Quest.Surveillance)
|
{ Quest.Surveillance, GetQuestData(Quest.Surveillance)
|
||||||
.AddPrerequisiteQuest(Quest.BroadcastPart2, QuestStatus.Success) },
|
.AddPrerequisiteQuest(Quest.BroadcastPart2, QuestStatus.Success) },
|
||||||
|
{ Quest.CocktailTasting, GetQuestData(Quest.CocktailTasting)
|
||||||
|
.AddPrerequisiteLevel(25) },
|
||||||
{ Quest.NetworkProviderPart1, GetQuestData(Quest.NetworkProviderPart1)
|
{ Quest.NetworkProviderPart1, GetQuestData(Quest.NetworkProviderPart1)
|
||||||
.AddPrerequisiteQuest(Quest.ThePunisherP5, QuestStatus.Success)
|
.AddPrerequisiteQuest(Quest.ThePunisherP5, QuestStatus.Success)
|
||||||
.AddPrerequisiteQuest(Quest.Bullshit, QuestStatus.Success)
|
.AddPrerequisiteQuest(Quest.Bullshit, QuestStatus.Success)
|
||||||
|
@ -334,6 +334,7 @@
|
|||||||
ImportantPatient = 329,
|
ImportantPatient = 329,
|
||||||
FailedSetup = 330,
|
FailedSetup = 330,
|
||||||
Hustle = 331,
|
Hustle = 331,
|
||||||
Tourist = 332
|
Tourist = 332,
|
||||||
|
CocktailTasting = 333
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user