mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
13 lines
365 B
C#
13 lines
365 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|