[MOM] various text fixes

This commit is contained in:
theelk801 2023-04-13 22:44:42 -04:00
parent 1890fdf896
commit 8d7b73151c
17 changed files with 57 additions and 26 deletions

View file

@ -22,7 +22,7 @@ public class IncubateEffect extends OneShotEffect {
public IncubateEffect(int amount) {
super(Outcome.Detriment);
this.amount = amount;
staticText = "incubate " + amount + " <i>(Create an Incubator artifact token with " +
staticText = "incubate " + amount + ". <i>(Create an Incubator artifact token with " +
CardUtil.numberToText(amount, "a") + " +1/+1 counter" + (amount > 1 ? "s" : "") +
" on it and \"{2}: Transform this artifact.\" It transforms into a 0/0 Phyrexian artifact creature.)</i>";
}