mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
cb5e1239ae
Extract game value limits Rearrange GameVersion util logic extensions add better gameversion fetch for generator (equivalent to pkmeditor)
17 lines
416 B
C#
17 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; }
|
|
}
|
|
}
|