mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
e9a3b4acf1
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...
11 lines
No EOL
270 B
C#
11 lines
No EOL
270 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Trade Encounter data with a fixed PID.
|
|
/// </summary>
|
|
public class EncounterTradePID : EncounterTrade
|
|
{
|
|
public uint PID;
|
|
public override Shiny Shiny { get; set; } = Shiny.FixedValue;
|
|
}
|
|
} |