mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Elixir of Immortality - Fixed tooltip text.
This commit is contained in:
parent
bcf09b3cd0
commit
a5cba8eccb
1 changed files with 3 additions and 3 deletions
|
@ -72,7 +72,7 @@ class ElixerOfImmortalityEffect extends OneShotEffect {
|
|||
|
||||
public ElixerOfImmortalityEffect() {
|
||||
super(Outcome.GainLife);
|
||||
staticText = "Shuffle {this} and your graveyard into your library";
|
||||
staticText = "You gain 5 life. Shuffle {this} and your graveyard into your library";
|
||||
}
|
||||
|
||||
public ElixerOfImmortalityEffect(final ElixerOfImmortalityEffect effect) {
|
||||
|
@ -86,7 +86,7 @@ class ElixerOfImmortalityEffect extends OneShotEffect {
|
|||
if (player != null) {
|
||||
player.gainLife(5, game);
|
||||
if (permanent != null) {
|
||||
permanent.moveToZone(Zone.LIBRARY, source.getId(), game, true);
|
||||
player.moveCardToLibraryWithInfo(permanent, source.getSourceId(), game, Zone.BATTLEFIELD, true, true);
|
||||
}
|
||||
player.getLibrary().addAll(player.getGraveyard().getCards(game), game);
|
||||
player.getGraveyard().clear();
|
||||
|
@ -101,4 +101,4 @@ class ElixerOfImmortalityEffect extends OneShotEffect {
|
|||
return new ElixerOfImmortalityEffect(this);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue