Examples of informDamaged()


Examples of org.pokenet.server.battle.mechanics.statuses.StatusEffect.informDamaged()

  private void informDamaged(Pokemon source, MoveListEntry entry, int damage) {
    int size = m_statuses.size();
    for (int i = 0; i < size; ++i) {
      StatusEffect eff = m_statuses.get(i);
      if (eff.isActive() && eff.isListener()) {
        eff.informDamaged(source, this, entry, damage);
      }
    }
  }

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