mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
a few small text fixes
This commit is contained in:
parent
b36f915d74
commit
02f04e541c
4 changed files with 4 additions and 4 deletions
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue