mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
some requested fixes
This commit is contained in:
parent
371bde4500
commit
619a1d1407
2 changed files with 4 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||
import mage.filter.predicate.permanent.TokenPredicate;
|
||||
|
||||
import java.util.UUID;
|
||||
|
|
@ -21,6 +22,7 @@ public final class MetastaticEvangel extends CardImpl {
|
|||
private static final FilterPermanent filter = new FilterCreaturePermanent("another nontoken creature");
|
||||
|
||||
static {
|
||||
filter.add(AnotherPredicate.instance);
|
||||
filter.add(TokenPredicate.FALSE);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ import mage.constants.*;
|
|||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.FilterSpell;
|
||||
import mage.filter.common.FilterNonlandPermanent;
|
||||
import mage.filter.predicate.mageobject.ColorlessPredicate;
|
||||
import mage.filter.predicate.mageobject.ManaValuePredicate;
|
||||
import mage.target.TargetPermanent;
|
||||
|
||||
|
|
@ -28,6 +29,7 @@ public final class UginsBinding extends CardImpl {
|
|||
|
||||
static {
|
||||
filter.add(TargetController.NOT_YOU.getControllerPredicate());
|
||||
filter2.add(ColorlessPredicate.instance);
|
||||
filter2.add(new ManaValuePredicate(ComparisonType.MORE_THAN, 6));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue