forked from External/mage
...
This commit is contained in:
parent
460ee77e4e
commit
e0b4388361
555 changed files with 20323 additions and 1942 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue