Examples of Berry


Examples of org.pokenet.server.battle.mechanics.statuses.items.Berry

    m_moves.add(new MoveListEntry("Bug Bite",
        new PokemonMove(PokemonType.T_BUG, 60, 1.0, 20) {
      public int use(BattleMechanics mech, Pokemon user, Pokemon target) {
        HoldItem item = target.getItem();
        if (item instanceof Berry) {
          Berry berry = (Berry)item;
          berry.executeEffects(user);
          target.setItem(null);
        }
        return super.use(mech, user, target);
      }
    }
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.