mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
Add 7b Starter choice
Closes #3420 Co-Authored-By: GiftedK <99304781+GiftedK@users.noreply.github.com>
This commit is contained in:
parent
556f711728
commit
5cdfe18b8e
1 changed files with 14 additions and 1 deletions
|
@ -71,6 +71,12 @@ namespace PKHeX.Core
|
|||
set => Data[Offset + 0x076] = value;
|
||||
}
|
||||
|
||||
public StarterChoice7b StarterChoice
|
||||
{
|
||||
get => (StarterChoice7b)Data[Offset + 0x0B8];
|
||||
set => Data[Offset + 0x0B8] = (byte)value;
|
||||
}
|
||||
|
||||
public byte StarterGender
|
||||
{
|
||||
get => Data[Offset + 0x0B9];
|
||||
|
@ -82,5 +88,12 @@ namespace PKHeX.Core
|
|||
get => Data[Offset + 0x108];
|
||||
set => Data[Offset + 0x108] = value;
|
||||
}
|
||||
|
||||
public enum StarterChoice7b : byte
|
||||
{
|
||||
None = 0,
|
||||
Pikachu = 1,
|
||||
Eevee = 2,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue