Examples of switchIn()


Examples of org.pokenet.server.battle.mechanics.moves.PokemonMove.switchIn()

    for (int i = 0; i < m_move.length; ++i) {
      MoveListEntry entry = m_move[i];
      if (entry != null) {
        PokemonMove move = entry.getMove();
        if (move != null) {
          move.switchIn(this);
        }
      }
    }
    // Inform status effects.
    int size = m_statuses.size();
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.