mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
62018cce1a
AltForm & Form & Forme => Form GenNumber & Generation => Generation Extract out SpeciesForm interface, and re-add IGeneration For those using PKHeX as a dependency, this should be a pretty straightforward manual replacement... GenNumber and AltForm should be quick find-replace`s.
36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Common Encounter Properties base interface.
|
|
/// </summary>
|
|
public interface IEncounterable : ISpeciesForm, IVersion, IGeneration
|
|
{
|
|
string Name { get; }
|
|
string LongName { get; }
|
|
bool EggEncounter { get; }
|
|
int LevelMin { get; }
|
|
int LevelMax { get; }
|
|
|
|
PKM ConvertToPKM(ITrainerInfo sav);
|
|
PKM ConvertToPKM(ITrainerInfo sav, EncounterCriteria criteria);
|
|
}
|
|
|
|
public static partial class Extensions
|
|
{
|
|
private static bool IsWithinRange(this IEncounterable encounter, int lvl)
|
|
{
|
|
return encounter.LevelMin <= lvl && lvl <= encounter.LevelMax;
|
|
}
|
|
|
|
public static bool IsWithinRange(this IEncounterable encounter, PKM pkm)
|
|
{
|
|
if (!pkm.HasOriginalMetLocation)
|
|
return encounter.IsWithinRange(pkm.CurrentLevel);
|
|
if (encounter.EggEncounter)
|
|
return pkm.CurrentLevel == encounter.LevelMin;
|
|
if (encounter is MysteryGift g)
|
|
return pkm.CurrentLevel == g.Level;
|
|
return pkm.CurrentLevel == pkm.Met_Level;
|
|
}
|
|
}
|
|
}
|