[ONE] Implement Eye of Malcator (#9993)

This commit is contained in:
Merlingilb 2023-02-19 03:48:51 +01:00 committed by GitHub
parent ebbbb4744d
commit 9d1f6321cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 51 additions and 0 deletions

View file

@ -407,6 +407,14 @@ public final class StaticFilters {
FILTER_CONTROLLED_ARTIFACT_OR_OTHER_CREATURE.setLockedFilter(true);
}
public static final FilterControlledPermanent FILTER_CONTROLLED_ANOTHER_ARTIFACT = new FilterControlledPermanent("another artifact you control");
static {
FILTER_CONTROLLED_ANOTHER_ARTIFACT.add(AnotherPredicate.instance);
FILTER_CONTROLLED_ANOTHER_ARTIFACT.add(CardType.ARTIFACT.getPredicate());
FILTER_CONTROLLED_ANOTHER_ARTIFACT.setLockedFilter(true);
}
public static final FilterControlledPermanent FILTER_CONTROLLED_ANOTHER_ARTIFACT_OR_CREATURE = new FilterControlledPermanent("another creature or artifact you control");
static {