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:
CanoeHope 2020-10-27 21:06:49 -04:00 committed by GitHub
parent cb545781b0
commit 37053fb599
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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];