mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
7fc8001806
EncounterTrade: don't init Location to -1; keep as default 0 and use that as the pivot for default met location. Move Fateful property to the sub-type that uses it (EncounterTrade4, for Ranch). Move some EncounterStatic->PKM logic that is per-type to the associated type overloaded methods. Rearrange order of properties to be more consistent with interfaces Gen3: Initialize some classes without using post-constructor setters. The `init` setter functionality coming in c#9 won't be usable as the net46 runtime/netstandard2 doesn't support it on current previews. Do it this way so we can explicity initialize some required properties rather than apply version on a second iteration.
78 lines
2.3 KiB
C#
78 lines
2.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Shadow Pokémon Encounter found in <see cref="GameVersion.CXD"/>
|
|
/// </summary>
|
|
public sealed class EncounterStaticShadow : EncounterStatic
|
|
{
|
|
public override int Generation => 3;
|
|
|
|
/// <summary>
|
|
/// Team Specification with required <see cref="Species"/>, <see cref="Nature"/> and Gender.
|
|
/// </summary>
|
|
public readonly TeamLock[] Locks;
|
|
|
|
/// <summary>
|
|
/// Initial Shadow Gauge value.
|
|
/// </summary>
|
|
public int Gauge { get; internal set; }
|
|
|
|
/// <summary>
|
|
/// Originates from the EReader scans (Japanese Only)
|
|
/// </summary>
|
|
public bool EReader => ReferenceEquals(IVs, EReaderEmpty);
|
|
|
|
public static readonly IReadOnlyList<int> EReaderEmpty = new[] {0,0,0,0,0,0};
|
|
|
|
public EncounterStaticShadow(TeamLock[] locks) => Locks = locks;
|
|
public EncounterStaticShadow() : this(Array.Empty<TeamLock>()) { }
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|