PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic6.cs

16 lines
490 B
C#
Raw Normal View History

2020-08-22 18:59:43 +00:00
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; }
}
}