fix #11660 (Rowan's Grim Search)

This commit is contained in:
xenohedron 2024-01-16 00:25:01 -05:00
parent 24bc4d95b1
commit 26fd58fa08

View file

@ -26,7 +26,7 @@ public final class RowansGrimSearch extends CardImpl {
// If this spell was bargained, look at the top four cards of your library, then put up to two of them back on top of your library in any order and the rest into your graveyard.
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
new LookLibraryAndPickControllerEffect(4, 2, PutCards.TOP_ANY, PutCards.GRAVEYARD),
new LookLibraryAndPickControllerEffect(4, 2, PutCards.TOP_ANY, PutCards.GRAVEYARD, true),
BargainedCondition.instance,
"If this spell was bargained, look at the top four cards of your library, "
+ "then put up to two of them back on top of your library in any order and the rest into your graveyard."
@ -45,4 +45,4 @@ public final class RowansGrimSearch extends CardImpl {
public RowansGrimSearch copy() {
return new RowansGrimSearch(this);
}
}
}