mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 05:27:14 -05: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
|
|
@ -71,6 +71,12 @@ public byte TrainerClassIndex
|
|||
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 @@ public byte StarterGender
|
|||
get => Data[Offset + 0x108];
|
||||
set => Data[Offset + 0x108] = value;
|
||||
}
|
||||
|
||||
public enum StarterChoice7b : byte
|
||||
{
|
||||
None = 0,
|
||||
Pikachu = 1,
|
||||
Eevee = 2,
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user