Package org.jpokemon.pokemon.move

Examples of org.jpokemon.pokemon.move.MoveBlock$MoveBlockIterator


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

Related Classes of org.jpokemon.pokemon.move.MoveBlock$MoveBlockIterator

Copyright © 2018 www.massapicom. 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.