Examples of MoveStyle


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