forked from External/mage
51 lines
1.7 KiB
Java
51 lines
1.7 KiB
Java
|
|
package mage.cards.g;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.common.DiscardCardCost;
|
|
import mage.abilities.costs.common.TapSourceCost;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.effects.common.search.SearchLibraryPutInHandEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Zone;
|
|
import mage.filter.StaticFilters;
|
|
import mage.target.common.TargetCardInLibrary;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public final class Greenseeker extends CardImpl {
|
|
|
|
public Greenseeker(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}");
|
|
this.subtype.add(SubType.ELF);
|
|
this.subtype.add(SubType.SPELLSHAPER);
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(1);
|
|
|
|
// {G}, {tap}, Discard a card: Search your library for a basic land card, reveal it, and put it into your hand. Then shuffle your library.
|
|
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD,
|
|
new SearchLibraryPutInHandEffect(new TargetCardInLibrary(1, 1, StaticFilters.FILTER_CARD_BASIC_LAND), true, true),
|
|
new ManaCostsImpl<>("{G}"));
|
|
ability.addCost(new TapSourceCost());
|
|
ability.addCost(new DiscardCardCost());
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
private Greenseeker(final Greenseeker card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public Greenseeker copy() {
|
|
return new Greenseeker(this);
|
|
}
|
|
}
|