mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
bb2a63bbce
Thanks @SadisticMystic! https: //github.com/kwsch/PKHeX/commit/9ce0da6c46ebea3c7c6edd1f1e0571e5ecbec739#r63579484 Co-Authored-By: Russell Jones <questiondesk@gmail.com>
20 lines
617 B
C#
20 lines
617 B
C#
namespace PKHeX.Core;
|
|
|
|
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,
|
|
}
|
|
|
|
public enum ContestStatGrantingSheen
|
|
{
|
|
Gen3,
|
|
Gen4,
|
|
Gen8b,
|
|
}
|