Examples of MoveBlock


Examples of org.jpokemon.pokemon.move.MoveBlock

public class Pokemon {
  public static final String XML_NODE_NAME = "pokemon";

  public Pokemon(int num) {
    _number = num;
    _moves = new MoveBlock(_number);
    _species = PokemonInfo.get(_number);
    _stats = new StatBlock(_species);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.