Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions Mage.Sets/src/mage/cards/e/EliteInterceptor.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
package mage.cards.e;

import java.util.UUID;
import mage.MageInt;
import mage.abilities.common.EntersPreparedAbility;
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
import mage.abilities.effects.common.MayTapOrUntapTargetEffect;
import mage.constants.SubType;
import mage.target.common.TargetCreaturePermanent;
import mage.cards.CardSetInfo;
import mage.cards.PrepareCard;
import mage.constants.CardType;

/**
*
* @author muz
*/
public final class EliteInterceptor extends PrepareCard {

public EliteInterceptor(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}", "Rejoinder", new CardType[]{CardType.SORCERY}, "{1}{W}");

this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.WIZARD);
this.power = new MageInt(1);
this.toughness = new MageInt(2);

// This creature enters prepared.
this.addAbility(new EntersPreparedAbility());

// Rejoinder
// Sorcery {1}{W}
// You may tap or untap target creature.
// Draw a card.
this.getSpellCard().getSpellAbility().addEffect(new MayTapOrUntapTargetEffect());
this.getSpellCard().getSpellAbility().addTarget(new TargetCreaturePermanent());
this.getSpellCard().getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1).concatBy("<br>"));
}

private EliteInterceptor(final EliteInterceptor card) {
super(card);
}

@Override
public EliteInterceptor copy() {
return new EliteInterceptor(this);
}
}
1 change: 1 addition & 0 deletions Mage.Sets/src/mage/sets/SecretsOfStrixhaven.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ private SecretsOfStrixhaven() {
cards.add(new SetCardInfo("Echocasting Symposium", 44, Rarity.MYTHIC, mage.cards.e.EchocastingSymposium.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Efflorescence", 144, Rarity.COMMON, mage.cards.e.Efflorescence.class));
cards.add(new SetCardInfo("Elemental Mascot", 185, Rarity.COMMON, mage.cards.e.ElementalMascot.class));
cards.add(new SetCardInfo("Elite Interceptor", 12, Rarity.COMMON, mage.cards.e.EliteInterceptor.class));
cards.add(new SetCardInfo("Embrace the Paradox", 186, Rarity.COMMON, mage.cards.e.EmbraceTheParadox.class));
cards.add(new SetCardInfo("Emeritus of Abundance", 145, Rarity.MYTHIC, mage.cards.e.EmeritusOfAbundance.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Emeritus of Abundance", 339, Rarity.MYTHIC, mage.cards.e.EmeritusOfAbundance.class, NON_FULL_USE_VARIOUS));
Expand Down
Loading