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

13 lines
365 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 class EncounterTradeCatchRate : EncounterTrade
{
public uint Catch_Rate;
}
}