Package org.pokenet.server.battle.mechanics.statuses

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


        }
      }
    }

    StatusEffect applied = (StatusEffect) eff.clone();
    applied.activate();
    applied.setInducer(source);
    if ((m_field != null) && !allowsStatus(applied, source)) return null;

    if (applied.apply(this)) {
      m_statuses.add(applied);
View Full Code Here


        }
      }
    }

    StatusEffect applied = (StatusEffect) eff.clone();
    applied.activate();

    if (applied.apply(this)) {
      m_statuses.add(applied);
      if (m_field != null) {
        m_field.informStatusApplied(this, applied);
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.