mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Fixed Wording on 2 cards and removed duplicate StaticFilter (#8596)
Closes #6643
This commit is contained in:
parent
bd33191308
commit
d33acc7c80
15 changed files with 14 additions and 18 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue