mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
e0cf4447ff
Move some files around WC9 fidough gift sets Classic AND Uncommon, and it doesn't set the lowest ribbon indexes. Nice GUI.
17 lines
540 B
C#
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; }
|
|
}
|