fix other verify failures

This commit is contained in:
theelk801 2025-09-02 17:09:28 -04:00
parent 26ab143ccb
commit 5faf68144a
2 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,6 @@ import java.util.Objects;
import java.util.UUID;
/**
*
* @author Jmlundeen
*/
public final class ParapetThrasher extends CardImpl {
@ -52,7 +51,7 @@ public final class ParapetThrasher extends CardImpl {
// Whenever one or more Dragons you control deal combat damage to an opponent, choose one that hasn't been chosen this turn --
// * Destroy target artifact that opponent controls.
Ability ability = new ParapetThrasherTriggeredAbility(new DestroyTargetEffect(), filter);
Ability ability = new ParapetThrasherTriggeredAbility(new DestroyTargetEffect().setText("destroy target artifact that opponent controls"), filter);
ability.setModeTag("destroy artifact");
ability.getModes().setLimitUsageByOnce(true);

View file

@ -44,6 +44,7 @@ public final class PeterParkersCamera extends CardImpl {
ability.addCost(new TapSourceCost());
ability.addCost(new RemoveCountersSourceCost(CounterType.FILM.createInstance()));
ability.addTarget(new TargetStackObject(filter));
this.addAbility(ability);
}
private PeterParkersCamera(final PeterParkersCamera card) {