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

17 lines
424 B
C#
Raw Normal View History

namespace PKHeX.Core
{
/// <summary>
/// Nature ID values for the corresponding English nature name.
/// </summary>
2018-04-21 16:18:28 +00:00
public enum Nature : byte
{
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,
2018-04-21 16:18:28 +00:00
Random = 25,
}
}