diff --git a/Mage.Sets/src/mage/cards/u/UrzasRebuff.java b/Mage.Sets/src/mage/cards/u/UrzasRebuff.java new file mode 100644 index 0000000000..3d59d10c7c --- /dev/null +++ b/Mage.Sets/src/mage/cards/u/UrzasRebuff.java @@ -0,0 +1,39 @@ +package mage.cards.u; + +import mage.abilities.Mode; +import mage.abilities.effects.common.CounterTargetEffect; +import mage.abilities.effects.common.TapTargetEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.target.TargetSpell; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class UrzasRebuff extends CardImpl { + + public UrzasRebuff(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}{U}"); + + // Choose one -- + // * Counter target spell. + this.getSpellAbility().addEffect(new CounterTargetEffect()); + this.getSpellAbility().addTarget(new TargetSpell()); + + // * Tap up to two target creatures. + this.getSpellAbility().addMode(new Mode(new TapTargetEffect()).addTarget(new TargetCreaturePermanent(0, 2))); + } + + private UrzasRebuff(final UrzasRebuff card) { + super(card); + } + + @Override + public UrzasRebuff copy() { + return new UrzasRebuff(this); + } +} diff --git a/Mage.Sets/src/mage/sets/TheBrothersWar.java b/Mage.Sets/src/mage/sets/TheBrothersWar.java index 43c05564dc..e8c3ba95ce 100644 --- a/Mage.Sets/src/mage/sets/TheBrothersWar.java +++ b/Mage.Sets/src/mage/sets/TheBrothersWar.java @@ -113,6 +113,7 @@ public final class TheBrothersWar extends ExpansionSet { cards.add(new SetCardInfo("Tyrant of Kher Ridges", 154, Rarity.RARE, mage.cards.t.TyrantOfKherRidges.class)); cards.add(new SetCardInfo("Underground River", 267, Rarity.RARE, mage.cards.u.UndergroundRiver.class)); cards.add(new SetCardInfo("Urza's Command", 70, Rarity.RARE, mage.cards.u.UrzasCommand.class)); + cards.add(new SetCardInfo("Urza's Rebuff", 71, Rarity.COMMON, mage.cards.u.UrzasRebuff.class)); cards.add(new SetCardInfo("Urza's Sylex", 40, Rarity.MYTHIC, mage.cards.u.UrzasSylex.class)); cards.add(new SetCardInfo("Urza, Lord Protector", 225, Rarity.MYTHIC, mage.cards.u.UrzaLordProtector.class)); cards.add(new SetCardInfo("Urza, Planeswalker", "238b", Rarity.MYTHIC, mage.cards.u.UrzaPlaneswalker.class));