Implemented Arisen Gorgon

This commit is contained in:
Evan Kranzler 2018-06-15 18:30:08 -04:00
parent 9a56cb1f2b
commit d35d6f48b2
3 changed files with 65 additions and 2 deletions

View file

@ -1,20 +1,26 @@
package mage.filter.common;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.filter.predicate.mageobject.CardTypePredicate;
import mage.filter.predicate.mageobject.SubtypePredicate;
/**
*
* @author LevelX2
*/
public class FilterControlledPlaneswalkerPermanent extends FilterControlledPermanent {
public FilterControlledPlaneswalkerPermanent() {
this("planeswalker you control");
}
public FilterControlledPlaneswalkerPermanent(SubType subType, String name) {
super(name);
this.add(new CardTypePredicate(CardType.PLANESWALKER));
this.add(new SubtypePredicate(subType));
}
public FilterControlledPlaneswalkerPermanent(String name) {
super(name);
this.add(new CardTypePredicate(CardType.PLANESWALKER));