mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-22 13:34:54 -05:00
empty movesets, empty tmhm
bool IsInvalid(int x)
{
int[] banned = {918, 933, 959, 960, 961,962,963,964,965};
if (banned.Contains(x))
return true;
var index = baseForms[x];
if ((x > 151 && x < 808))
return true;
if ((index > 151 && index < 808))
return true;
return false;
}
80 KiB
80 KiB