PKHeX/PKHeX.Core/Legality/Structures/SimpleTrainerInfo.cs
Kurt 71faaee31c Refactor savefile tid/sid to int
can now use TrainerID editor control on a savefile... soon?
2018-04-28 11:06:58 -07:00

18 lines
656 B
C#

namespace PKHeX.Core
{
public class SimpleTrainerInfo : ITrainerInfo
{
public string OT { get; set; } = "PKHeX";
public int TID { get; set; } = 12345;
public int 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;
}
}