PKHeX/PKHeX.Core/Legality/Encounters/EncounterStaticPID.cs
Kurt e9a3b4acf1 Merge PIDType and bool? shiny property
Gen5 does not follow the same convention, 0 = non, 1 = rnd, 2 = always;
not gonna bother updating for just that one

bool? occupies 2 bytes; enum:byte is 1 byte.

should probably move validity checking logic into the IEncounterable
objects instead...
2018-03-16 19:35:55 -07:00

9 lines
No EOL
246 B
C#

namespace PKHeX.Core
{
internal class EncounterStaticPID : EncounterStatic
{
public uint PID { get; set; }
public bool NSparkle { get; set; }
public override Shiny Shiny { get; set; } = Shiny.FixedValue;
}
}