2020-06-19 23:51:15 +00:00
|
|
|
|
using static PKHeX.Core.Species;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2020-05-16 22:15:41 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IDynamaxLevel
|
|
|
|
|
{
|
|
|
|
|
byte DynamaxLevel { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static class DynamaxLevelExtensions
|
|
|
|
|
{
|
|
|
|
|
public static bool CanHaveDynamaxLevel(this IDynamaxLevel _, PKM pkm)
|
|
|
|
|
{
|
|
|
|
|
if (pkm.IsEgg)
|
|
|
|
|
return false;
|
2020-09-03 21:28:51 +00:00
|
|
|
|
return CanHaveDynamaxLevel(pkm.Species);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static bool CanHaveDynamaxLevel(int species)
|
|
|
|
|
{
|
2021-01-05 01:31:43 +00:00
|
|
|
|
return species is not ((int)Zacian or (int)Zamazenta or (int)Eternatus);
|
2020-05-16 22:15:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|