mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
Add CrownDex complete to Trainer Card (#3058)
With this, all Dex markers can be displayed on your League Card as long as your save is from update 1.3.0. Expansion Pass DLC is not required.
This commit is contained in:
parent
cb545781b0
commit
37053fb599
1 changed files with 6 additions and 0 deletions
|
@ -98,6 +98,12 @@ namespace PKHeX.Core
|
|||
set => Data[Offset + 0x1B4] = (byte)(value ? 1 : 0);
|
||||
}
|
||||
|
||||
public bool CrownDexComplete
|
||||
{
|
||||
get => Data[Offset + 0x1B5] == 1;
|
||||
set => Data[Offset + 0x1B5] = (byte)(value ? 1 : 0);
|
||||
}
|
||||
|
||||
public int Gender
|
||||
{
|
||||
get => Data[0x38];
|
||||
|
|
Loading…
Reference in a new issue