Jump to content

Need help with this error


Gallant Knight

Recommended Posts

3 hours ago, Gallant Knight said:

So I've just updated PKHeX recently. And while I was editing my save I notice something strange. My Zygarde, who is still legit according to previous versions of PKHeX (and myself, since I caught it myself), is now illegal. Can I fix it? And uhh, I can't compile PKHeX on my own, so... 
Thank you.

Error.zip


@Kaphotics unless I missed something, I think this is a bug.

Zygarde AB 10% can be obtained at lv 63 at Route 16 as an in-game gift.
It can be merged with the cells from Zygarde to become Power Construct, while maintaining it's original stats.

Link to comment
Share on other sites

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..

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...