Package smack.down

Source Code of smack.down.EffectFactory

package smack.down;

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;
  }
}
TOP

Related Classes of smack.down.EffectFactory

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.