a few small text fixes

This commit is contained in:
Evan Kranzler 2021-03-06 14:35:01 -05:00
parent b36f915d74
commit 02f04e541c
4 changed files with 4 additions and 4 deletions

View file

@ -48,7 +48,7 @@ class GiltLeafAmbushCreateTokenEffect extends OneShotEffect {
public GiltLeafAmbushCreateTokenEffect() {
super(Outcome.PutCreatureInPlay);
this.staticText = "Create two 1/1 green Elf Warrior creature tokens into play. Clash with an opponent. If you win, those creatures gain deathtouch until end of turn";
this.staticText = "Create two 1/1 green Elf Warrior creature tokens. Clash with an opponent. If you win, those creatures gain deathtouch until end of turn";
}
public GiltLeafAmbushCreateTokenEffect(final GiltLeafAmbushCreateTokenEffect effect) {

View file

@ -52,7 +52,7 @@ class NovijenHeartOfProgressEffect extends OneShotEffect {
public NovijenHeartOfProgressEffect() {
super(Outcome.BoostCreature);
staticText = "put a +1/+1 counter on each creature that came into play this turn";
staticText = "put a +1/+1 counter on each creature that entered the battlefield this turn";
}
public NovijenHeartOfProgressEffect(final NovijenHeartOfProgressEffect effect) {

View file

@ -87,7 +87,7 @@ class RebellionOfTheFlamekinTriggeredAbility extends TriggeredAbilityImpl {
@Override
public String getRule() {
return "Whenever you clash, you may pay {1}. If you do create a 3/1 Red Elemental Shaman creature token in play. If you won that token gains haste until end of turn";
return "Whenever you clash, you may pay {1}. If you do create a 3/1 Red Elemental Shaman creature token. If you won that token gains haste until end of turn";
}
}

View file

@ -4400,7 +4400,7 @@ public abstract class PlayerImpl implements Player, Serializable {
sb.append("from ").append(fromZone.toString().toLowerCase(Locale.ENGLISH)).append(' ');
}
if (card.isOwnedBy(getId())) {
sb.append(" to his or her command zone");
sb.append(" to their command zone");
} else {
Player player = game.getPlayer(card.getOwnerId());
if (player != null) {