namespace PKHeX.Core;
///
/// Rules for how are acquired.
///
///
public enum ContestStatGranting
{
/// Not possible to get any contest stats.
None,
/// Contest stats are possible to obtain, but must be correlated to sheen at most 1:1.
CorrelateSheen,
/// Contest stats are possible to obtain, but cannot obtain any sheen value.
NoSheen,
/// Contest stats are possible to obtain, and has visited a multitude of games such that any value of sheen is possible.
Mixed,
}