Added MutagenLevelBoost and MutagenLevelBoostBred settings

This commit is contained in:
Brett Hewitson 2021-12-09 11:35:05 +10:00
parent 942db9bb53
commit 7f6fec6aca
11 changed files with 269 additions and 47 deletions

View file

@ -322,6 +322,16 @@ namespace ServerManagerTool.Lib
return new float[] { 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f };
}
internal static IEnumerable<int> GetPerLevelMutagenLevelBoost_DinoWild()
{
return new int[] { 5, 5, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0 };
}
internal static IEnumerable<int> GetPerLevelMutagenLevelBoost_DinoTamed()
{
return new int[] { 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0 };
}
internal static bool[] GetStatMultiplierInclusions_DinoWildPerLevel()
{
return new bool[] { true, true, false, true, true, false, true, true, true, true, false, true };
@ -351,6 +361,16 @@ namespace ServerManagerTool.Lib
{
return new bool[] { true, true, false, true, true, true, true, true, true, true, true, true };
}
internal static bool[] GetMutagenLevelBoostInclusions_DinoWild()
{
return new bool[] { true, true, true, true, true, true, true, true, true, true, true, true };
}
internal static bool[] GetMutagenLevelBoostInclusions_DinoTamed()
{
return new bool[] { true, true, true, true, true, true, true, true, true, true, true, true };
}
#endregion
#region Levels