* Sphinx Summoner - Fixed that the searched card was not revealed.

This commit is contained in:
LevelX2 2015-06-08 22:02:46 +02:00
parent f4f3083238
commit 256b93ffd8

View file

@ -45,6 +45,7 @@ import mage.target.common.TargetCardInLibrary;
* @author Loki
*/
public class SphinxSummoner extends CardImpl {
private static final FilterCard filter = new FilterCard("artifact creature card");
static {
@ -62,7 +63,7 @@ public class SphinxSummoner extends CardImpl {
// Flying
this.addAbility(FlyingAbility.getInstance());
// When Sphinx Summoner enters the battlefield, you may search your library for an artifact creature card, reveal it, and put it into your hand. If you do, shuffle your library.
this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter)), true));
this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true, false), true));
}
public SphinxSummoner(final SphinxSummoner card) {