forked from External/mage
61 lines
1.9 KiB
Java
61 lines
1.9 KiB
Java
package mage.cards.s;
|
|
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.common.RemoveCounterCost;
|
|
import mage.abilities.costs.common.TapSourceCost;
|
|
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.filter.FilterPermanent;
|
|
import mage.filter.common.FilterControlledPermanent;
|
|
import mage.filter.predicate.Predicates;
|
|
import mage.target.TargetPermanent;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public final class SoulDiviner extends CardImpl {
|
|
|
|
private static final FilterPermanent filter
|
|
= new FilterControlledPermanent("an artifact, creature, land, or planeswalker you control");
|
|
|
|
static {
|
|
filter.add(Predicates.or(
|
|
CardType.ARTIFACT.getPredicate(),
|
|
CardType.CREATURE.getPredicate(),
|
|
CardType.LAND.getPredicate(),
|
|
CardType.PLANESWALKER.getPredicate()
|
|
));
|
|
}
|
|
|
|
public SoulDiviner(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{U}{B}");
|
|
|
|
this.subtype.add(SubType.ZOMBIE);
|
|
this.subtype.add(SubType.WIZARD);
|
|
this.power = new MageInt(2);
|
|
this.toughness = new MageInt(3);
|
|
|
|
// {T}, Remove a counter from an artifact, creature, land, or planeswalker you control: Draw a card.
|
|
Ability ability = new SimpleActivatedAbility(
|
|
new DrawCardSourceControllerEffect(1), new TapSourceCost()
|
|
);
|
|
ability.addCost(new RemoveCounterCost(new TargetPermanent(1, 1, filter, true)));
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
private SoulDiviner(final SoulDiviner card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public SoulDiviner copy() {
|
|
return new SoulDiviner(this);
|
|
}
|
|
}
|