mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Implemented Dreamstalker Manticore
This commit is contained in:
parent
60a850664a
commit
92ea80eaf0
2 changed files with 44 additions and 0 deletions
43
Mage.Sets/src/mage/cards/d/DreamstalkerManticore.java
Normal file
43
Mage.Sets/src/mage/cards/d/DreamstalkerManticore.java
Normal file
|
@ -0,0 +1,43 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.FirstSpellOpponentsTurnTriggeredAbility;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.target.common.TargetAnyTarget;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class DreamstalkerManticore extends CardImpl {
|
||||
|
||||
public DreamstalkerManticore(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{2}{R}");
|
||||
|
||||
this.subtype.add(SubType.MANTICORE);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Whenever you cast your first spell during each opponent's turn, Dreamstalker Manticore deals 1 damage to any target.
|
||||
Ability ability = new FirstSpellOpponentsTurnTriggeredAbility(
|
||||
new DamageTargetEffect(1, "it"), false
|
||||
);
|
||||
ability.addTarget(new TargetAnyTarget());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private DreamstalkerManticore(final DreamstalkerManticore card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DreamstalkerManticore copy() {
|
||||
return new DreamstalkerManticore(this);
|
||||
}
|
||||
}
|
|
@ -61,6 +61,7 @@ public final class TherosBeyondDeath extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Drag to the Underworld", 89, Rarity.UNCOMMON, mage.cards.d.DragToTheUnderworld.class));
|
||||
cards.add(new SetCardInfo("Dream Trawler", 214, Rarity.RARE, mage.cards.d.DreamTrawler.class));
|
||||
cards.add(new SetCardInfo("Dreamshaper Shaman", 130, Rarity.UNCOMMON, mage.cards.d.DreamshaperShaman.class));
|
||||
cards.add(new SetCardInfo("Dreamstalker Manticore", 131, Rarity.UNCOMMON, mage.cards.d.DreamstalkerManticore.class));
|
||||
cards.add(new SetCardInfo("Dryad of the Ilysian Grove", 169, Rarity.RARE, mage.cards.d.DryadOfTheIlysianGrove.class));
|
||||
cards.add(new SetCardInfo("Eat to Extinction", 90, Rarity.RARE, mage.cards.e.EatToExtinction.class));
|
||||
cards.add(new SetCardInfo("Eidolon of Inspiration", 271, Rarity.UNCOMMON, mage.cards.e.EidolonOfInspiration.class));
|
||||
|
|
Loading…
Reference in a new issue