mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
Nature -> byte instead of int
This commit is contained in:
parent
ecf191e0e6
commit
0b62ab85a1
1 changed files with 3 additions and 2 deletions
|
@ -3,13 +3,14 @@
|
|||
/// <summary>
|
||||
/// Nature ID values for the corresponding English nature name.
|
||||
/// </summary>
|
||||
public enum Nature
|
||||
public enum Nature : byte
|
||||
{
|
||||
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,
|
||||
|
||||
Random = 25,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue