PKHeX/PKHeX.Core/Legality/Structures/SimpleTrainerInfo.cs
Kurt 08e293dadc Add SimpleTrainerInfo constructor
zeroes out console region data if not present in game
2019-11-26 16:55:28 -08:00

25 lines
888 B
C#

namespace PKHeX.Core
{
public sealed 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; }
public int Generation { get; set; } = PKX.Generation;
public SimpleTrainerInfo(GameVersion game = GameVersion.SW)
{
Game = (int) game;
if (GameVersion.GG.Contains(game) || game.GetGeneration() >= 8)
ConsoleRegion = SubRegion = Country = 0;
}
}
}