mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[RIX] Added Deeproot Elite
This commit is contained in:
parent
a37cd4036c
commit
6b9db5eb17
4 changed files with 97 additions and 5 deletions
|
|
@ -43,15 +43,20 @@ public class FilterControlledCreaturePermanent extends FilterControlledPermanent
|
|||
}
|
||||
|
||||
public FilterControlledCreaturePermanent(String name) {
|
||||
super(name);
|
||||
this.add(new CardTypePredicate(CardType.CREATURE));
|
||||
// this.add(new ControllerPredicate(TargetController.YOU));
|
||||
this(null, name);
|
||||
}
|
||||
|
||||
public FilterControlledCreaturePermanent(SubType subtype) {
|
||||
this(subtype, subtype.toString() + " you control");
|
||||
}
|
||||
|
||||
public FilterControlledCreaturePermanent(SubType subtype, String name) {
|
||||
super(name);
|
||||
|
||||
this.add(new CardTypePredicate(CardType.CREATURE));
|
||||
this.add(new SubtypePredicate(subtype));
|
||||
if(subtype != null) {
|
||||
this.add(new SubtypePredicate(subtype));
|
||||
}
|
||||
}
|
||||
|
||||
public FilterControlledCreaturePermanent(final FilterControlledCreaturePermanent filter) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue