PKHeX/PKHeX.Core/Ribbons/Past/IRibbonSetOnly3.cs

18 lines
540 B
C#
Raw Normal View History

namespace PKHeX.Core;
/// <summary> Ribbons that originated in Generation 3 and were only present within that Generation. </summary>
public interface IRibbonSetOnly3
{
byte RibbonCountG3Cool { get; set; }
byte RibbonCountG3Beauty { get; set; }
byte RibbonCountG3Cute { get; set; }
byte RibbonCountG3Smart { get; set; }
byte RibbonCountG3Tough { get; set; }
bool RibbonWorld { get; set; }
bool Unused1 { get; set; }
bool Unused2 { get; set; }
bool Unused3 { get; set; }
bool Unused4 { get; set; }
}