mirror of
https://github.com/kwsch/pkNX.git
synced 2026-07-06 20:23:59 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
39 lines
388 B
C#
39 lines
388 B
C#
namespace pkNX.Structures;
|
|
|
|
public enum Nature : sbyte
|
|
{
|
|
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,
|
|
|
|
Random25 = 25,
|
|
}
|