diff --git a/Mage.Sets/src/mage/cards/s/StitchersSupplier.java b/Mage.Sets/src/mage/cards/s/StitchersSupplier.java new file mode 100644 index 00000000000..4c91980fe62 --- /dev/null +++ b/Mage.Sets/src/mage/cards/s/StitchersSupplier.java @@ -0,0 +1,39 @@ +package mage.cards.s; + +import java.util.UUID; +import mage.MageInt; +import mage.abilities.common.EntersBattlefieldOrDiesSourceTriggeredAbility; +import mage.abilities.effects.common.PutTopCardOfLibraryIntoGraveControllerEffect; +import mage.constants.SubType; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; + +/** + * + * @author TheElk801 + */ +public final class StitchersSupplier extends CardImpl { + + public StitchersSupplier(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{B}"); + + this.subtype.add(SubType.ZOMBIE); + this.power = new MageInt(1); + this.toughness = new MageInt(1); + + // When Stitcher's Supplier enters the battlefield or dies, put the top three cards of your library into your graveyard. + this.addAbility(new EntersBattlefieldOrDiesSourceTriggeredAbility( + new PutTopCardOfLibraryIntoGraveControllerEffect(3), false) + ); + } + + public StitchersSupplier(final StitchersSupplier card) { + super(card); + } + + @Override + public StitchersSupplier copy() { + return new StitchersSupplier(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CoreSet2019.java b/Mage.Sets/src/mage/sets/CoreSet2019.java index 49a402ad8bf..b6ef0934608 100644 --- a/Mage.Sets/src/mage/sets/CoreSet2019.java +++ b/Mage.Sets/src/mage/sets/CoreSet2019.java @@ -191,6 +191,7 @@ public final class CoreSet2019 extends ExpansionSet { cards.add(new SetCardInfo("Sovereign's Bite", 120, Rarity.COMMON, mage.cards.s.SovereignsBite.class)); cards.add(new SetCardInfo("Sparktongue Dragon", 159, Rarity.COMMON, mage.cards.s.SparktongueDragon.class)); cards.add(new SetCardInfo("Star-Crowned Stag", 38, Rarity.COMMON, mage.cards.s.StarCrownedStag.class)); + cards.add(new SetCardInfo("Stitcher's Supplier", 121, Rarity.UNCOMMON, mage.cards.s.StitchersSupplier.class)); cards.add(new SetCardInfo("Strangling Spores", 122, Rarity.COMMON, mage.cards.s.StranglingSpores.class)); cards.add(new SetCardInfo("Sun Sentinel", 307, Rarity.COMMON, mage.cards.s.SunSentinel.class)); cards.add(new SetCardInfo("Sure Strike", 161, Rarity.COMMON, mage.cards.s.SureStrike.class));