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