fix trigger to be optional

This commit is contained in:
xenohedron 2025-09-13 19:05:39 -04:00
parent 95c326b200
commit 10a8059eae

View file

@ -44,7 +44,7 @@ public final class KataraWaterbendingMaster extends CardImpl {
// Whenever Katara attacks, you may draw a card for each experience counter you have. If you do, discard a card.
Ability ability = new AttacksTriggeredAbility(new DrawCardSourceControllerEffect(xValue)
.setText("draw a card for each experience counter you have"));
.setText("draw a card for each experience counter you have"), true);
ability.addEffect(new DiscardControllerEffect(1).concatBy("If you do,"));
this.addAbility(ability);
}