mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-08-20 04:14:45 -05:00
@@ -17,7 +17,7 @@ private static bool isValidEvolution(PKM pkm, LegalInfo info)
|
||||
int species = pkm.Species;
|
||||
if (info.EncounterMatch.Species == species)
|
||||
return true;
|
||||
if (info.EncounterMatch.EggEncounter && species == 350)
|
||||
if (info.EncounterMatch.EggEncounter && species == 350 && pkm.Format >= 5) // Prism Scale
|
||||
return true;
|
||||
if (!Legal.getEvolutionValid(pkm, info.EncounterMatch.Species))
|
||||
return false;
|
||||
|
||||
@@ -505,7 +505,7 @@ public bool Valid(PKM pkm, int lvl, bool skipChecks)
|
||||
// Special Levelup Cases
|
||||
case 16:
|
||||
if (pkm.CNT_Beauty < Argument)
|
||||
return false;
|
||||
return skipChecks;
|
||||
goto default;
|
||||
case 23: // Gender = Male
|
||||
if (pkm.Gender != 0)
|
||||
|
||||
Reference in New Issue
Block a user