mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[WOE] Implement Rimefur Reindeer
This commit is contained in:
parent
8de2a65682
commit
c63e698358
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/r/RimefurReindeer.java
Normal file
41
Mage.Sets/src/mage/cards/r/RimefurReindeer.java
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.abilityword.ConstellationAbility;
|
||||
import mage.abilities.effects.common.TapTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.target.common.TargetOpponentsCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RimefurReindeer extends CardImpl {
|
||||
|
||||
public RimefurReindeer(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||
|
||||
this.subtype.add(SubType.ELK);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Whenever an enchantment enters the battlefield under your control, tap target creature an opponent controls.
|
||||
Ability ability = new ConstellationAbility(new TapTargetEffect());
|
||||
ability.addTarget(new TargetOpponentsCreaturePermanent());
|
||||
this.addAbility(ability.setAbilityWord(null));
|
||||
}
|
||||
|
||||
private RimefurReindeer(final RimefurReindeer card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RimefurReindeer copy() {
|
||||
return new RimefurReindeer(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -155,6 +155,7 @@ public final class WildsOfEldraine extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Restless Vinestalk", 261, Rarity.RARE, mage.cards.r.RestlessVinestalk.class));
|
||||
cards.add(new SetCardInfo("Return Triumphant", 26, Rarity.COMMON, mage.cards.r.ReturnTriumphant.class));
|
||||
cards.add(new SetCardInfo("Return from the Wilds", 181, Rarity.COMMON, mage.cards.r.ReturnFromTheWilds.class));
|
||||
cards.add(new SetCardInfo("Rimefur Reindeer", 27, Rarity.COMMON, mage.cards.r.RimefurReindeer.class));
|
||||
cards.add(new SetCardInfo("Rootrider Faun", 182, Rarity.COMMON, mage.cards.r.RootriderFaun.class));
|
||||
cards.add(new SetCardInfo("Rotisserie Elemental", 148, Rarity.RARE, mage.cards.r.RotisserieElemental.class));
|
||||
cards.add(new SetCardInfo("Rowan's Grim Search", 104, Rarity.COMMON, mage.cards.r.RowansGrimSearch.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue