mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[SNC] Implemented Make Disappear
This commit is contained in:
parent
1ac7eab68d
commit
92ef1af611
3 changed files with 39 additions and 0 deletions
37
Mage.Sets/src/mage/cards/m/MakeDisappear.java
Normal file
37
Mage.Sets/src/mage/cards/m/MakeDisappear.java
Normal file
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.m;
|
||||
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.common.CounterUnlessPaysEffect;
|
||||
import mage.abilities.keyword.CasualtyAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.TargetSpell;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MakeDisappear extends CardImpl {
|
||||
|
||||
public MakeDisappear(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}");
|
||||
|
||||
// Casualty 1
|
||||
this.addAbility(new CasualtyAbility(this, 1));
|
||||
|
||||
// Counter target spell unless its controller pays {2}.
|
||||
this.getSpellAbility().addEffect(new CounterUnlessPaysEffect(new GenericManaCost(2)));
|
||||
this.getSpellAbility().addTarget(new TargetSpell());
|
||||
}
|
||||
|
||||
private MakeDisappear(final MakeDisappear card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MakeDisappear copy() {
|
||||
return new MakeDisappear(this);
|
||||
}
|
||||
}
|
|
@ -51,6 +51,7 @@ public final class StreetsOfNewCapenna extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Maestros Diabolist", 200, Rarity.RARE, mage.cards.m.MaestrosDiabolist.class));
|
||||
cards.add(new SetCardInfo("Maestros Initiate", 86, Rarity.COMMON, mage.cards.m.MaestrosInitiate.class));
|
||||
cards.add(new SetCardInfo("Maestros Theater", 251, Rarity.COMMON, mage.cards.m.MaestrosTheater.class));
|
||||
cards.add(new SetCardInfo("Make Disappear", 49, Rarity.COMMON, mage.cards.m.MakeDisappear.class));
|
||||
cards.add(new SetCardInfo("Mountain", 268, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Murder", 88, Rarity.COMMON, mage.cards.m.Murder.class));
|
||||
cards.add(new SetCardInfo("Nimble Larcenist", 321, Rarity.UNCOMMON, mage.cards.n.NimbleLarcenist.class));
|
||||
|
|
|
@ -43923,6 +43923,7 @@ Mysterious Limousine|Streets of New Capenna|22|R|{3}{W}{W}|Artifact - Vehicle|4|
|
|||
Rumor Gatherer|Streets of New Capenna|29|U|{1}{W}{W}|Creature - Elf Wizard|2|1|Alliance — Whenever another creature enters the battlefield under your control, scry 1. If this is the second time this ability has resolved this turn, draw a card instead.|
|
||||
Ledger Shredder|Streets of New Capenna|46|R|{1}{U}|Creature - Bird Advisor|1|3|Flying$Whenever a player casts their second spell each turn, Ledger Shredder connives.|
|
||||
A Little Chat|Streets of New Capenna|47|U|{1}{U}|Instant|||Casualty 1$Look at the top two cards of your library. Put one of them into your hand and the other on the bottom of your library.|
|
||||
Make Disappear|Streets of New Capenna|49|C|{1}{U}|Instant|||Casualty 1$Counter target spell unless its controller pays {2}.|
|
||||
An Offer You Can't Refuse|Streets of New Capenna|51|U|{U}|Instant|||Counter target noncreature spell. Its controller creates two Treasure tokens.|
|
||||
Wiretapping|Streets of New Capenna|65|R|{4}{U}|Enchantment|||Hideaway 5$Whenever you draw your first card during each of your draw steps, draw a card. Then if you have nine or more cards in hand, you may play the exiled card without paying its mana cost.|
|
||||
Cut of the Profits|Streets of New Capenna|72|R|{X}{B}{B}|Sorcery|||Casualty 3$You draw X cards and you lose X life.|
|
||||
|
|
Loading…
Reference in a new issue