forked from External/mage
35 lines
907 B
Java
35 lines
907 B
Java
|
|
package mage.cards.f;
|
|
|
|
import mage.abilities.effects.common.ExileTargetEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.filter.StaticFilters;
|
|
import mage.target.TargetPermanent;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public final class FateForgotten extends CardImpl {
|
|
|
|
public FateForgotten(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{2}{W}");
|
|
|
|
// Exile target artifact or enchantment.
|
|
this.getSpellAbility().addEffect(new ExileTargetEffect());
|
|
this.getSpellAbility().addTarget(new TargetPermanent(StaticFilters.FILTER_PERMANENT_ARTIFACT_OR_ENCHANTMENT));
|
|
}
|
|
|
|
public FateForgotten(final FateForgotten card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public FateForgotten copy() {
|
|
return new FateForgotten(this);
|
|
}
|
|
}
|