2017-05-28 04:17:53 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Egg Encounter Data
|
|
|
|
|
/// </summary>
|
2017-05-28 04:17:53 +00:00
|
|
|
|
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;
|
2018-03-29 03:38:07 +00:00
|
|
|
|
|
|
|
|
|
public PKM ConvertToPKM(ITrainerInfo SAV) => throw new System.NotImplementedException();
|
2017-05-28 04:17:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|