16171819202122
public Pokemon(int num) { _number = num; _moves = new MoveBlock(_number); _species = PokemonInfo.get(_number); _stats = new StatBlock(_species); }