forked from External/mage
52 lines
1.7 KiB
Java
52 lines
1.7 KiB
Java
|
|
package mage.cards.s;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
|
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.ComparisonType;
|
|
import mage.constants.SubType;
|
|
import mage.filter.common.FilterInstantOrSorceryCard;
|
|
import mage.filter.predicate.mageobject.ConvertedManaCostPredicate;
|
|
import mage.target.common.TargetCardInLibrary;
|
|
|
|
/**
|
|
*
|
|
* @author TheElk801
|
|
*/
|
|
public final class Spellseeker extends CardImpl {
|
|
|
|
private static final FilterInstantOrSorceryCard filter = new FilterInstantOrSorceryCard("an instant or sorcery card with converted mana cost 2 or less");
|
|
|
|
static {
|
|
filter.add(new ConvertedManaCostPredicate(ComparisonType.FEWER_THAN, 3));
|
|
}
|
|
|
|
public Spellseeker(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U}");
|
|
|
|
this.subtype.add(SubType.HUMAN);
|
|
this.subtype.add(SubType.WIZARD);
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(1);
|
|
|
|
// When Spellseeker enters the battlefield, you may search your library for an instant or sorcery card with converted mana cost 2 or less, reveal it, put it into your hand, then shuffle your library.
|
|
this.addAbility(new EntersBattlefieldTriggeredAbility(
|
|
new SearchLibraryPutInHandEffect(new TargetCardInLibrary(filter), true, true),
|
|
true
|
|
));
|
|
}
|
|
|
|
public Spellseeker(final Spellseeker card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public Spellseeker copy() {
|
|
return new Spellseeker(this);
|
|
}
|
|
}
|