diff --git a/Mage.Sets/src/mage/cards/f/FerociousWerefox.java b/Mage.Sets/src/mage/cards/f/FerociousWerefox.java new file mode 100644 index 00000000000..447944da929 --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/FerociousWerefox.java @@ -0,0 +1,46 @@ +package mage.cards.f; + +import mage.MageInt; +import mage.abilities.effects.common.CreateRoleAttachedTargetEffect; +import mage.abilities.keyword.TrampleAbility; +import mage.cards.AdventureCard; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.RoleType; +import mage.constants.SubType; +import mage.target.common.TargetControlledCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class FerociousWerefox extends AdventureCard { + + public FerociousWerefox(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, new CardType[]{CardType.INSTANT}, "{3}{G}", "Guard Change", "{1}{G}"); + + this.subtype.add(SubType.ELF); + this.subtype.add(SubType.FOX); + this.subtype.add(SubType.WARRIOR); + this.power = new MageInt(4); + this.toughness = new MageInt(3); + + // Trample + this.addAbility(TrampleAbility.getInstance()); + + // Guard Change + // Create a Monster Role token attached to target creature you control. + this.getSpellCard().getSpellAbility().addEffect(new CreateRoleAttachedTargetEffect(RoleType.MONSTER)); + this.getSpellCard().getSpellAbility().addTarget(new TargetControlledCreaturePermanent()); + } + + private FerociousWerefox(final FerociousWerefox card) { + super(card); + } + + @Override + public FerociousWerefox copy() { + return new FerociousWerefox(this); + } +} diff --git a/Mage.Sets/src/mage/sets/WildsOfEldraine.java b/Mage.Sets/src/mage/sets/WildsOfEldraine.java index 8af8ae88b81..b7676fa503f 100644 --- a/Mage.Sets/src/mage/sets/WildsOfEldraine.java +++ b/Mage.Sets/src/mage/sets/WildsOfEldraine.java @@ -78,6 +78,7 @@ public final class WildsOfEldraine extends ExpansionSet { cards.add(new SetCardInfo("Faerie Fencing", 90, Rarity.UNCOMMON, mage.cards.f.FaerieFencing.class)); cards.add(new SetCardInfo("Farsight Ritual", 49, Rarity.RARE, mage.cards.f.FarsightRitual.class)); cards.add(new SetCardInfo("Faunsbane Troll", 203, Rarity.RARE, mage.cards.f.FaunsbaneTroll.class)); + cards.add(new SetCardInfo("Ferocious Werefox", 170, Rarity.COMMON, mage.cards.f.FerociousWerefox.class)); cards.add(new SetCardInfo("Flick a Coin", 128, Rarity.COMMON, mage.cards.f.FlickACoin.class)); cards.add(new SetCardInfo("Food Coma", 308, Rarity.UNCOMMON, mage.cards.f.FoodComa.class)); cards.add(new SetCardInfo("Forest", 266, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));