mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
1e13220e6e
egg,slot,static,link,trade need to be implemented later remove IEncounterable from PL6
20 lines
537 B
C#
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();
|
|
}
|
|
}
|