PKHeX/PKHeX.Core/PKM/Interfaces/IGameValueLimit.cs
2022-03-06 12:06:50 -08:00

20 lines
533 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Metadata indicating the maximums (and minimums) a type of value can be.
/// </summary>
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; }
}
}