Ejemplo n.º 1
0
 public TCGPokemon(string name, int pokemonNumber, string species, double height, double weight, string description, int level)
 {
     this.Name          = name;
     this.PokemonNumber = pokemonNumber;
     this.Species       = species;
     this.Height        = height;
     this.Weight        = weight;
     this.Description   = description;
     this.Level         = level;
     this.Force         = new PokemonForce(PokemonForce.Forces.Normal);
 }
Ejemplo n.º 2
0
 public TCGPokemon(string name, int pokemonNumber, string species, double height, double weight, string description, int level, PokemonForce force)
     : this(name, pokemonNumber, species, height, weight, description, level)
 {
     this.Force = force;
 }