* Fixed some problems with filtering nonbasic lands (e.g. Fulminator Mage).

This commit is contained in:
LevelX2 2015-02-11 12:34:56 +01:00
parent 1cef92ef7a
commit 4fe5560222
10 changed files with 22 additions and 52 deletions

View file

@ -29,7 +29,7 @@
package mage.target.common;
import mage.filter.predicate.Predicates;
import mage.filter.predicate.mageobject.SubtypePredicate;
import mage.filter.predicate.mageobject.SupertypePredicate;
/**
*
@ -38,11 +38,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
public class TargetNonBasicLandPermanent extends TargetLandPermanent {
public TargetNonBasicLandPermanent() {
filter.add(Predicates.not(new SubtypePredicate("Island")));
filter.add(Predicates.not(new SubtypePredicate("Forest")));
filter.add(Predicates.not(new SubtypePredicate("Mountain")));
filter.add(Predicates.not(new SubtypePredicate("Swamp")));
filter.add(Predicates.not(new SubtypePredicate("Plains")));
filter.add(Predicates.not(new SupertypePredicate("Basic")));
this.targetName = "nonbasic land";
}