Add Gender to Gen 8 Trainer Card (#2694)

This commit is contained in:
CanoeHope
2020-02-10 15:02:52 -05:00
committed by GitHub
parent cb5d8186fd
commit acb9cc2a9d

View File

@@ -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);