mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
26b1453002
Fix RibbonVerifier4 not checking gen4 contest ribbons correctly Split IRibbonCommon6 to have memory ribbons separate, as they are not implemented in mystery gifts. Also, we can add the boolean flags to the interface, and check that the boolean is set if count is nonzero. Fix adding ribbons to Gen8 gift templates Improve Gen8 template ribbon fetch (no closure, faster IndexOf)
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; }
|
|
}
|