[FIC] various text fixes

This commit is contained in:
theelk801 2025-05-30 22:14:50 -04:00 committed by Failure
parent eeaf2d28e0
commit fc24927565
24 changed files with 92 additions and 79 deletions

View file

@ -22,6 +22,7 @@ public class WonCoinFlipControllerTriggeredAbility extends TriggeredAbilityImpl
public WonCoinFlipControllerTriggeredAbility(Zone zone, Effect effect, boolean optional) {
super(zone, effect, optional);
this.setTriggerPhrase("Whenever you win a coin flip, ");
}
private WonCoinFlipControllerTriggeredAbility(final WonCoinFlipControllerTriggeredAbility ability) {

View file

@ -103,7 +103,7 @@ public class MoveCounterTargetsEffect extends OneShotEffect {
.ofNullable(counterType)
.map(c -> counterType.getArticle() + ' ' + counterType.getName())
.orElse("a"));
sb.append(" counter from target ");
sb.append(" counter from ");
sb.append(mode.getTargets().get(0).getDescription());
sb.append(" onto ");
sb.append(mode.getTargets().get(1).getDescription());

View file

@ -59,7 +59,7 @@ public class ScryEffect extends OneShotEffect {
private String generateText() {
StringBuilder sb = new StringBuilder("scry ");
String value = amount.toString();
sb.append(CardUtil.numberToText(value));
sb.append(value);
String message = amount.getMessage();
if (!message.isEmpty()) {
sb.append(value.equals("X") ? ", where X is " : " for each ");