mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-28 12:34:31 -05:00
Add more HA banlist
definitely more
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user