Add more HA banlist

definitely more
This commit is contained in:
Kurt
2020-04-24 08:24:12 -07:00
parent 8a0295e4e9
commit 0edbef8ba4
3 changed files with 12 additions and 0 deletions

View File

@@ -463,6 +463,8 @@ private static bool IsEvolvedFormChange(PKM pkm, int expected)
return pkm.AltForm != orig; // bad compare?
if ((int) Species.Darmanitan == pkm.Species)
return pkm.AltForm == (expected == 1 ? 2 : 0);
if ((int)Species.MrMime == pkm.Species)
return pkm.AltForm == (expected == 0 ? 1 : 0);
if ((int) Species.Toxtricity == pkm.Species)
return pkm.AltForm == EvolutionMethod.GetAmpLowKeyResult(pkm.Nature);
if ((int) Species.Alcremie == pkm.Species)

View File

@@ -292,6 +292,11 @@ public static partial class Legal
710 + (2 << 11), //Pumpkaboo-Large
711 + (2 << 11), //Gourgeist-Large
//Super Size can be obtained as a Pumpkaboo from event distributions
// Same abilities (1/2/H), not available as H
(int)Species.Honedge,
(int)Species.Doublade,
(int)Species.Aegislash,
};
#region Ball Table
internal static readonly HashSet<int> Inherit_Sport = new HashSet<int>

View File

@@ -562,6 +562,11 @@ public static partial class Legal
711 + (1 << 11), //Gourgeist-Small
710 + (2 << 11), //Pumpkaboo-Large
711 + (2 << 11), //Gourgeist-Large
// Same abilities (1/2/H), not available as H
(int)Species.Honedge,
(int)Species.Doublade,
(int)Species.Aegislash,
};
internal static readonly HashSet<int> Ban_NoHidden7Apricorn = new HashSet<int>