use of eidolons.ability.effects.oneshot.attack.force.ForceEffect in project Eidolons by IDemiurge.
the class ForceRule method getForceEffects.
private static Effect getForceEffects(DC_ActiveObj action) {
String force = String.valueOf(getForce(action));
KnockdownEffect e = new KnockdownEffect(force);
// PushEffect e1 = new PushEffect(force);
// InterruptionEffect e2 = new InterruptionEffect(force);
Effects effects = new Effects();
// if ()
// effects.add(e);
effects.add(new ForceEffect(force, action.isAttackAny()));
return effects;
}
Aggregations