mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
1ea3976805
Nests in their own file Encounter types in their own files
14 lines
No EOL
354 B
C#
14 lines
No EOL
354 B
C#
namespace PKHeX.Core
|
|
{
|
|
public sealed 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;
|
|
}
|
|
}
|
|
} |