mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
24 lines
394 B
C#
24 lines
394 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Indicates the method of learning a move
|
|||
|
/// </summary>
|
|||
|
public enum MoveSource
|
|||
|
{
|
|||
|
Unknown,
|
|||
|
None,
|
|||
|
Relearn,
|
|||
|
Initial,
|
|||
|
LevelUp,
|
|||
|
TMHM,
|
|||
|
Tutor,
|
|||
|
EggMove,
|
|||
|
InheritLevelUp,
|
|||
|
Special,
|
|||
|
SpecialEgg,
|
|||
|
ShedinjaEvo,
|
|||
|
Sketch,
|
|||
|
Shared,
|
|||
|
}
|
|||
|
}
|