13 lines
415 B
C++
13 lines
415 B
C++
#ifndef PKMNLIB_EVOLUTIONMETHOD_HPP
|
|
#define PKMNLIB_EVOLUTIONMETHOD_HPP
|
|
|
|
#include <cstdint>
|
|
namespace PkmnLib::Library {
|
|
ENUM(EvolutionMethod, uint8_t, Level, HighFriendship, KnownMove, LocationBased, TimeBased, HoldsItem,
|
|
IsGenderAndLevel, EvolutionItemUse, EvolutionItemUseWithGender, Trade, TradeWithHeldItem,
|
|
TradeWithSpecificPokemon, Custom
|
|
)
|
|
}
|
|
|
|
#endif // PKMNLIB_EVOLUTIONMETHOD_HPP
|