mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
fixed basic land filter
This commit is contained in:
parent
6de60b926d
commit
43e87b2ebd
1 changed files with 5 additions and 6 deletions
|
@ -28,6 +28,7 @@
|
|||
|
||||
package mage.filter.common;
|
||||
|
||||
import mage.Constants.CardType;
|
||||
import mage.filter.FilterCard;
|
||||
|
||||
/**
|
||||
|
@ -38,12 +39,10 @@ public class FilterBasicLandCard extends FilterCard<FilterBasicLandCard> {
|
|||
|
||||
public FilterBasicLandCard() {
|
||||
super("basic land card");
|
||||
name.add("Island");
|
||||
name.add("Forest");
|
||||
name.add("Mountain");
|
||||
name.add("Swamp");
|
||||
name.add("Plains");
|
||||
|
||||
this.cardType.add(CardType.LAND);
|
||||
this.setScopeCardType(ComparisonScope.Any);
|
||||
this.supertype.add("Basic");
|
||||
this.setScopeSupertype(ComparisonScope.Any);
|
||||
}
|
||||
|
||||
public FilterBasicLandCard(final FilterBasicLandCard filter) {
|
||||
|
|
Loading…
Reference in a new issue