mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
Implemented Teferi's Tutelage (mill errata not complete)
This commit is contained in:
parent
36c3db4da1
commit
65d2f3c9c4
3 changed files with 45 additions and 7 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue