Add 7b Starter choice

Closes #3420

Co-Authored-By: GiftedK <99304781+GiftedK@users.noreply.github.com>
This commit is contained in:
Kurt 2022-02-08 18:49:44 -08:00
parent 556f711728
commit 5cdfe18b8e

View file

@ -71,6 +71,12 @@ namespace PKHeX.Core
set => Data[Offset + 0x076] = value; set => Data[Offset + 0x076] = value;
} }
public StarterChoice7b StarterChoice
{
get => (StarterChoice7b)Data[Offset + 0x0B8];
set => Data[Offset + 0x0B8] = (byte)value;
}
public byte StarterGender public byte StarterGender
{ {
get => Data[Offset + 0x0B9]; get => Data[Offset + 0x0B9];
@ -82,5 +88,12 @@ namespace PKHeX.Core
get => Data[Offset + 0x108]; get => Data[Offset + 0x108];
set => Data[Offset + 0x108] = value; set => Data[Offset + 0x108] = value;
} }
public enum StarterChoice7b : byte
{
None = 0,
Pikachu = 1,
Eevee = 2,
}
} }
} }