mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-15 16:41:03 -05:00
19 lines
291 B
C#
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
|
|
}
|
|
}
|