forked from External/mage
fix other verify failures
This commit is contained in:
parent
26ab143ccb
commit
5faf68144a
2 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue