mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
* Imperial Recruiter - Fixed that the searched cards were put wrongly to battlefield instead to hand.
This commit is contained in:
parent
c8ea8e7260
commit
5fef712202
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ package mage.sets.portalthreekingdoms;
|
|||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
|
||||
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
|
|
@ -62,7 +62,7 @@ public class ImperialRecruiter extends CardImpl<ImperialRecruiter> {
|
|||
this.toughness = new MageInt(1);
|
||||
|
||||
// When Imperial Recruiter enters the battlefield, search your library for a creature card with power 2 or less, reveal it, and put it into your hand. Then shuffle your library.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(filter), false, true)));
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true, true)));
|
||||
}
|
||||
|
||||
public ImperialRecruiter(final ImperialRecruiter card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue