mirror of
https://github.com/tribufu/ServerManagers
synced 2026-06-01 09:42:39 +00:00
Added MutagenLevelBoost and MutagenLevelBoostBred settings
This commit is contained in:
parent
942db9bb53
commit
7f6fec6aca
11 changed files with 269 additions and 47 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue