mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
Implemented Arisen Gorgon
This commit is contained in:
parent
9a56cb1f2b
commit
d35d6f48b2
3 changed files with 65 additions and 2 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue