Package org.jpokemon.pokemon.move

Examples of org.jpokemon.pokemon.move.MoveStyle


  public String name() {
    return _type.name();
  }

  public double damageModifier(Move m) {
    MoveStyle style = m.style();

    if (_type == SlotEffectType.INVULERNABLE)
      return 0;
    if (style == MoveStyle.PHYSICAL && _type == SlotEffectType.PHYSICAL_SHIELD)
      return 0;
View Full Code Here

TOP

Related Classes of org.jpokemon.pokemon.move.MoveStyle

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.