1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-10 17:00:08 -09:00
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() {
super(Outcome.ReturnToHand);
this.staticText = "You return a creature card from your graveyard " +
"to your hand, draw three cards, then gain 5 life";
this.staticText = "You return a creature card from your graveyard "
+ "to your hand, draw three cards, then gain 5 life";
}
public CruelUltimatumEffect(final CruelUltimatumEffect effect) {
@ -76,7 +76,7 @@ class CruelUltimatumEffect extends OneShotEffect {
controller.choose(Outcome.ReturnToHand, target, source, game);
Card card = game.getCard(target.getFirstTarget());
if (card != null) {
return controller.moveCards(card, Zone.HAND, source, game);
controller.moveCards(card, Zone.HAND, source, game);
}
controller.drawCards(3, source, game);
controller.gainLife(5, game, source);