mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 00:07:15 +00:00
4656909d98
use shared class for pk1/2 setnotnicknamed fix extendedeurope values (copypaste from extendedAmericas) move ball out of verifiers, move nature/movetype with ball
36 lines
584 B
C#
36 lines
584 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,
|
|
}
|
|
}
|