PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic6.cs
2020-08-22 11:59:43 -07:00

15 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; }
}
}