PKHeX/PKHeX.Core/Ribbons/Past/IRibbonSetOnly3.cs
Kurt e0cf4447ff Explicitly handle mark8 presence (wc9/static9)
Move some files around
WC9 fidough gift sets Classic AND Uncommon, and it doesn't set the lowest ribbon indexes. Nice GUI.
2023-11-01 19:19:50 -07:00

17 lines
540 B
C#

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