diff --git a/PKHeX.Core/Saves/Substructures/Gen8/TrainerCard8.cs b/PKHeX.Core/Saves/Substructures/Gen8/TrainerCard8.cs index 88c289524..d78ed43fe 100644 --- a/PKHeX.Core/Saves/Substructures/Gen8/TrainerCard8.cs +++ b/PKHeX.Core/Saves/Substructures/Gen8/TrainerCard8.cs @@ -92,6 +92,12 @@ public bool PokeDexComplete set => Data[Offset + 0x30] = (byte)(value ? 1 : 0); } + public int Gender + { + get => Data[0x38]; + set => Data[0x38] = (byte)value; + } + public string Number { get => Encoding.ASCII.GetString(Data, 0x39, 3);