mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
- Fixed #9127
This commit is contained in:
parent
2cf3e0fd74
commit
ae7b11931f
1 changed files with 3 additions and 3 deletions
|
|
@ -53,8 +53,8 @@ class CruelUltimatumEffect extends OneShotEffect {
|
||||||
|
|
||||||
public CruelUltimatumEffect() {
|
public CruelUltimatumEffect() {
|
||||||
super(Outcome.ReturnToHand);
|
super(Outcome.ReturnToHand);
|
||||||
this.staticText = "You return a creature card from your graveyard " +
|
this.staticText = "You return a creature card from your graveyard "
|
||||||
"to your hand, draw three cards, then gain 5 life";
|
+ "to your hand, draw three cards, then gain 5 life";
|
||||||
}
|
}
|
||||||
|
|
||||||
public CruelUltimatumEffect(final CruelUltimatumEffect effect) {
|
public CruelUltimatumEffect(final CruelUltimatumEffect effect) {
|
||||||
|
|
@ -76,7 +76,7 @@ class CruelUltimatumEffect extends OneShotEffect {
|
||||||
controller.choose(Outcome.ReturnToHand, target, source, game);
|
controller.choose(Outcome.ReturnToHand, target, source, game);
|
||||||
Card card = game.getCard(target.getFirstTarget());
|
Card card = game.getCard(target.getFirstTarget());
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
return controller.moveCards(card, Zone.HAND, source, game);
|
controller.moveCards(card, Zone.HAND, source, game);
|
||||||
}
|
}
|
||||||
controller.drawCards(3, source, game);
|
controller.drawCards(3, source, game);
|
||||||
controller.gainLife(5, game, source);
|
controller.gainLife(5, game, source);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue