[DSK] Implement Withering Torment

This commit is contained in:
theelk801 2024-09-09 16:59:52 -04:00
parent 397bc8733a
commit dd471949c5
18 changed files with 97 additions and 198 deletions

View file

@ -346,6 +346,16 @@ public final class StaticFilters {
FILTER_PERMANENT_ARTIFACT_OR_CREATURE.setLockedFilter(true);
}
public static final FilterPermanent FILTER_PERMANENT_CREATURE_OR_ENCHANTMENT = new FilterPermanent("creature or enchantment");
static {
FILTER_PERMANENT_CREATURE_OR_ENCHANTMENT.add(Predicates.or(
CardType.CREATURE.getPredicate(),
CardType.ENCHANTMENT.getPredicate()
));
FILTER_PERMANENT_CREATURE_OR_ENCHANTMENT.setLockedFilter(true);
}
public static final FilterPermanent FILTER_PERMANENT_ARTIFACT_CREATURE_OR_ENCHANTMENT = new FilterPermanent("artifact, creature, or enchantment");
static {