PkmnLib/src/Library/Species/PokemonForme.cpp

13 lines
836 B
C++
Raw Normal View History

2019-12-29 14:29:52 +00:00
#include "PokemonForme.hpp"
using namespace CreatureLib::Library;
2020-07-04 13:50:30 +00:00
PkmnLib::Library::PokemonForme::PokemonForme(const ArbUt::StringView& name, float height, float weight,
2020-05-27 15:26:25 +00:00
uint32_t baseExperience, const ArbUt::List<uint8_t>& types,
StatisticSet<uint16_t> baseStats,
const ArbUt::List<ArbUt::BorrowedPtr<const Talent>>& talents,
const ArbUt::List<ArbUt::BorrowedPtr<const Talent>>& secretTalents,
2020-08-17 16:23:25 +00:00
const LearnableMoves* moves, std::unordered_set<uint32_t> flags)
: SpeciesVariant(name, height, weight, baseExperience, types, baseStats, talents, secretTalents, moves,
2020-08-10 16:09:32 +00:00
std::move(flags)) {}