PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic8.cs

14 lines
347 B
C#
Raw Normal View History

namespace PKHeX.Core
{
public class EncounterStatic8 : EncounterStatic
{
protected override bool IsMatchLevel(PKM pkm, int lvl)
{
if (lvl == Level)
return true;
if (EncounterArea8.IsWildArea8(Location))
return lvl == 60;
return false;
}
}
}