mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
69cf1eaa9c
adds a bunch of documentation useful for those unfamiliar with the core library
18 lines
439 B
C#
18 lines
439 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;
|
|
}
|
|
}
|