diff --git a/Mage.Sets/src/mage/cards/p/PesteredWellguard.java b/Mage.Sets/src/mage/cards/p/PesteredWellguard.java new file mode 100644 index 00000000000..383ba82bbbd --- /dev/null +++ b/Mage.Sets/src/mage/cards/p/PesteredWellguard.java @@ -0,0 +1,39 @@ +package mage.cards.p; + +import mage.MageInt; +import mage.abilities.common.BecomesTappedSourceTriggeredAbility; +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.FaerieBlueBlackToken; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class PesteredWellguard extends CardImpl { + + public PesteredWellguard(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{U}"); + + this.subtype.add(SubType.MERFOLK); + this.subtype.add(SubType.SOLDIER); + this.power = new MageInt(3); + this.toughness = new MageInt(2); + + // Whenever this creature becomes tapped, create a 1/1 blue and black Faerie creature token with flying. + this.addAbility(new BecomesTappedSourceTriggeredAbility(new CreateTokenEffect(new FaerieBlueBlackToken()))); + } + + private PesteredWellguard(final PesteredWellguard card) { + super(card); + } + + @Override + public PesteredWellguard copy() { + return new PesteredWellguard(this); + } +} diff --git a/Mage.Sets/src/mage/sets/LorwynEclipsed.java b/Mage.Sets/src/mage/sets/LorwynEclipsed.java index 547e5c4a5c4..c98aea61a54 100644 --- a/Mage.Sets/src/mage/sets/LorwynEclipsed.java +++ b/Mage.Sets/src/mage/sets/LorwynEclipsed.java @@ -164,6 +164,7 @@ public final class LorwynEclipsed extends ExpansionSet { cards.add(new SetCardInfo("Perfect Intimidation", 115, Rarity.UNCOMMON, mage.cards.p.PerfectIntimidation.class)); cards.add(new SetCardInfo("Personify", 28, Rarity.UNCOMMON, mage.cards.p.Personify.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Personify", 402, Rarity.UNCOMMON, mage.cards.p.Personify.class, NON_FULL_USE_VARIOUS)); + cards.add(new SetCardInfo("Pestered Wellguard", 63, Rarity.UNCOMMON, mage.cards.p.PesteredWellguard.class)); cards.add(new SetCardInfo("Plains", 269, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Plains", 274, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS)); cards.add(new SetCardInfo("Plains", 279, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));