mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
52c4fbbe97
Refactored and rearranged things as needed to allow the change
12 lines
311 B
C#
12 lines
311 B
C#
namespace PKHeX.Core
|
|
{
|
|
public enum Nature
|
|
{
|
|
Random = -1,
|
|
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,
|
|
}
|
|
}
|