mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-09 16:16:00 -05:00
Add Gender to Gen 8 Trainer Card (#2694)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user