From 8503b4a34e8ec3f75d2a55a04f5254e43d667e5a Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sun, 14 May 2023 01:12:07 -0400 Subject: [PATCH] fix unique templates --- Mage.Sets/src/mage/cards/s/StoicFarmer.java | 2 +- Mage.Sets/src/mage/cards/v/VerdantCrescendo.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/s/StoicFarmer.java b/Mage.Sets/src/mage/cards/s/StoicFarmer.java index 11f8a35e49..364f78fdef 100644 --- a/Mage.Sets/src/mage/cards/s/StoicFarmer.java +++ b/Mage.Sets/src/mage/cards/s/StoicFarmer.java @@ -45,7 +45,7 @@ public final class StoicFarmer extends CardImpl { this.addAbility(new EntersBattlefieldTriggeredAbility( new ConditionalOneShotEffect( new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter), true), - new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), false), + new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true), condition, "search your library for a basic Plains card and reveal it. " + "If an opponent controls more lands than you, put it onto the battlefield tapped. " + "Otherwise put it into your hand. Then shuffle" diff --git a/Mage.Sets/src/mage/cards/v/VerdantCrescendo.java b/Mage.Sets/src/mage/cards/v/VerdantCrescendo.java index 7efbe4f33c..c017f33839 100644 --- a/Mage.Sets/src/mage/cards/v/VerdantCrescendo.java +++ b/Mage.Sets/src/mage/cards/v/VerdantCrescendo.java @@ -29,7 +29,8 @@ public final class VerdantCrescendo extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{G}"); // Search your library for a basic land card and put it onto the battlefield tapped. - this.getSpellAbility().addEffect(new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(StaticFilters.FILTER_CARD_BASIC_LAND), true)); + this.getSpellAbility().addEffect(new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(StaticFilters.FILTER_CARD_BASIC_LAND), true) + .setText("search your library for a basic land card and put it onto the battlefield tapped")); // Search your library and graveyard for a card named Nissa, Nature's Artisan, reveal it, and put it into your hand. Then shuffle your library. this.getSpellAbility().addEffect(new SearchLibraryGraveyardPutInHandEffect(filter, true));