hint text adjustment

This commit is contained in:
xenohedron 2023-12-26 14:57:38 -05:00
parent 7d860378f7
commit 2d7f365dc2

View file

@ -52,7 +52,7 @@ public final class KutzilsFlanker extends CardImpl {
new AddCountersSourceEffect(CounterType.P1P1.createInstance(), KutzilsFlankerValue.instance, true)
.setText("put a +1/+1 counter on {this} for each creature that left the battlefield under your control this turn")
);
ability.addHint(new ValueHint("number of creatures that left", KutzilsFlankerValue.instance));
ability.addHint(new ValueHint("Number of creatures that left", KutzilsFlankerValue.instance));
ability.addWatcher(new KutzilsFlankerWatcher());
// * You gain 2 life and scry 2.
@ -136,4 +136,4 @@ class KutzilsFlankerWatcher extends Watcher {
KutzilsFlankerWatcher watcher = game.getState().getWatcher(KutzilsFlankerWatcher.class);
return watcher == null ? 0 : watcher.mapCreaturesLeft.getOrDefault(playerId, 0);
}
}
}