mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-19 08:53:28 +00:00
3f38b123a3
mostly renaming things, includes a little bit of added sugar and splitting methods to simplify the codebase. all methods are now PascalCase
24 lines
833 B
C#
24 lines
833 B
C#
namespace PKHeX.Core
|
|
{
|
|
public class EncounterLink : IEncounterable
|
|
{
|
|
public int Species { get; set; }
|
|
public int Level { get; set; }
|
|
public int LevelMin => Level;
|
|
public int LevelMax => Level;
|
|
public int Location { get; set; } = 30011;
|
|
public int Ability { get; set; } = 1;
|
|
public int Ball { get; set; } = 4; // Pokéball
|
|
public bool Classic { get; set; } = true;
|
|
public bool Fateful { get; set; } = false;
|
|
public int[] RelearnMoves = new int[4];
|
|
public bool? Shiny { get; set; } = false;
|
|
public bool OT { get; set; } = true; // Receiver is OT?
|
|
public bool EggEncounter => false;
|
|
|
|
public bool XY { get; set; }
|
|
public bool ORAS { get; set; }
|
|
|
|
public string Name => "Pokémon Link Gift";
|
|
}
|
|
}
|