forked from External/mage
[FIC] various text fixes
This commit is contained in:
parent
eeaf2d28e0
commit
fc24927565
24 changed files with 92 additions and 79 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
|
|
@ -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 ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue