Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Pokedex;
- public class Charizard extends Charmeleon {
- public Charizard(){
- this.setName("Charizard");
- this.setType("Fire/Flying");
- this.setMovePool("Fire Blast");
- }
- public void fly(){
- System.out.println("I believe I can fly");
- }
- }
Add Comment
Please, Sign In to add comment