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; import java.util.UUID;
/** /**
*
* @author Jmlundeen * @author Jmlundeen
*/ */
public final class ParapetThrasher extends CardImpl { public final class ParapetThrasher extends CardImpl {
@ -42,7 +41,7 @@ public final class ParapetThrasher extends CardImpl {
public ParapetThrasher(UUID ownerId, CardSetInfo setInfo) { public ParapetThrasher(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}{R}"); super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}{R}");
this.subtype.add(SubType.DRAGON); this.subtype.add(SubType.DRAGON);
this.power = new MageInt(4); this.power = new MageInt(4);
this.toughness = new MageInt(3); this.toughness = new MageInt(3);
@ -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 -- // 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. // * 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.setModeTag("destroy artifact");
ability.getModes().setLimitUsageByOnce(true); ability.getModes().setLimitUsageByOnce(true);

View file

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