mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using static PKHeX.Core.RibbonIndex;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Parsing logic for <see cref="IRibbonSetCommon7"/>.
|
|
/// </summary>
|
|
public static class RibbonVerifierCommon7
|
|
{
|
|
public static void Parse(this IRibbonSetCommon7 r, RibbonVerifierArguments args, ref RibbonResultList list)
|
|
{
|
|
bool inhabited7 = args.History.HasVisitedGen7;
|
|
bool alolaValid = RibbonRules.IsRibbonValidAlolaChamp(r, args.Encounter, inhabited7);
|
|
if (!alolaValid)
|
|
list.Add(ChampionAlola, !r.RibbonChampionAlola);
|
|
|
|
var pk = args.Entity;
|
|
if (inhabited7 && RibbonRules.IsAllowedBattleFrontier(args.History.Gen7[0].Species))
|
|
return; // Can have all 3 ribbons.
|
|
|
|
if (r.RibbonBattleRoyale)
|
|
list.Add(BattleRoyale);
|
|
if (r.RibbonBattleTreeGreat && pk.IsUntraded && !pk.USUM)
|
|
list.Add(BattleTreeGreat);
|
|
if (r.RibbonBattleTreeMaster)
|
|
list.Add(BattleTreeMaster);
|
|
}
|
|
|
|
public static void ParseEgg(this IRibbonSetCommon7 r, ref RibbonResultList list)
|
|
{
|
|
if (r.RibbonChampionAlola)
|
|
list.Add(ChampionAlola);
|
|
|
|
if (r.RibbonBattleRoyale)
|
|
list.Add(BattleRoyale);
|
|
if (r.RibbonBattleTreeGreat)
|
|
list.Add(BattleTreeGreat);
|
|
if (r.RibbonBattleTreeMaster)
|
|
list.Add(BattleTreeMaster);
|
|
}
|
|
}
|