mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
parent
32002101ad
commit
4e665d8992
1 changed files with 3 additions and 2 deletions
|
@ -14,6 +14,7 @@ import mage.constants.SubType;
|
|||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.common.FilterCreatureCard;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
import mage.game.permanent.token.MyrToken;
|
||||
import mage.target.common.TargetCardInLibrary;
|
||||
import mage.target.common.TargetControlledPermanent;
|
||||
|
@ -25,12 +26,12 @@ import mage.target.common.TargetControlledPermanent;
|
|||
public final class MyrTurbine extends CardImpl {
|
||||
|
||||
private static final FilterCreatureCard filterCard = new FilterCreatureCard("Myr creature card");
|
||||
private static final FilterControlledPermanent filterMyr = new FilterControlledPermanent("Myr you control");
|
||||
private static final FilterControlledPermanent filterMyr = new FilterControlledPermanent("untapped Myr you control");
|
||||
|
||||
static {
|
||||
filterCard.add(SubType.MYR.getPredicate());
|
||||
filterMyr.add(TappedPredicate.UNTAPPED);
|
||||
filterMyr.add(SubType.MYR.getPredicate());
|
||||
|
||||
}
|
||||
|
||||
public MyrTurbine(UUID ownerId, CardSetInfo setInfo) {
|
||||
|
|
Loading…
Reference in a new issue