Package smack.down.effects

Examples of smack.down.effects.StrengthEffect


import smack.down.effects.StrengthEffect;

public class EffectFactory {
  public static Effect applyStrengthBonus(Minion minion, int amount) {
    StrengthEffect effect = new StrengthEffect(minion, amount);
    minion.addEffect(effect);
    minion.addStrengthBonus(effect.getBonus());
    return effect;
  }
View Full Code Here

TOP

Related Classes of smack.down.effects.StrengthEffect

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.