[TLA] fix Zuko, Conflicted not limiting modes

This commit is contained in:
theelk801 2025-11-25 18:57:42 -05:00
parent 1f21d6e716
commit 210f93a7cc

View file

@ -42,6 +42,7 @@ public final class ZukoConflicted extends CardImpl {
Ability ability = new BeginningOfFirstMainTriggeredAbility(new DrawCardSourceControllerEffect(1).setText("draw")); Ability ability = new BeginningOfFirstMainTriggeredAbility(new DrawCardSourceControllerEffect(1).setText("draw"));
ability.addEffect(new LoseLifeSourceControllerEffect(2).setText(" a card")); ability.addEffect(new LoseLifeSourceControllerEffect(2).setText(" a card"));
ability.getModes().setChooseText("choose one that hasn't been chosen and you lose 2 life —"); ability.getModes().setChooseText("choose one that hasn't been chosen and you lose 2 life —");
ability.getModes().setLimitUsageByOnce(false);
// * Put a +1/+1 counter on Zuko. // * Put a +1/+1 counter on Zuko.
ability.addMode(new Mode(new AddCountersSourceEffect(CounterType.P1P1.createInstance()).setText("put a +1/+1 counter")) ability.addMode(new Mode(new AddCountersSourceEffect(CounterType.P1P1.createInstance()).setText("put a +1/+1 counter"))