diff --git a/Mage.Sets/src/mage/cards/u/UrenisRebuff.java b/Mage.Sets/src/mage/cards/u/UrenisRebuff.java new file mode 100644 index 00000000000..b426d4f7ff3 --- /dev/null +++ b/Mage.Sets/src/mage/cards/u/UrenisRebuff.java @@ -0,0 +1,36 @@ +package mage.cards.u; + +import mage.abilities.effects.common.ReturnToHandTargetEffect; +import mage.abilities.keyword.HarmonizeAbility; +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 UrenisRebuff extends CardImpl { + + public UrenisRebuff(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{U}"); + + // Return target creature to its owner's hand. + this.getSpellAbility().addEffect(new ReturnToHandTargetEffect()); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + + // Harmonize {5}{U} + this.addAbility(new HarmonizeAbility(this, "{5}{U}")); + } + + private UrenisRebuff(final UrenisRebuff card) { + super(card); + } + + @Override + public UrenisRebuff copy() { + return new UrenisRebuff(this); + } +} diff --git a/Mage.Sets/src/mage/sets/TarkirDragonstorm.java b/Mage.Sets/src/mage/sets/TarkirDragonstorm.java index 7779c40d633..0f1ceed84f4 100644 --- a/Mage.Sets/src/mage/sets/TarkirDragonstorm.java +++ b/Mage.Sets/src/mage/sets/TarkirDragonstorm.java @@ -119,6 +119,7 @@ public final class TarkirDragonstorm extends ExpansionSet { cards.add(new SetCardInfo("Undergrowth Leopard", 165, Rarity.COMMON, mage.cards.u.UndergrowthLeopard.class)); cards.add(new SetCardInfo("United Battlefront", 32, Rarity.RARE, mage.cards.u.UnitedBattlefront.class)); cards.add(new SetCardInfo("Unrooted Ancestor", 96, Rarity.UNCOMMON, mage.cards.u.UnrootedAncestor.class)); + cards.add(new SetCardInfo("Ureni's Rebuff", 63, Rarity.UNCOMMON, mage.cards.u.UrenisRebuff.class)); cards.add(new SetCardInfo("Venerated Stormsinger", 97, Rarity.UNCOMMON, mage.cards.v.VeneratedStormsinger.class)); cards.add(new SetCardInfo("Voice of Victory", 33, Rarity.RARE, mage.cards.v.VoiceOfVictory.class)); cards.add(new SetCardInfo("Watcher of the Wayside", 249, Rarity.COMMON, mage.cards.w.WatcherOfTheWayside.class));