This commit is contained in:
Jeff Wadsworth 2022-06-20 10:54:39 -05:00
parent 2cf3e0fd74
commit ae7b11931f

View file

@ -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);