mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
18 lines
416 B
C#
18 lines
416 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public interface IGameValueLimit
|
|||
|
{
|
|||
|
int MaxMoveID { get; }
|
|||
|
int MaxSpeciesID { get; }
|
|||
|
int MaxItemID { get; }
|
|||
|
int MaxAbilityID { get; }
|
|||
|
int MaxBallID { get; }
|
|||
|
int MaxGameID { get; }
|
|||
|
int MinGameID { get; }
|
|||
|
int MaxIV { get; }
|
|||
|
int MaxEV { get; }
|
|||
|
int OTLength { get; }
|
|||
|
int NickLength { get; }
|
|||
|
}
|
|||
|
}
|