Skip to content

Commit

Permalink
Level 1 traded Milotic
Browse files Browse the repository at this point in the history
Thanks Gastly!
  • Loading branch information
kwsch committed Apr 23, 2016
1 parent 9ccdb94 commit 9b03948
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Legality/Checks.cs
Expand Up @@ -331,7 +331,7 @@ private LegalityCheck verifyLevel()
int lvl = pk6.CurrentLevel;
if (lvl < pk6.Met_Level)
return new LegalityCheck(Severity.Invalid, "Current level is below met level.");
if ((pk6.WasEgg || EncounterMatch == null) && !Legal.getEvolutionValid(pk6))
if ((pk6.WasEgg || EncounterMatch == null) && !Legal.getEvolutionValid(pk6) && pk6.Species != 350)
return new LegalityCheck(Severity.Invalid, "Level is below evolution requirements.");
if (lvl > pk6.Met_Level && lvl > 1 && lvl != 100 && pk6.EXP == PKX.getEXP(pk6.Stat_Level, pk6.Species))
return new LegalityCheck(Severity.Fishy, "Current experience matches level threshold.");
Expand Down Expand Up @@ -594,6 +594,8 @@ private LegalityCheck verifyHandlerMemories()
return new LegalityCheck(Severity.Invalid, "Untraded -- requires a trade evolution.");
if (pk6.CNT_Beauty < 170) // Beauty Contest Stat Requirement
return new LegalityCheck(Severity.Invalid, "Untraded -- Beauty is not high enough for Levelup Evolution.");
if (pk6.CurrentLevel == 1)
return new LegalityCheck(Severity.Invalid, "Untraded -- Beauty is high enough but still Level 1.");
}
}
else // Is Traded
Expand Down

0 comments on commit 9b03948

Please sign in to comment.