mirror of
https://github.com/correl/mage.git
synced 2024-12-27 11:07:39 +00:00
[SNC] Implemented Deal Gone Bad
This commit is contained in:
parent
b8c8102a95
commit
d77ec72bb3
2 changed files with 40 additions and 0 deletions
39
Mage.Sets/src/mage/cards/d/DealGoneBad.java
Normal file
39
Mage.Sets/src/mage/cards/d/DealGoneBad.java
Normal file
|
@ -0,0 +1,39 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import mage.abilities.effects.common.MillCardsTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.TargetPlayer;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.targetpointer.SecondTargetPointer;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DealGoneBad extends CardImpl {
|
||||
|
||||
public DealGoneBad(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{B}");
|
||||
|
||||
// Target creature gets -3/-3 until end of turn. Target player mills three cards.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(-3, -3));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
this.getSpellAbility().addEffect(new MillCardsTargetEffect(3)
|
||||
.setText("Target player mills three cards")
|
||||
.setTargetPointer(new SecondTargetPointer()));
|
||||
this.getSpellAbility().addTarget(new TargetPlayer());
|
||||
}
|
||||
|
||||
private DealGoneBad(final DealGoneBad card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DealGoneBad copy() {
|
||||
return new DealGoneBad(this);
|
||||
}
|
||||
}
|
|
@ -62,6 +62,7 @@ public final class StreetsOfNewCapenna extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Cut of the Profits", 72, Rarity.RARE, mage.cards.c.CutOfTheProfits.class));
|
||||
cards.add(new SetCardInfo("Dapper Shieldmate", 9, Rarity.COMMON, mage.cards.d.DapperShieldmate.class));
|
||||
cards.add(new SetCardInfo("Darling of the Masses", 181, Rarity.UNCOMMON, mage.cards.d.DarlingOfTheMasses.class));
|
||||
cards.add(new SetCardInfo("Deal Gone Bad", 74, Rarity.COMMON, mage.cards.d.DealGoneBad.class));
|
||||
cards.add(new SetCardInfo("Depopulate", 10, Rarity.RARE, mage.cards.d.Depopulate.class));
|
||||
cards.add(new SetCardInfo("Devilish Valet", 105, Rarity.RARE, mage.cards.d.DevilishValet.class));
|
||||
cards.add(new SetCardInfo("Dig Up the Body", 76, Rarity.COMMON, mage.cards.d.DigUpTheBody.class));
|
||||
|
|
Loading…
Reference in a new issue