diff --git a/Mage.Sets/src/mage/cards/h/HowToKeepAnIzzetMageBusy.java b/Mage.Sets/src/mage/cards/h/HowToKeepAnIzzetMageBusy.java new file mode 100644 index 00000000000..74f631ce56f --- /dev/null +++ b/Mage.Sets/src/mage/cards/h/HowToKeepAnIzzetMageBusy.java @@ -0,0 +1,31 @@ + +package mage.cards.h; + +import mage.abilities.effects.common.ReturnToHandSourceEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; + +import java.util.UUID; + +/** + * @author Susucr + */ +public final class HowToKeepAnIzzetMageBusy extends CardImpl { + + public HowToKeepAnIzzetMageBusy(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{U/R}"); + + // Return How to Keep an Izzet Mage Busy to its owner's hand. + this.getSpellAbility().addEffect(new ReturnToHandSourceEffect()); + } + + private HowToKeepAnIzzetMageBusy(final HowToKeepAnIzzetMageBusy card) { + super(card); + } + + @Override + public HowToKeepAnIzzetMageBusy copy() { + return new HowToKeepAnIzzetMageBusy(this); + } +} diff --git a/Mage.Sets/src/mage/sets/MysteryBoosterPlaytest.java b/Mage.Sets/src/mage/sets/MysteryBoosterPlaytest.java index 7242f375f3a..ab062950d22 100644 --- a/Mage.Sets/src/mage/sets/MysteryBoosterPlaytest.java +++ b/Mage.Sets/src/mage/sets/MysteryBoosterPlaytest.java @@ -23,6 +23,7 @@ public class MysteryBoosterPlaytest extends ExpansionSet { this.hasBoosters = false; this.hasBasicLands = false; + cards.add(new SetCardInfo("How to Keep an Izzet Mage Busy", 93, Rarity.RARE, mage.cards.h.HowToKeepAnIzzetMageBusy.class)); cards.add(new SetCardInfo("Slivdrazi Monstrosity", 102, Rarity.RARE, mage.cards.s.SlivdraziMonstrosity.class)); }