Guest User

Untitled

a guest
Mar 18th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. System.out.print("Type in the pokedex number of the pokemon:");
  2. int answer = Integer.parseInt(reader.nextLine());
  3. if (answer == 1){
  4. System.out.println(
  5. "nPokemon: " + Bulbasaur.getname() +
  6. "nType: " + Bulbasaur.getthing_about() +
  7. "nHealth: " + Bulbasaur.gethp() +
  8. "nAttack: " + Bulbasaur.getattack() +
  9. "nDefense: " + Bulbasaur.getdefense() +
  10. "nSpecial attack: " + Bulbasaur.getspattack() +
  11. "nSpecial defense: " + Bulbasaur.getspdefense()+
  12. "nSpeed: " + Bulbasaur.getspeed() +
  13. "nTotal: " + Bulbasaur.gettotal());
  14. }
Add Comment
Please, Sign In to add comment