mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Implemented Charging War Boar
This commit is contained in:
parent
57a0872264
commit
3ff26721e8
3 changed files with 70 additions and 1 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue