mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
16 lines
490 B
C#
16 lines
490 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public sealed class EncounterStatic6 : EncounterStatic, IContestStats
|
|||
|
{
|
|||
|
internal IReadOnlyList<int> Contest { set => this.SetContestStats(value); }
|
|||
|
public int CNT_Cool { get; set; }
|
|||
|
public int CNT_Beauty { get; set; }
|
|||
|
public int CNT_Cute { get; set; }
|
|||
|
public int CNT_Smart { get; set; }
|
|||
|
public int CNT_Tough { get; set; }
|
|||
|
public int CNT_Sheen { get; set; }
|
|||
|
}
|
|||
|
}
|