mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-10 16:46:00 -05:00
Disallow regular slowpoke
Closes #2708 Can't be moved into the game (no sprites yet). To be removed or handled a better whenever DLC comes out.
This commit is contained in:
@@ -109,6 +109,10 @@ public void VerifyTransferLegalityG8(LegalityAnalysis data)
|
||||
{
|
||||
data.AddLine(GetInvalid(LTransferBad));
|
||||
}
|
||||
else if (pkm.AltForm == 0 && (species == (int)Species.Slowpoke || species == (int)Species.Slowbro))
|
||||
{
|
||||
data.AddLine(GetInvalid(LTransferBad)); // can't get regular slowpoke/slowbro yet
|
||||
}
|
||||
else if (data.Info.Generation < 8 && pkm.Format >= 8)
|
||||
{
|
||||
if (!pkm.GG && pkm is IScaledSize s)
|
||||
|
||||
Reference in New Issue
Block a user