[LTR] Implement Mirkwood Spider

This commit is contained in:
theelk801 2023-06-09 09:20:38 -04:00
parent ca2988fc43
commit d408719b8d
3 changed files with 58 additions and 0 deletions

View file

@ -1103,6 +1103,14 @@ public final class StaticFilters {
FILTER_CREATURES_LEGENDARY.setLockedFilter(true);
}
public static final FilterCreaturePermanent FILTER_CONTROLLED_CREATURE_LEGENDARY = new FilterCreaturePermanent("legendary creature you control");
static {
FILTER_CONTROLLED_CREATURE_LEGENDARY.add(TargetController.YOU.getControllerPredicate());
FILTER_CONTROLLED_CREATURE_LEGENDARY.add(SuperType.LEGENDARY.getPredicate());
FILTER_CONTROLLED_CREATURE_LEGENDARY.setLockedFilter(true);
}
public static final FilterCard FILTER_CARD_ARTIFACT_OR_CREATURE = new FilterCard("artifact or creature card");
static {