mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
16 lines
375 B
C#
16 lines
375 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
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;
|
|||
|
}
|
|||
|
}
|