Package org.jpokemon.pokemon.stat

Examples of org.jpokemon.pokemon.stat.StatBlock


  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.stat.StatBlock

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.