[RIX] Added Deeproot Elite

This commit is contained in:
Oleg Agafonov 2018-01-04 05:44:12 +04:00
parent a37cd4036c
commit 6b9db5eb17
4 changed files with 97 additions and 5 deletions

View file

@ -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) {