PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic8.cs
Kurt 4b3d85d5e6 Add multi-location strong encounter handling
#2484
OH BOY REUSED INDEXES
smart to save space, but a small pain for legality

feels pretty bad breaking up abstractions for every minor difference in
verification...
2019-11-21 21:44:41 -08:00

14 lines
No EOL
347 B
C#

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;
}
}
}