mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
23 lines
767 B
C#
23 lines
767 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; }
|
|
}
|
|
|
|
internal static partial class RibbonExtensions
|
|
{
|
|
internal 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;
|
|
}
|
|
}
|