forked from External/mage
[VOW] Implemented Grisly Ritual
This commit is contained in:
parent
e4f90aca99
commit
f7360ae446
2 changed files with 36 additions and 0 deletions
35
Mage.Sets/src/mage/cards/g/GrislyRitual.java
Normal file
35
Mage.Sets/src/mage/cards/g/GrislyRitual.java
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.DestroyTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.game.permanent.token.BloodToken;
|
||||
import mage.target.common.TargetCreatureOrPlaneswalker;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GrislyRitual extends CardImpl {
|
||||
|
||||
public GrislyRitual(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{5}{B}");
|
||||
|
||||
// Destroy target creature or planeswalker. Create two Blood tokens.
|
||||
this.getSpellAbility().addEffect(new DestroyTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
|
||||
this.getSpellAbility().addEffect(new CreateTokenEffect(new BloodToken(), 2));
|
||||
}
|
||||
|
||||
private GrislyRitual(final GrislyRitual card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GrislyRitual copy() {
|
||||
return new GrislyRitual(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -114,6 +114,7 @@ public final class InnistradCrimsonVow extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Gluttonous Guest", 114, Rarity.COMMON, mage.cards.g.GluttonousGuest.class));
|
||||
cards.add(new SetCardInfo("Gnarled Grovestrider", 198, Rarity.UNCOMMON, mage.cards.g.GnarledGrovestrider.class));
|
||||
cards.add(new SetCardInfo("Graf Reaver", 115, Rarity.RARE, mage.cards.g.GrafReaver.class));
|
||||
cards.add(new SetCardInfo("Grisly Ritual", 116, Rarity.COMMON, mage.cards.g.GrislyRitual.class));
|
||||
cards.add(new SetCardInfo("Grolnok, the Omnivore", 238, Rarity.RARE, mage.cards.g.GrolnokTheOmnivore.class));
|
||||
cards.add(new SetCardInfo("Groom's Finery", 117, Rarity.UNCOMMON, mage.cards.g.GroomsFinery.class));
|
||||
cards.add(new SetCardInfo("Gryff Rider", 15, Rarity.COMMON, mage.cards.g.GryffRider.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue