mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
21 lines
392 B
C#
21 lines
392 B
C#
namespace PKHeX.Core
|
|
{
|
|
public enum LeadRequired
|
|
{
|
|
None,
|
|
CuteCharm,
|
|
CuteCharmFail,
|
|
Synchronize,
|
|
SynchronizeFail,
|
|
|
|
// Slot Modifiers
|
|
StaticMagnet,
|
|
Static,
|
|
|
|
// Level Modifiers
|
|
IntimidateKeenEye, // Keen Eye
|
|
PressureHustleSpirit,
|
|
PressureHustleSpiritFail,
|
|
StaticMagnetFail
|
|
}
|
|
}
|