mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEC] Implemented Aerial Surveyor
This commit is contained in:
parent
6bcc0cdf51
commit
4f2671f475
3 changed files with 122 additions and 1 deletions
|
|
@ -2,11 +2,11 @@
|
|||
package mage.filter.common;
|
||||
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
import mage.filter.FilterCard;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class FilterBasicLandCard extends FilterCard {
|
||||
|
|
@ -15,6 +15,11 @@ public class FilterBasicLandCard extends FilterCard {
|
|||
this("basic land card");
|
||||
}
|
||||
|
||||
public FilterBasicLandCard(SubType subType) {
|
||||
this("basic " + subType + " card");
|
||||
this.add(subType.getPredicate());
|
||||
}
|
||||
|
||||
public FilterBasicLandCard(String name) {
|
||||
super(name);
|
||||
this.add(CardType.LAND.getPredicate());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue