The constructor for Pokemon takes four parameters. "Timburr, #532, Fighting," is only a single value, a string of characters. The compiler doesn't know how to interpret this as four values. You have to pass the values as the function expects them:
Pokemon timburr("Timburr", 532, Fighting, /*I don't what goes here*/);