Removing setText, updating filter

This commit is contained in:
Mike Cunningham 2025-04-07 00:28:08 -04:00
parent a186a6f21e
commit 39a4e7644e

View file

@ -25,8 +25,7 @@ public final class AggressiveNegotiations extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{B}"); super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{B}");
// Target opponent reveals their hand. You choose a nonland card from it. That player exiles that card. // Target opponent reveals their hand. You choose a nonland card from it. That player exiles that card.
Effect effect1 = new ExileCardYouChooseTargetOpponentEffect(StaticFilters.FILTER_CARD_NON_LAND); Effect effect1 = new ExileCardYouChooseTargetOpponentEffect(StaticFilters.FILTER_CARD_A_NON_LAND);
effect1.setText("Target player reveals their hand. You choose a nonland card from it and exile that card.");
this.getSpellAbility().addEffect(effect1); this.getSpellAbility().addEffect(effect1);
this.getSpellAbility().addTarget(new TargetPlayer()); this.getSpellAbility().addTarget(new TargetPlayer());