2018-03-08 21:18:32 -08: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>
|
2018-12-29 22:24:34 -08:00
|
|
|
|
public sealed class EncounterTradeCatchRate : EncounterTrade
|
2018-03-08 21:18:32 -08:00
|
|
|
|
{
|
2019-09-10 00:21:51 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// <see cref="PK1.Catch_Rate"/> value the encounter is found with.
|
|
|
|
|
/// </summary>
|
2018-03-08 21:18:32 -08:00
|
|
|
|
public uint Catch_Rate;
|
|
|
|
|
}
|
|
|
|
|
}
|