PkmnLibSharp/PkmnLibSharp/Generated/Pkmnlib/EvolutionMethod.cs

24 lines
566 B
C#
Raw Normal View History

2020-05-03 09:38:49 +00:00
// AUTOMATICALLY GENERATED, DO NOT EDIT
2020-05-02 17:54:07 +00:00
using System.Diagnostics.CodeAnalysis;
namespace Pkmnlib
{
[SuppressMessage("ReSharper", "InconsistentNaming")]
internal enum EvolutionMethod : byte
2020-05-02 17:54:07 +00:00
{
Level = 0,
HighFriendship = 1,
TradeWithHeldItem = 10,
TradeWithSpecificPokemon = 11,
Custom = 12,
KnownMove = 2,
LocationBased = 3,
TimeBased = 4,
HoldsItem = 5,
IsGenderAndLevel = 6,
EvolutionItemUse = 7,
EvolutionItemUseWithGender = 8,
Trade = 9,
}
}