Exemple #1
0
 public Dresseur(int level, string name = "", string firstName = "", int age = 18, int experience = 100, int money = 5000) : base(name, level, experience)
 {
     FirstName    = firstName;
     Age          = age;
     Money        = money;
     Guide        = new GuidePourDebloquerPokemons(level);
     Depot        = new DepotPokemons(level);
     Statistiques = new Statistiques(money, 1);
     Invitations  = new List <Invitation>();
 }
Exemple #2
0
 public Dresseur()
 {
     Depot       = new DepotPokemons();
     Invitations = new List <Invitation>();
 }