PKHeX/PKHeX.Core/Legality/RNG/Frame/LeadRequired.cs
Kurt e3efa65160 Cleanup
handle messages for dirty cleaning :)
2019-10-26 12:33:58 -07:00

37 lines
981 B
C#

using System;
namespace PKHeX.Core
{
[Flags]
public enum LeadRequired
{
None = 0,
CuteCharm = 1 << 0,
Synchronize = 1 << 1,
// Slot Modifiers
StaticMagnet = 1 << 2,
// Level Modifiers
IntimidateKeenEye = 1 << 3,
PressureHustleSpirit = 1 << 4,
SuctionCups = 1 << 5,
// Compatibility Flags
UsesLevelCall = 1 << 6,
Fail = 1 << 7,
CuteCharmFail = CuteCharm | Fail,
SynchronizeFail = Synchronize | Fail,
StaticMagnetFail = StaticMagnet | Fail,
PressureHustleSpiritFail = PressureHustleSpirit | Fail,
AllFlags = UsesLevelCall | Fail,
}
public static partial class Extensions
{
internal static bool IsLevelOrSlotModified(this LeadRequired Lead) => Lead.RemoveFlags() > LeadRequired.Synchronize;
internal static LeadRequired RemoveFlags(this LeadRequired Lead) => Lead & ~LeadRequired.AllFlags;
}
}