Nature -> byte instead of int

This commit is contained in:
Kurt 2018-04-21 09:18:28 -07:00
parent ecf191e0e6
commit 0b62ab85a1

View file

@ -3,13 +3,14 @@
/// <summary> /// <summary>
/// Nature ID values for the corresponding English nature name. /// Nature ID values for the corresponding English nature name.
/// </summary> /// </summary>
public enum Nature public enum Nature : byte
{ {
Random = -1,
Hardy, Lonely, Brave, Adamant, Naughty, Bold, Hardy, Lonely, Brave, Adamant, Naughty, Bold,
Docile, Relaxed, Impish, Lax, Timid, Hasty, Docile, Relaxed, Impish, Lax, Timid, Hasty,
Serious, Jolly, Naive, Modest, Mild, Quiet, Serious, Jolly, Naive, Modest, Mild, Quiet,
Bashful, Rash, Calm, Gentle, Sassy, Careful, Bashful, Rash, Calm, Gentle, Sassy, Careful,
Quirky, Quirky,
Random = 25,
} }
} }