use of mage.abilities.common.CycleControllerTriggeredAbility in project mage by magefree.
the class CrystallineResonanceCopyApplier method createAbility.
static Ability createAbility() {
Ability ability = new CycleControllerTriggeredAbility(new CopyPermanentEffect(StaticFilters.FILTER_PERMANENT_CREATURE, new CrystallineResonanceCopyApplier(), true).setDuration(Duration.UntilYourNextTurn).setText("have {this} become a copy of another target permanent until your next turn, " + "except it has this ability"), true);
ability.addTarget(new TargetPermanent(filter));
return ability;
}
Aggregations