Current checking code (see last if check):
internal static bool IsFormChangeable(PKM pkm, int species, int form)
{
if (FormChange.Contains(species))
return true;
if (IsEvolvedFormChange(pkm))
return true;
if (species == 718 && pkm.InhabitedGeneration(7) && form != 1)
return true;
return false;
}
Is Zygarde forme 0 (50% AB) still not convertible to PC? And is PC->AB not possible? Can update the check with more accurate restrictions..