mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
text fixes
This commit is contained in:
parent
b27f2f04c1
commit
8f9afcb617
79 changed files with 158 additions and 177 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ public class BecomesCreatureTargetEffect extends ContinuousEffectImpl {
|
|||
sb.append(". It's still a land");
|
||||
}
|
||||
}
|
||||
return sb.toString();
|
||||
return sb.toString().replace(" .", ".");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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>";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue