diff --git a/Mage.Sets/src/mage/cards/r/ReleaseTheDogs.java b/Mage.Sets/src/mage/cards/r/ReleaseTheDogs.java new file mode 100644 index 00000000000..6e7e8dc8b94 --- /dev/null +++ b/Mage.Sets/src/mage/cards/r/ReleaseTheDogs.java @@ -0,0 +1,31 @@ +package mage.cards.r; + +import mage.abilities.effects.common.CreateTokenEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.game.permanent.token.WhiteDogToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class ReleaseTheDogs extends CardImpl { + + public ReleaseTheDogs(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{W}"); + + // Create four 1/1 white Dog creature tokens. + this.getSpellAbility().addEffect(new CreateTokenEffect(new WhiteDogToken(), 4)); + } + + private ReleaseTheDogs(final ReleaseTheDogs card) { + super(card); + } + + @Override + public ReleaseTheDogs copy() { + return new ReleaseTheDogs(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Jumpstart.java b/Mage.Sets/src/mage/sets/Jumpstart.java index ce2c7fe640a..ad02a8e2ccd 100644 --- a/Mage.Sets/src/mage/sets/Jumpstart.java +++ b/Mage.Sets/src/mage/sets/Jumpstart.java @@ -63,6 +63,7 @@ public final class Jumpstart extends ExpansionSet { cards.add(new SetCardInfo("Pyroclastic Elemental", 356, Rarity.UNCOMMON, mage.cards.p.PyroclasticElemental.class)); cards.add(new SetCardInfo("Raging Regisaur", 455, Rarity.UNCOMMON, mage.cards.r.RagingRegisaur.class)); cards.add(new SetCardInfo("Reanimate", 270, Rarity.RARE, mage.cards.r.Reanimate.class)); + cards.add(new SetCardInfo("Release the Dogs", 4, Rarity.UNCOMMON, mage.cards.r.ReleaseTheDogs.class)); cards.add(new SetCardInfo("Rupture Spire", 495, Rarity.COMMON, mage.cards.r.RuptureSpire.class)); cards.add(new SetCardInfo("Settle the Score", 276, Rarity.UNCOMMON, mage.cards.s.SettleTheScore.class)); cards.add(new SetCardInfo("Shambling Goblin", 277, Rarity.COMMON, mage.cards.s.ShamblingGoblin.class));