mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
17 lines
No EOL
497 B
C#
17 lines
No EOL
497 B
C#
using static PKHeX.Core.Encounters8Nest;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 8 Nest Encounter (Distributed Crystal Data)
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterStatic8Nest{T}"/>
|
|
public sealed record EncounterStatic8NC : EncounterStatic8Nest<EncounterStatic8NC>
|
|
{
|
|
protected override bool IsMatchLocation(PKM pkm)
|
|
{
|
|
var loc = pkm.Met_Location;
|
|
return loc == SharedNest || loc == Watchtower;
|
|
}
|
|
}
|
|
} |