mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
23 lines
763 B
C#
23 lines
763 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary> Common Ribbons introduced in Generation 8 </summary>
|
|
public interface IRibbonSetCommon8
|
|
{
|
|
bool RibbonChampionGalar { get; set; }
|
|
bool RibbonTowerMaster { get; set; }
|
|
bool RibbonMasterRank { get; set; }
|
|
bool RibbonTwinklingStar { get; set; }
|
|
bool RibbonHisui { get; set; }
|
|
}
|
|
|
|
public static partial class RibbonExtensions
|
|
{
|
|
public static void CopyRibbonSetCommon8(this IRibbonSetCommon8 set, IRibbonSetCommon8 dest)
|
|
{
|
|
dest.RibbonChampionGalar = set.RibbonChampionGalar;
|
|
dest.RibbonTowerMaster = set.RibbonTowerMaster;
|
|
dest.RibbonMasterRank = set.RibbonMasterRank;
|
|
dest.RibbonTwinklingStar = set.RibbonTwinklingStar;
|
|
dest.RibbonHisui = set.RibbonHisui;
|
|
}
|
|
}
|