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); }
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; }