mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
[THB] Agonizing Remorse - Life loss should happen even if no card gets exiled
This commit is contained in:
parent
4ed302b21d
commit
68e98f9299
1 changed files with 5 additions and 7 deletions
|
@ -81,14 +81,12 @@ class AgonizingRemorseEffect extends OneShotEffect {
|
|||
target.setNotTarget(true);
|
||||
cards = opponent.getGraveyard();
|
||||
}
|
||||
if (!controller.choose(outcome, cards, target, game)) {
|
||||
return true;
|
||||
if (controller.choose(outcome, cards, target, game)) {
|
||||
Card card = game.getCard(target.getFirstTarget());
|
||||
if (card != null) {
|
||||
controller.moveCards(card, Zone.EXILED, source, game);
|
||||
}
|
||||
}
|
||||
Card card = game.getCard(target.getFirstTarget());
|
||||
if (card == null) {
|
||||
return true;
|
||||
}
|
||||
controller.moveCards(card, Zone.EXILED, source, game);
|
||||
controller.loseLife(1, game, source, false);
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue