mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
fix (mostly text) for [MH3] and [M3C]
This commit is contained in:
parent
3dc9f5d382
commit
60193e797d
20 changed files with 68 additions and 45 deletions
|
|
@ -11,10 +11,18 @@ import mage.filter.predicate.Predicates;
|
|||
*/
|
||||
public class TargetNonBasicLandPermanent extends TargetLandPermanent {
|
||||
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("nonbasic land");
|
||||
|
||||
static {
|
||||
filter.add(Predicates.not(SuperType.BASIC.getPredicate()));
|
||||
}
|
||||
|
||||
public TargetNonBasicLandPermanent() {
|
||||
this.filter = new FilterLandPermanent();
|
||||
this.filter.add(Predicates.not(SuperType.BASIC.getPredicate()));
|
||||
this.targetName = "nonbasic land";
|
||||
this(1, 1);
|
||||
}
|
||||
|
||||
public TargetNonBasicLandPermanent(int minNumTargets, int maxNumTargets) {
|
||||
super(minNumTargets, maxNumTargets, filter, false);
|
||||
}
|
||||
|
||||
protected TargetNonBasicLandPermanent(final TargetNonBasicLandPermanent target) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue