Fixed Wording on 2 cards and removed duplicate StaticFilter (#8596)

Closes #6643
This commit is contained in:
Alex Vasile 2022-01-25 21:08:46 -05:00 committed by GitHub
parent bd33191308
commit d33acc7c80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 14 additions and 18 deletions

View file

@ -19,7 +19,7 @@ public class BecomesBlockedAllTriggeredAbility extends TriggeredAbilityImpl {
private final boolean setTargetPointer;
public BecomesBlockedAllTriggeredAbility(Effect effect, boolean optional) {
this(effect, optional, StaticFilters.FILTER_PERMANENT_CREATURE_A, false);
this(effect, optional, StaticFilters.FILTER_PERMANENT_A_CREATURE, false);
}
public BecomesBlockedAllTriggeredAbility(Effect effect, boolean optional, FilterCreaturePermanent filter, boolean setTargetPointer) {

View file

@ -522,12 +522,6 @@ public final class StaticFilters {
FILTER_PERMANENT_CREATURE.setLockedFilter(true);
}
public static final FilterCreaturePermanent FILTER_PERMANENT_CREATURE_A = new FilterCreaturePermanent("a creature");
static {
FILTER_PERMANENT_CREATURE_A.setLockedFilter(true);
}
public static final FilterPermanent FILTER_PERMANENT_CREATURE_OR_PLANESWALKER_A = new FilterPermanent("a creature or planeswalker");
static {

View file

@ -23,7 +23,7 @@ public final class LukkaWaywardBonderEmblem extends Emblem {
this.setExpansionSetCodeForImage("STX");
Ability ability = new EntersBattlefieldControlledTriggeredAbility(
Zone.COMMAND, new LukkaWaywardBonderEmblemEffect(),
StaticFilters.FILTER_PERMANENT_CREATURE_A, false
StaticFilters.FILTER_PERMANENT_A_CREATURE, false
);
ability.addTarget(new TargetAnyTarget());
this.getAbilities().add(ability);