public int getBadges(Trainer trainer) { return(this.badges); }
public int getCount(Trainer trainer) { return(this.countUsed); }
public Trainer AddPokemonToTrainer(Trainer trainer, Pokemon pokemon) { this.countUsed++; trainer.pokemons.Add(pokemon); return(trainer); }