2017-01-07 23:54:09 -08:00
|
|
|
|
namespace PKHeX.Core
|
2016-11-08 08:43:57 -08:00
|
|
|
|
{
|
2017-10-23 23:12:58 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Nature ID values for the corresponding English nature name.
|
|
|
|
|
/// </summary>
|
2018-04-21 09:18:28 -07:00
|
|
|
|
public enum Nature : byte
|
2016-11-08 08:43:57 -08:00
|
|
|
|
{
|
2018-08-02 20:11:42 -07:00
|
|
|
|
Hardy,
|
|
|
|
|
Lonely,
|
|
|
|
|
Brave,
|
|
|
|
|
Adamant,
|
|
|
|
|
Naughty,
|
|
|
|
|
Bold,
|
|
|
|
|
Docile,
|
|
|
|
|
Relaxed,
|
|
|
|
|
Impish,
|
|
|
|
|
Lax,
|
|
|
|
|
Timid,
|
|
|
|
|
Hasty,
|
|
|
|
|
Serious,
|
|
|
|
|
Jolly,
|
|
|
|
|
Naive,
|
|
|
|
|
Modest,
|
|
|
|
|
Mild,
|
|
|
|
|
Quiet,
|
|
|
|
|
Bashful,
|
|
|
|
|
Rash,
|
|
|
|
|
Calm,
|
|
|
|
|
Gentle,
|
|
|
|
|
Sassy,
|
|
|
|
|
Careful,
|
2016-11-08 08:43:57 -08:00
|
|
|
|
Quirky,
|
2018-04-21 09:18:28 -07:00
|
|
|
|
|
|
|
|
|
Random = 25,
|
2016-11-08 08:43:57 -08:00
|
|
|
|
}
|
|
|
|
|
}
|