Fix Cephalid Facetaker (#10416)

* Fix Cephalid Facetaker with new static filter

* Use FILTER_ANOTHER_TARGET_CREATURE on other cards
This commit is contained in:
xenohedron 2023-05-29 19:12:53 -04:00 committed by GitHub
parent 19f44e90ad
commit 749f2e3991
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 63 additions and 251 deletions

View file

@ -555,6 +555,13 @@ public final class StaticFilters {
FILTER_OPPONENTS_PERMANENT_ARTIFACT_OR_CREATURE.setLockedFilter(true);
}
public static final FilterCreaturePermanent FILTER_ANOTHER_TARGET_CREATURE = new FilterCreaturePermanent("another target creature");
static {
FILTER_ANOTHER_TARGET_CREATURE.add(AnotherPredicate.instance);
FILTER_ANOTHER_TARGET_CREATURE.setLockedFilter(true);
}
public static final FilterCreaturePermanent FILTER_ANOTHER_CREATURE_TARGET_2 = new FilterCreaturePermanent("another target creature");
static {