YAPOG  0.0.1
Yet Another Pokemon Online Game
Pokemon.cpp
Go to the documentation of this file.
2 
3 #include "Pokemon/Pokemon.hpp"
4 
5 namespace yse
6 {
7  Pokemon::Pokemon (const yap::ID& staticID)
8  : yap::Pokemon (staticID)
9  {
10  }
11 
13  const yap::ID& staticID,
14  const yap::UInt16& level,
15  const bool& shiny)
16  : yap::Pokemon (staticID, level, shiny)
17  {
18  }
19 
21  const yap::ID& uniqueID,
22  const yap::ID& staticID,
23  const yap::String& trainerName,
24  const yap::String& nickname,
25  const yap::PokemonStat& stats,
26  const yap::Gender& gender,
27  const yap::PokemonStatus& status,
28  const bool shiny,
29  const yap::Int16& loyalty,
30  const yap::PokemonMoveSet& moveSet,
31  const yap::ID& natureID,
32  const yap::uint& exp,
33  const yap::UInt8& boxNumber,
34  const yap::ID& boxIndex,
35  const yap::String& catchDate)
36  : yap::Pokemon (
37  uniqueID,
38  staticID,
39  trainerName,
40  nickname,
41  stats,
42  gender,
43  status,
44  shiny,
45  loyalty,
46  moveSet,
47  natureID,
48  exp,
49  boxNumber,
50  boxIndex,
51  catchDate)
52  {
53  }
54 
56  {
57  }
58 
59 } // namespace yse