text fixes

This commit is contained in:
Evan Kranzler 2021-04-30 07:58:19 -04:00
parent b27f2f04c1
commit 8f9afcb617
79 changed files with 158 additions and 177 deletions

View file

@ -158,7 +158,7 @@ public class RollPlanarDieEffect extends OneShotEffect {
}
}
}
sb.append(". If you roll PW, planeswalk to a new plane");
sb.append(". If you roll PW, planeswalk to a new plane");
return sb.toString();
}

View file

@ -188,7 +188,7 @@ public class BecomesCreatureTargetEffect extends ContinuousEffectImpl {
sb.append(". It's still a land");
}
}
return sb.toString();
return sb.toString().replace(" .", ".");
}
}

View file

@ -39,7 +39,7 @@ public class CastWithoutPayingManaCostEffect extends OneShotEffect {
public CastWithoutPayingManaCostEffect(DynamicValue maxCost) {
super(Outcome.PlayForFree);
this.manaCost = maxCost;
this.staticText = "you may cast a card with mana value "
this.staticText = "you may cast a spell with mana value "
+ maxCost + " or less from your hand without paying its mana cost";
}

View file

@ -55,7 +55,7 @@ public class GravestormAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
return "Gravestorm <i>(When you cast this spell, copy it for each permanent put into a graveyard this turn. You may choose new targets for the copies.</i>)";
return "Gravestorm <i>(When you cast this spell, copy it for each permanent put into a graveyard this turn. You may choose new targets for the copies.)</i>";
}
}

View file

@ -1211,7 +1211,7 @@ public abstract class GameImpl implements Game, Serializable {
return player.getId();
}
}
logger.debug("Game was not possible to pick a choosing player. GameId:" + getId());
logger.debug("Game was not possible to pick a choosing player. GameId:" + getId());
return null;
}

View file

@ -34,7 +34,7 @@ public final class BelzenlokDemonToken extends TokenImpl {
public BelzenlokDemonToken() {
super("Demon", "6/6 black Demon creature token with flying, trample, and "
+ "\"At the beginning of your upkeep, sacrifice another creature. If you can't, this creature deals 6 damage to you.\"");
+ "\"At the beginning of your upkeep, sacrifice another creature. If you can't, this creature deals 6 damage to you.\"");
availableImageSetCodes = tokenImageSets;
cardType.add(CardType.CREATURE);
color.setBlack(true);
@ -75,7 +75,7 @@ class BelzenlokDemonTokenEffect extends OneShotEffect {
BelzenlokDemonTokenEffect() {
super(Outcome.Benefit);
this.staticText = "sacrifice another creature. If you can't, this creature deals 6 damage to you.";
this.staticText = "sacrifice another creature. If you can't, this creature deals 6 damage to you.";
}
BelzenlokDemonTokenEffect(final BelzenlokDemonTokenEffect effect) {