Implemented Teferi's Tutelage (mill errata not complete)

This commit is contained in:
Evan Kranzler 2020-06-07 13:40:19 -04:00
parent 36c3db4da1
commit 65d2f3c9c4
3 changed files with 45 additions and 7 deletions

View file

@ -65,23 +65,20 @@ public class PutLibraryIntoGraveTargetEffect extends OneShotEffect {
sb.append("that target");
}
sb.append(" puts the top ");
sb.append(" mills ");
if (message.isEmpty()) {
if (amount.toString().equals("1")) {
sb.append("card ");
sb.append("a card");
} else {
sb.append(CardUtil.numberToText(amount.toString())).append(" cards ");
sb.append(CardUtil.numberToText(amount.toString())).append(" cards");
}
} else {
sb.append(" X cards ");
sb.append(" X cards, where X is the number of ");
}
sb.append("of their library into their graveyard");
if (!message.isEmpty()) {
sb.append(", where X is the number of ");
sb.append(message);
}
return sb.toString();
}
}