diff --git a/Mage.Sets/src/mage/cards/e/EagerTrufflesnout.java b/Mage.Sets/src/mage/cards/e/EagerTrufflesnout.java new file mode 100644 index 00000000000..941eb0448ac --- /dev/null +++ b/Mage.Sets/src/mage/cards/e/EagerTrufflesnout.java @@ -0,0 +1,42 @@ +package mage.cards.e; + +import mage.MageInt; +import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility; +import mage.abilities.effects.common.CreateTokenEffect; +import mage.abilities.keyword.TrampleAbility; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.constants.SubType; +import mage.game.permanent.token.FoodToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class EagerTrufflesnout extends CardImpl { + + public EagerTrufflesnout(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}"); + + this.subtype.add(SubType.BOAR); + this.power = new MageInt(4); + this.toughness = new MageInt(2); + + // Trample + this.addAbility(TrampleAbility.getInstance()); + + // Whenever this creature deals combat damage to a player, create a Food token. + this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new CreateTokenEffect(new FoodToken()))); + } + + private EagerTrufflesnout(final EagerTrufflesnout card) { + super(card); + } + + @Override + public EagerTrufflesnout copy() { + return new EagerTrufflesnout(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Foundations.java b/Mage.Sets/src/mage/sets/Foundations.java index bc11bbc8d7a..e707e748f4a 100644 --- a/Mage.Sets/src/mage/sets/Foundations.java +++ b/Mage.Sets/src/mage/sets/Foundations.java @@ -117,6 +117,7 @@ public final class Foundations extends ExpansionSet { cards.add(new SetCardInfo("Duress", 606, Rarity.COMMON, mage.cards.d.Duress.class)); cards.add(new SetCardInfo("Dwynen's Elite", 218, Rarity.COMMON, mage.cards.d.DwynensElite.class)); cards.add(new SetCardInfo("Dwynen, Gilt-Leaf Daen", 217, Rarity.UNCOMMON, mage.cards.d.DwynenGiltLeafDaen.class)); + cards.add(new SetCardInfo("Eager Trufflesnout", 102, Rarity.UNCOMMON, mage.cards.e.EagerTrufflesnout.class)); cards.add(new SetCardInfo("Eaten Alive", 172, Rarity.COMMON, mage.cards.e.EatenAlive.class)); cards.add(new SetCardInfo("Eaten by Piranhas", 507, Rarity.UNCOMMON, mage.cards.e.EatenByPiranhas.class)); cards.add(new SetCardInfo("Elspeth's Smite", 493, Rarity.UNCOMMON, mage.cards.e.ElspethsSmite.class));