This commit is contained in:
BetaSteward 2010-09-25 20:35:23 +00:00
parent 460ee77e4e
commit e0b4388361
555 changed files with 20323 additions and 1942 deletions

View file

@ -76,7 +76,12 @@ public class PutLibraryIntoGraveTargetEffect extends OneShotEffect<PutLibraryInt
public String getText(Ability source) {
StringBuilder sb = new StringBuilder();
sb.append("Target ").append(source.getTargets().get(0).getTargetName());
sb.append(" puts the top ").append(amount).append("cards of his or her library into his or her graveyard.");
sb.append(" puts the top ");
if (amount == 1)
sb.append(amount).append("card ");
else
sb.append(amount).append("cards ");
sb.append("of his or her library into his or her graveyard.");
return sb.toString();
}