var Pokemon = function Pokemon(name , type1 , type2 , height , weight) {
   this.name = name;
   this.type1 = type1;
   this.type2 = type2;
   this.height = height;
   this.weight = weight;
  }

  Pokemon.prototype.whichPoke = function whichPoke() {
   console.log("Hey, I am " + this.name);
  }
  Pokemon.prototype.whichType1 = function whichType1() {
   console.log("Hey, I am " + this.type1);
  }
  Pokemon.prototype.whichType2 = function whichType2() {
   console.log ("Hey, I am " + this.type2);
  }
  Pokemon.prototype.whichHeight = function whichHeight() {
   console.log ("Hey, I am " + this.height + " inches tall");
  }
  Pokemon.prototype.whichWeight = function whichWeight() {
   console.log ("Hey, I am " + this.weight + " pounds")
  }

  var Horsea = new Pokemon("Horsea", "Water", "none", "16", "17.6");
  var Seadra = new Pokemon("Seadra", "Water", "none", "47", "55.1");
  var Kingdra = new Pokemon("Kingdra", "Water", "Dragon", "71", "335.1");