Implements system for saving Evolutions.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-01-02 13:45:39 +01:00
parent 23bcec9b75
commit 5dc6695f9e
5 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#ifndef PKMNLIB_EVOLUTIONMETHOD_HPP
#define PKMNLIB_EVOLUTIONMETHOD_HPP
#include <cstdint>
namespace PkmnLib::Library{
enum class EvolutionMethod : uint8_t{
Level,
HighFriendship,
KnownMove,
LocationBased,
TimeBased,
HoldsItem,
IsGenderAndLevel,
EvolutionItemUse,
EvolutionItemUseWithGender,
Trade,
TradeWithHeldItem,
TradeWithSpecificPokemon,
Custom
};
}
#endif // PKMNLIB_EVOLUTIONMETHOD_HPP