2022-08-16 04:04:30 +00:00
|
|
|
namespace PKHeX.Core;
|
2022-06-18 18:04:24 +00:00
|
|
|
|
|
|
|
/// <summary> Ribbons that originated in Generation 3 and were only present within that Generation. </summary>
|
|
|
|
public interface IRibbonSetOnly3
|
2017-06-20 04:43:44 +00:00
|
|
|
{
|
2022-08-24 04:25:22 +00:00
|
|
|
byte RibbonCountG3Cool { get; set; }
|
|
|
|
byte RibbonCountG3Beauty { get; set; }
|
|
|
|
byte RibbonCountG3Cute { get; set; }
|
|
|
|
byte RibbonCountG3Smart { get; set; }
|
|
|
|
byte RibbonCountG3Tough { get; set; }
|
2018-02-03 20:42:06 +00:00
|
|
|
|
2022-06-18 18:04:24 +00:00
|
|
|
bool RibbonWorld { get; set; }
|
|
|
|
bool Unused1 { get; set; }
|
|
|
|
bool Unused2 { get; set; }
|
|
|
|
bool Unused3 { get; set; }
|
|
|
|
bool Unused4 { get; set; }
|
|
|
|
}
|