using System;
using System.Collections.Generic;
using System.Linq;
namespace PKHeX.Core
{
///
/// Shadow Pokémon Encounter found in
///
///
public sealed class EncounterStaticShadow : EncounterStatic
{
public override int Generation => 3;
///
/// Team Specification with required , and Gender.
///
public readonly TeamLock[] Locks;
///
/// Initial Shadow Gauge value.
///
public int Gauge { get; init; }
///
/// Originates from the EReader scans (Japanese Only)
///
public bool EReader => ReferenceEquals(IVs, EReaderEmpty);
public static readonly IReadOnlyList EReaderEmpty = new[] {0,0,0,0,0,0};
public EncounterStaticShadow(TeamLock[] locks) => Locks = locks;
public EncounterStaticShadow() : this(Array.Empty()) { }
private static readonly int[] MirorBXDLocations =
{
090, // Rock
091, // Oasis
092, // Cave
113, // Pyrite Town
059, // Realgam Tower
};
protected override bool IsMatchEggLocation(PKM pkm)
{
return true; // transfer location verified later
}
protected override bool IsMatchLocation(PKM pkm)
{
if (pkm.Format != 3)
return true; // transfer location verified later
var met = pkm.Met_Location;
if (Version == GameVersion.XD)
{
if (met == Location)
return true;
return MirorBXDLocations.Contains(met);
}
return met == Location;
}
protected override bool IsMatchLevel(PKM pkm, DexLevel evo)
{
if (pkm.Format != 3) // Met Level lost on PK3=>PK4
return Level <= evo.Level;
return pkm.Met_Level == Level;
}
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
{
base.ApplyDetails(sav, criteria, pk);
((IRibbonSetEvent3)pk).RibbonNational = true;
}
}
}