mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-20 12:48:30 -05:00
parent
8f833d8171
commit
f5a91182b8
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user