mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
e1414a0bea
No code changes
16 lines
355 B
C#
16 lines
355 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Secondary Form Argument to indicate which decoration is used for <see cref="Species.Alcremie"/>
|
|
/// </summary>
|
|
public enum AlcremieDecoration
|
|
{
|
|
Strawberry = 0,
|
|
Berry = 1,
|
|
Love = 2,
|
|
Star = 3,
|
|
Clover = 4,
|
|
Flower = 5,
|
|
Ribbon = 6,
|
|
}
|
|
}
|