mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
* Fixed some problems with filtering nonbasic lands (e.g. Fulminator Mage).
This commit is contained in:
parent
1cef92ef7a
commit
4fe5560222
10 changed files with 22 additions and 52 deletions
|
|
@ -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";
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue