PKHeX/PKHeX.Core/Legality/RNG/Frame/LeadRequired.cs
Kurt d29acfb171 Add encounter slot checking
Frame list now can be queried for encounter slot matches
2017-05-14 23:21:34 -07:00

19 lines
291 B
C#

namespace PKHeX.Core
{
public enum LeadRequired
{
None,
CuteCharm,
Synchronize,
SynchronizeFail,
// Slot Modifiers
MagnetPull,
Static,
// Level Modifiers
Intimidate, // Keen Eye
VitalSpirit
}
}