PKHeX/PKHeX.Core/Legality/Verifiers/Misc/ContestStatGranting.cs
Kurt 03182ebd3d Update 22.11.24
Adds support for Scarlet & Violet.

Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com>
Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
2022-11-24 17:42:17 -08:00

17 lines
688 B
C#

namespace PKHeX.Core;
/// <summary>
/// Rules for how <see cref="IContestStatsReadOnly"/> are acquired.
/// </summary>
/// <seealso cref="ContestStatGrantingSheen"/>
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,
}