PKHeX/PKHeX.Core/Legality/Encounters/EncounterTradeCatchRate.cs

13 lines
372 B
C#
Raw Normal View History

2018-03-09 05:18:32 +00:00
namespace PKHeX.Core
{
/// <summary>
/// Trade Encounter data with a fixed Catch Rate
/// </summary>
/// <remarks>
/// Generation 1 specific value used in detecting unmodified/untraded Generation 1 Trade Encounter data.
/// </remarks>
public sealed class EncounterTradeCatchRate : EncounterTrade
2018-03-09 05:18:32 +00:00
{
public uint Catch_Rate;
}
}