#include "pokemon.h" //get the interface
#include <iostream>

Pokemon::~Pokemon(){
}
PokemonSport::PokemonSport(string nom, float poids, int nb_membres, int taille, int freq){
  this->nom=nom;
  this->poids=poids;
  this->nb_membres=nb_membres;
  this->taille=taille;
  this->freq=freq;
}

int PokemonSport::vitesse(){
  return (nb_membres*taille*3);
}
