2021-12-07 08:54:39 +00:00
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
|
|
2022-03-06 20:16:36 +00:00
|
|
|
|
/// <summary>
|
2022-11-25 01:42:17 +00:00
|
|
|
|
/// Rules for how <see cref="IContestStatsReadOnly"/> are acquired.
|
2022-03-06 20:16:36 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <seealso cref="ContestStatGrantingSheen"/>
|
2021-12-07 08:54:39 +00:00
|
|
|
|
public enum ContestStatGranting
|
|
|
|
|
{
|
|
|
|
|
/// <summary> Not possible to get any contest stats. </summary>
|
|
|
|
|
None,
|
|
|
|
|
/// <summary> Contest stats are possible to obtain, but must be correlated to sheen at most 1:1. </summary>
|
|
|
|
|
CorrelateSheen,
|
|
|
|
|
/// <summary> Contest stats are possible to obtain, but cannot obtain any sheen value. </summary>
|
|
|
|
|
NoSheen,
|
|
|
|
|
/// <summary> Contest stats are possible to obtain, and has visited a multitude of games such that any value of sheen is possible. </summary>
|
|
|
|
|
Mixed,
|
|
|
|
|
}
|