diff --git a/PKHeX.Core/Saves/Substructures/Gen8/TrainerCard8.cs b/PKHeX.Core/Saves/Substructures/Gen8/TrainerCard8.cs index 0d8fe07a2..df350e109 100644 --- a/PKHeX.Core/Saves/Substructures/Gen8/TrainerCard8.cs +++ b/PKHeX.Core/Saves/Substructures/Gen8/TrainerCard8.cs @@ -97,6 +97,12 @@ namespace PKHeX.Core get => Data[Offset + 0x1B4] == 1; 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 {