hikipedia

Charizard.java

Nov 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package Pokedex;
  2.  
  3. public class Charizard extends Charmeleon {
  4.     public Charizard(){
  5.         this.setName("Charizard");
  6.         this.setType("Fire/Flying");
  7.         this.setMovePool("Fire Blast");
  8.     }
  9.     public void fly(){
  10.         System.out.println("I believe I can fly");
  11.     }
  12. }
Add Comment
Please, Sign In to add comment