2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Nature ID values for the corresponding English nature name.
|
|
|
|
|
/// </summary>
|
2018-04-21 16:18:28 +00:00
|
|
|
|
public enum Nature : byte
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
2018-08-03 03:11:42 +00: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 16:43:57 +00:00
|
|
|
|
Quirky,
|
2018-04-21 16:18:28 +00:00
|
|
|
|
|
|
|
|
|
Random = 25,
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|