From ed01888cafda849cf005041db5b30d356293fedb Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Thu, 20 Jun 2019 12:51:17 -0400 Subject: [PATCH] Implemented Ferocious Pup --- Mage.Sets/src/mage/cards/f/FerociousPup.java | 38 ++++++++++++++++++++ Mage.Sets/src/mage/sets/CoreSet2020.java | 1 + 2 files changed, 39 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/f/FerociousPup.java diff --git a/Mage.Sets/src/mage/cards/f/FerociousPup.java b/Mage.Sets/src/mage/cards/f/FerociousPup.java new file mode 100644 index 0000000000..4c3fa6ac5a --- /dev/null +++ b/Mage.Sets/src/mage/cards/f/FerociousPup.java @@ -0,0 +1,38 @@ +package mage.cards.f; + +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.game.permanent.token.WolfToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class FerociousPup extends CardImpl { + + public FerociousPup(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}"); + + this.subtype.add(SubType.WOLF); + this.power = new MageInt(0); + this.toughness = new MageInt(1); + + // When Ferocious Pup enters the battlefield, create a 2/2 green Wolf creature token. + this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new WolfToken()))); + } + + private FerociousPup(final FerociousPup card) { + super(card); + } + + @Override + public FerociousPup copy() { + return new FerociousPup(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CoreSet2020.java b/Mage.Sets/src/mage/sets/CoreSet2020.java index 08e7128a14..a9ca37a829 100644 --- a/Mage.Sets/src/mage/sets/CoreSet2020.java +++ b/Mage.Sets/src/mage/sets/CoreSet2020.java @@ -54,6 +54,7 @@ public final class CoreSet2020 extends ExpansionSet { cards.add(new SetCardInfo("Dungeon Geists", 57, Rarity.RARE, mage.cards.d.DungeonGeists.class)); cards.add(new SetCardInfo("Ember Hauler", 137, Rarity.UNCOMMON, mage.cards.e.EmberHauler.class)); cards.add(new SetCardInfo("Empyrean Eagle", 208, Rarity.UNCOMMON, mage.cards.e.EmpyreanEagle.class)); + cards.add(new SetCardInfo("Ferocious Pup", 171, Rarity.COMMON, mage.cards.f.FerociousPup.class)); cards.add(new SetCardInfo("Field of the Dead", 247, Rarity.RARE, mage.cards.f.FieldOfTheDead.class)); cards.add(new SetCardInfo("Flame Sweep", 139, Rarity.UNCOMMON, mage.cards.f.FlameSweep.class)); cards.add(new SetCardInfo("Flood of Tears", 59, Rarity.RARE, mage.cards.f.FloodOfTears.class));