mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-26 22:10:21 +00:00
Add evo data for mimejr-0 => mrmime-0 (no gen8)
This commit is contained in:
parent
ca48b4e617
commit
a55b4da05c
3 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
|
|
|
@ -230,6 +230,7 @@ namespace PKHeX.Core
|
|||
|
||||
internal static readonly HashSet<int> GalarVariantFormEvolutions = new HashSet<int>
|
||||
{
|
||||
(int)Species.MrMime,
|
||||
(int)Species.Weezing,
|
||||
};
|
||||
|
||||
|
|
Binary file not shown.
Loading…
Reference in a new issue