mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
Implemented Release the Dogs
This commit is contained in:
parent
1ff92cbfea
commit
dcae6f61e4
2 changed files with 32 additions and 0 deletions
31
Mage.Sets/src/mage/cards/r/ReleaseTheDogs.java
Normal file
31
Mage.Sets/src/mage/cards/r/ReleaseTheDogs.java
Normal 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);
|
||||
}
|
||||
}
|
||||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue