mirror of
https://github.com/magefree/mage.git
synced 2025-12-29 23:12:10 -08:00
[FDN] Implement Stab
This commit is contained in:
parent
4c781e01c7
commit
10bdba0a68
2 changed files with 33 additions and 0 deletions
32
Mage.Sets/src/mage/cards/s/Stab.java
Normal file
32
Mage.Sets/src/mage/cards/s/Stab.java
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Stab extends CardImpl {
|
||||
|
||||
public Stab(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{B}");
|
||||
|
||||
// Target creature gets -2/-2 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(-2, -2));
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private Stab(final Stab card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Stab copy() {
|
||||
return new Stab(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -401,6 +401,7 @@ public final class Foundations extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Sphinx of the Final Word", 597, Rarity.MYTHIC, mage.cards.s.SphinxOfTheFinalWord.class));
|
||||
cards.add(new SetCardInfo("Spitfire Lagac", 208, Rarity.COMMON, mage.cards.s.SpitfireLagac.class));
|
||||
cards.add(new SetCardInfo("Springbloom Druid", 646, Rarity.COMMON, mage.cards.s.SpringbloomDruid.class));
|
||||
cards.add(new SetCardInfo("Stab", 71, Rarity.COMMON, mage.cards.s.Stab.class));
|
||||
cards.add(new SetCardInfo("Starlight Snare", 514, Rarity.COMMON, mage.cards.s.StarlightSnare.class));
|
||||
cards.add(new SetCardInfo("Stasis Snare", 581, Rarity.UNCOMMON, mage.cards.s.StasisSnare.class));
|
||||
cards.add(new SetCardInfo("Steel Hellkite", 681, Rarity.RARE, mage.cards.s.SteelHellkite.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue