mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Add transfer2 future evos for legality reuse
https://projectpokemon.org/home/forums/topic/43827-gsc-mismagius-treated-as-illegal/
This commit is contained in:
parent
f1cd1d8b50
commit
28180687a5
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue