mirror of
https://github.com/kwsch/pkNX.git
synced 2026-04-21 00:57:53 -05:00
* Update legality from PKHeX * Move to folder * Remove namespace wrapping Co-authored-by: Kurt <kwsch@users.noreply.github.com>
12 lines
274 B
C#
12 lines
274 B
C#
using static pkNX.Structures.Species;
|
|
|
|
namespace pkNX.Structures;
|
|
|
|
public static partial class Legal
|
|
{
|
|
public const int MaxSpeciesID_1 = (int)Mew;
|
|
public const int MaxMoveID_1 = 165;
|
|
public const int MaxItemID_1 = 255;
|
|
public const int MaxAbilityID_1 = 0;
|
|
}
|