PKHeX/PKHeX.Core/Legality/Structures/Nature.cs

13 lines
311 B
C#
Raw Normal View History

namespace PKHeX.Core
{
public enum Nature
{
Random = -1,
Hardy, Lonely, Brave, Adamant, Naughty, Bold,
Docile, Relaxed, Impish, Lax, Timid, Hasty,
Serious, Jolly, Naive, Modest, Mild, Quiet,
Bashful, Rash, Calm, Gentle, Sassy, Careful,
Quirky,
}
}