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:
Kurt
2020-02-14 14:52:05 -08:00
parent 9efaae0df6
commit b9e3ddf612

View File

@@ -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)