PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic8NC.cs

19 lines
565 B
C#
Raw Normal View History

using static PKHeX.Core.Encounters8Nest;
namespace PKHeX.Core
{
/// <summary>
/// Generation 8 Nest Encounter (Distributed Crystal Data)
/// </summary>
/// <inheritdoc cref="EncounterStatic8Nest{T}"/>
public sealed class EncounterStatic8NC : EncounterStatic8Nest<EncounterStatic8NC>
{
public override int Location { get => SharedNest; set { } }
protected override bool IsMatchLocation(PKM pkm)
{
var loc = pkm.Met_Location;
return loc == SharedNest || loc == Watchtower;
}
}
}