Add evo data for mimejr-0 => mrmime-0 (no gen8)

This commit is contained in:
Kurt 2020-04-26 12:00:45 -07:00
parent ca48b4e617
commit a55b4da05c
3 changed files with 2 additions and 0 deletions

View file

@ -171,6 +171,7 @@ namespace PKHeX.Core
BanEvo((int)Species.Persian, 0, pkm => pkm is IGigantamax g && g.CanGigantamax);
BanEvo((int)Species.Weezing, 0, pkm => pkm.Gen8);
BanEvo((int)Species.MrMime, 0, pkm => pkm.Gen8);
foreach (var s in GetEvolutions((int)Species.Eevee, 0)) // Eeveelutions
BanEvo(s, 0, pkm => pkm is IGigantamax g && g.CanGigantamax);

View file

@ -230,6 +230,7 @@ namespace PKHeX.Core
internal static readonly HashSet<int> GalarVariantFormEvolutions = new HashSet<int>
{
(int)Species.MrMime,
(int)Species.Weezing,
};