fix Emptiness

This commit is contained in:
xenohedron 2025-11-22 20:40:35 -05:00
parent d744b347f2
commit 153cac5587

View file

@ -48,7 +48,7 @@ public final class Emptiness extends CardImpl {
this.addAbility(ability); this.addAbility(ability);
// When this creature enters, if {B}{B} was spent to cast it, put three -1/-1 counters on up to one target creature. // When this creature enters, if {B}{B} was spent to cast it, put three -1/-1 counters on up to one target creature.
ability = new EntersBattlefieldTriggeredAbility(new AddCountersTargetEffect(CounterType.M1M1.createInstance(2))) ability = new EntersBattlefieldTriggeredAbility(new AddCountersTargetEffect(CounterType.M1M1.createInstance(3)))
.withInterveningIf(TwoOfManaColorSpentCondition.BLACK); .withInterveningIf(TwoOfManaColorSpentCondition.BLACK);
ability.addTarget(new TargetCreaturePermanent(0, 1)); ability.addTarget(new TargetCreaturePermanent(0, 1));
this.addAbility(ability); this.addAbility(ability);