2017-06-20 04:43:44 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
|
|
|
|
/// <summary> Common Ribbons introduced in Generation 4 </summary>
|
|
|
|
|
internal interface IRibbonSetCommon4
|
|
|
|
|
{
|
|
|
|
|
bool RibbonChampionSinnoh { get; set; }
|
|
|
|
|
bool RibbonAlert { get; set; }
|
|
|
|
|
bool RibbonShock { get; set; }
|
|
|
|
|
bool RibbonDowncast { get; set; }
|
|
|
|
|
bool RibbonCareless { get; set; }
|
|
|
|
|
bool RibbonRelax { get; set; }
|
|
|
|
|
bool RibbonSnooze { get; set; }
|
|
|
|
|
bool RibbonSmile { get; set; }
|
|
|
|
|
bool RibbonGorgeous { get; set; }
|
|
|
|
|
bool RibbonRoyal { get; set; }
|
|
|
|
|
bool RibbonGorgeousRoyal { get; set; }
|
|
|
|
|
bool RibbonFootprint { get; set; }
|
|
|
|
|
bool RibbonRecord { get; set; }
|
|
|
|
|
bool RibbonLegend { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal static partial class RibbonExtensions
|
|
|
|
|
{
|
|
|
|
|
private static readonly string[] RibbonSetNamesCommon4 =
|
|
|
|
|
{
|
2017-06-27 05:18:42 +00:00
|
|
|
|
nameof(IRibbonSetCommon4.RibbonGorgeous), nameof(IRibbonSetCommon4.RibbonRoyal), nameof(IRibbonSetCommon4.RibbonGorgeousRoyal),
|
2017-06-20 04:43:44 +00:00
|
|
|
|
};
|
2017-06-27 05:18:42 +00:00
|
|
|
|
internal static bool[] RibbonBitsCosmetic(this IRibbonSetCommon4 set)
|
2017-06-20 04:43:44 +00:00
|
|
|
|
{
|
|
|
|
|
if (set == null)
|
2017-06-27 05:18:42 +00:00
|
|
|
|
return new bool[3];
|
2017-06-20 04:43:44 +00:00
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
set.RibbonGorgeous,
|
|
|
|
|
set.RibbonRoyal,
|
|
|
|
|
set.RibbonGorgeousRoyal,
|
2017-06-27 05:18:42 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
internal static string[] RibbonNamesCosmetic(this IRibbonSetCommon4 set) => RibbonSetNamesCommon4;
|
|
|
|
|
private static readonly string[] RibbonSetNamesCommon4Only =
|
|
|
|
|
{
|
|
|
|
|
nameof(IRibbonSetCommon4.RibbonRecord), nameof(IRibbonSetCommon4.RibbonChampionSinnoh), nameof(IRibbonSetCommon4.RibbonLegend),
|
|
|
|
|
};
|
|
|
|
|
internal static bool[] RibbonBitsOnly(this IRibbonSetCommon4 set)
|
|
|
|
|
{
|
|
|
|
|
if (set == null)
|
|
|
|
|
return new bool[3];
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
set.RibbonChampionSinnoh,
|
2017-06-20 04:43:44 +00:00
|
|
|
|
set.RibbonRecord,
|
|
|
|
|
set.RibbonLegend,
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-06-27 05:18:42 +00:00
|
|
|
|
internal static string[] RibbonNamesOnly(this IRibbonSetCommon4 set) => RibbonSetNamesCommon4Only;
|
|
|
|
|
|
|
|
|
|
private static readonly string[] RibbonSetNamesCommon4Daily =
|
2017-06-21 04:57:00 +00:00
|
|
|
|
{
|
2017-06-27 05:18:42 +00:00
|
|
|
|
nameof(IRibbonSetCommon4.RibbonAlert), nameof(IRibbonSetCommon4.RibbonShock),
|
2017-06-21 04:57:00 +00:00
|
|
|
|
nameof(IRibbonSetCommon4.RibbonDowncast), nameof(IRibbonSetCommon4.RibbonCareless), nameof(IRibbonSetCommon4.RibbonRelax),
|
|
|
|
|
nameof(IRibbonSetCommon4.RibbonSnooze), nameof(IRibbonSetCommon4.RibbonSmile),
|
|
|
|
|
};
|
2017-06-27 05:18:42 +00:00
|
|
|
|
|
|
|
|
|
internal static bool[] RibbonBitsDaily(this IRibbonSetCommon4 set)
|
2017-06-21 04:57:00 +00:00
|
|
|
|
{
|
|
|
|
|
if (set == null)
|
2017-06-27 05:18:42 +00:00
|
|
|
|
return new bool[7];
|
2017-06-21 04:57:00 +00:00
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
set.RibbonAlert,
|
|
|
|
|
set.RibbonShock,
|
|
|
|
|
set.RibbonDowncast,
|
|
|
|
|
set.RibbonCareless,
|
|
|
|
|
set.RibbonRelax,
|
|
|
|
|
set.RibbonSnooze,
|
|
|
|
|
set.RibbonSmile,
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-06-27 05:18:42 +00:00
|
|
|
|
internal static string[] RibbonNamesDaily(this IRibbonSetCommon4 set) => RibbonSetNamesCommon4Daily;
|
2017-06-20 04:43:44 +00:00
|
|
|
|
}
|
|
|
|
|
}
|