mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Transmute - Added reminder text.
This commit is contained in:
parent
106a41f2af
commit
c7546cfe94
1 changed files with 3 additions and 1 deletions
|
@ -38,7 +38,9 @@ public class TransmuteAbility extends SimpleActivatedAbility {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Transmute " + this.getManaCosts().getText();
|
||||
return new StringBuilder("Transmute ").append(this.getManaCosts().getText())
|
||||
.append(" (").append(this.getManaCosts().getText())
|
||||
.append(", Discard this card: Search your library for a card with the same converted mana cost as this card, reveal it, and put it into your hand. Then shuffle your library. Transmute only as a sorcery.)").toString();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue