Add transfer2 future evos for legality reuse

https://projectpokemon.org/home/forums/topic/43827-gsc-mismagius-treated-as-illegal/
This commit is contained in:
Kurt 2018-02-11 20:48:36 -08:00
parent f1cd1d8b50
commit 28180687a5

View file

@ -62,6 +62,11 @@ namespace PKHeX.Core
// todo
};
internal static readonly bool[] ReleasedHeldItems_2 = Enumerable.Range(0, MaxItemID_2+1).Select(i => HeldItems_GSC.Contains((ushort)i) && !UnreleasedItems_2.Contains(i)).ToArray();
internal static readonly HashSet<int> TransferSpeciesDefaultAbility_2 = new HashSet<int> { 92, 93, 94, 109, 110, 151, 200, 201, 251 };
internal static readonly HashSet<int> TransferSpeciesDefaultAbility_2 = new HashSet<int>
{
92, 93, 94, 109, 110, 151, 200, 201, 251,
// Future Evolutions
429, // Misdreavus -> Mismagius
};
}
}