PKHeX/PKHeX.Core/Legality/Encounters/EncounterEgg.cs
Kurt 1e13220e6e Add IEncounterable -> pkm interface method
egg,slot,static,link,trade need to be implemented later

remove IEncounterable from PL6
2018-03-28 20:38:07 -07:00

20 lines
537 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Egg Encounter Data
/// </summary>
public class EncounterEgg : IEncounterable
{
public int Species { get; set; }
public string Name => "Egg";
public bool EggEncounter => true;
public int LevelMin => Level;
public int LevelMax => Level;
public int Level;
public GameVersion Game;
public bool SplitBreed;
public PKM ConvertToPKM(ITrainerInfo SAV) => throw new System.NotImplementedException();
}
}