mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-13 04:58:50 +00:00
19 lines
662 B
C#
19 lines
662 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public class SimpleTrainerInfo : ITrainerInfo
|
|||
|
{
|
|||
|
public string OT { get; set; } = "PKHeX";
|
|||
|
public ushort TID { get; set; } = 12345;
|
|||
|
public ushort SID { get; set; } = 54321;
|
|||
|
public int Gender { get; set; } = 0;
|
|||
|
public int Language { get; set; } = (int)LanguageID.English;
|
|||
|
|
|||
|
public int ConsoleRegion { get; set; } = 1; // North America
|
|||
|
public int SubRegion { get; set; } = 7; // California
|
|||
|
public int Country { get; set; } = 49; // USA
|
|||
|
|
|||
|
public int Game { get; set; } = (int)GameVersion.UM;
|
|||
|
public int Generation { get; set; } = PKX.Generation;
|
|||
|
}
|
|||
|
}
|