mirror of
https://github.com/kwsch/PKHeX
synced 2025-02-17 05:48:44 +00:00
parent
8f833d8171
commit
f5a91182b8
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ namespace PKHeX.Core
|
|||
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 @@ namespace PKHeX.Core
|
|||
// 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…
Add table
Reference in a new issue