fixed the text on various sliver cards

This commit is contained in:
Evan Kranzler 2022-02-22 17:53:31 -05:00
parent abc6618cba
commit 414018db13
52 changed files with 217 additions and 196 deletions

View file

@ -634,10 +634,16 @@ public final class StaticFilters {
FILTER_PERMANENT_CREATURE_GOBLINS.setLockedFilter(true);
}
public static final FilterCreaturePermanent FILTER_PERMANENT_CREATURE_SLIVERS = new FilterCreaturePermanent(SubType.SLIVER, "all Sliver creatures");
public static final FilterCreaturePermanent FILTER_PERMANENT_SLIVERS = new FilterCreaturePermanent(SubType.SLIVER, "Sliver creatures");
static {
FILTER_PERMANENT_CREATURE_SLIVERS.setLockedFilter(true);
FILTER_PERMANENT_SLIVERS.setLockedFilter(true);
}
public static final FilterCreaturePermanent FILTER_PERMANENT_ALL_SLIVERS = new FilterCreaturePermanent(SubType.SLIVER, "all Sliver creatures");
static {
FILTER_PERMANENT_ALL_SLIVERS.setLockedFilter(true);
}
public static final FilterControlledPermanent FILTER_CONTROLLED_SAMURAI_OR_WARRIOR = new FilterControlledPermanent("a Samurai or Warrior you control");