mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-13 06:02:36 +00:00
20 lines
291 B
C#
20 lines
291 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
public enum BattleStyle7
|
|||
|
{
|
|||
|
Normal,
|
|||
|
Elegant,
|
|||
|
Girlish,
|
|||
|
Reverent,
|
|||
|
Smug,
|
|||
|
LeftHanded,
|
|||
|
Passionate,
|
|||
|
Idol,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// USUM Only
|
|||
|
/// </summary>
|
|||
|
Nihilist,
|
|||
|
}
|
|||
|
}
|