fix Virulent Silencer

This commit is contained in:
xenohedron 2025-09-06 23:15:33 -04:00
parent 2cd89bb2db
commit 53382bd6c9

View file

@ -38,7 +38,7 @@ public final class VirulentSilencer extends CardImpl {
// Whenever a nontoken artifact creature you control deals combat damage to a player, that player gets two poison counters. // Whenever a nontoken artifact creature you control deals combat damage to a player, that player gets two poison counters.
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility( this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(
new AddPoisonCounterTargetEffect(2), filter, new AddPoisonCounterTargetEffect(2), filter,
false, SetTargetPointer.PLAYER, true false, SetTargetPointer.PLAYER, true, true
)); ));
} }