Пример #1
0
 public PotionDeForce(int Id, string nom, string description, int Cout, int Quantite) : base()
 {
     this.Id          = Id;
     this.Nom         = nom;
     this.Description = description;
     this.Cout        = Cout;
     this.Quantite    = Quantite;
     Effets.Add(force);
 }
Пример #2
0
 public Sphere(int Id, string nom, string description, int Cout, int Quantite) : base()
 {
     this.Id          = Id;
     this.Nom         = nom;
     this.Description = description;
     this.Cout        = Cout;
     this.Quantite    = Quantite;
     Effets.Add(capture);
 }