mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
16 lines
424 B
C#
16 lines
424 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Nature ID values for the corresponding English nature name.
|
|
/// </summary>
|
|
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,
|
|
|
|
Random = 25,
|
|
}
|
|
}
|