PKHeX/PKHeX.Core/PKM/Enums/AlcremieDecoration.cs
2022-03-06 12:06:50 -08:00

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,
}
}