forked from External/mage
fix trigger to be optional
This commit is contained in:
parent
95c326b200
commit
10a8059eae
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
// 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)
|
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,"));
|
ability.addEffect(new DiscardControllerEffect(1).concatBy("If you do,"));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue