mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
* Sphinx Summoner - Fixed that the searched card was not revealed.
This commit is contained in:
parent
f4f3083238
commit
256b93ffd8
1 changed files with 2 additions and 1 deletions
|
|
@ -45,6 +45,7 @@ import mage.target.common.TargetCardInLibrary;
|
||||||
* @author Loki
|
* @author Loki
|
||||||
*/
|
*/
|
||||||
public class SphinxSummoner extends CardImpl {
|
public class SphinxSummoner extends CardImpl {
|
||||||
|
|
||||||
private static final FilterCard filter = new FilterCard("artifact creature card");
|
private static final FilterCard filter = new FilterCard("artifact creature card");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
|
|
@ -62,7 +63,7 @@ public class SphinxSummoner extends CardImpl {
|
||||||
// Flying
|
// Flying
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
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.
|
// 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) {
|
public SphinxSummoner(final SphinxSummoner card) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue