Set 3 flawless IVs if randomizing alpha IVs

Closes #3428
This commit is contained in:
Kurt 2022-02-09 19:26:18 -08:00
parent d17639f956
commit 6da235f0e8

View file

@ -981,6 +981,8 @@ namespace PKHeX.Core
}
if (VC)
return Species is (int)Core.Species.Mew or (int)Core.Species.Celebi ? 5 : 3;
if (this is IAlpha {IsAlpha: true})
return 3;
return 0;
}