Implemented Carrion Grub

This commit is contained in:
Evan Kranzler 2020-06-07 19:21:19 -04:00
parent d0de282d2d
commit c4283cd591
3 changed files with 91 additions and 10 deletions

View file

@ -42,15 +42,6 @@ public class PutTopCardOfLibraryIntoGraveControllerEffect extends OneShotEffect
}
private String setText() {
StringBuilder sb = new StringBuilder("put the top");
if (numberCards == 1) {
sb.append(" card");
} else {
sb.append(" ");
sb.append(CardUtil.numberToText(numberCards));
sb.append(" cards");
}
sb.append(" of your library into your graveyard");
return sb.toString();
return "mill " + (numberCards == 1 ? "a card" : CardUtil.numberToText(numberCards) + " cards");
}
}