Implemented Release the Dogs

This commit is contained in:
Evan Kranzler 2020-06-17 21:03:28 -04:00
parent 1ff92cbfea
commit dcae6f61e4
2 changed files with 32 additions and 0 deletions

View file

@ -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);
}
}

View file

@ -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));