Implemented Charging War Boar

This commit is contained in:
Evan Kranzler 2019-01-10 17:01:26 -05:00
parent 57a0872264
commit 3ff26721e8
3 changed files with 70 additions and 1 deletions

View file

@ -6,7 +6,6 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
import mage.filter.predicate.mageobject.SubtypePredicate;
/**
*
* @author LevelX2
*/
public class FilterControlledPlaneswalkerPermanent extends FilterControlledPermanent {
@ -15,6 +14,10 @@ public class FilterControlledPlaneswalkerPermanent extends FilterControlledPerma
this("planeswalker you control");
}
public FilterControlledPlaneswalkerPermanent(SubType subType) {
this(subType, "a " + subType + " planeswalker");
}
public FilterControlledPlaneswalkerPermanent(SubType subType, String name) {
super(name);
this.add(new CardTypePredicate(CardType.PLANESWALKER));