PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8ND.cs
Kurt 9b178fefe2 Xmldoc, minor tweaks
Move form-info logic from FormConverter to AltFormInfo; now FormConverter is entirely form=>string[]
Add a bunch of xmldoc
Make pogo no-end-date cmp agaisnt UTCnow rather than local now.
2020-11-27 11:51:02 -08:00

32 lines
901 B
C#

using static PKHeX.Core.Encounters8Nest;
namespace PKHeX.Core
{
/// <summary>
/// Generation 8 Nest Encounter (Distributed Data)
/// </summary>
/// <inheritdoc cref="EncounterStatic8Nest{T}"/>
public sealed class EncounterStatic8ND : EncounterStatic8Nest<EncounterStatic8ND>
{
public EncounterStatic8ND(byte lvl, byte dyna, byte flawless)
{
Level = lvl;
DynamaxLevel = dyna;
FlawlessIVCount = flawless;
}
protected override bool IsMatchLocation(PKM pkm)
{
var loc = pkm.Met_Location;
return loc == SharedNest || EncounterArea8.IsWildArea(loc);
}
public override bool IsMatch(PKM pkm, DexLevel evo)
{
if (pkm.FlawlessIVCount < FlawlessIVCount)
return false;
return base.IsMatch(pkm, evo);
}
}
}