[MIC] Implemented Gorex, the Tombshell

This commit is contained in:
Evan Kranzler 2021-10-07 09:32:26 -04:00
parent 4175b97464
commit 2506261063
3 changed files with 183 additions and 1 deletions

View file

@ -88,7 +88,11 @@ public class ExileFromGraveCost extends CostImpl {
}
Cards cardsToExile = new CardsImpl();
cardsToExile.addAll(exiledCards);
controller.moveCards(cardsToExile, Zone.EXILED, ability, game);
controller.moveCardsToExile(
cardsToExile.getCards(game), source, game, true,
CardUtil.getExileZoneId(game, source),
CardUtil.getSourceLogName(game, source)
);
if (setTargetPointer) {
source.getEffects().setTargetPointer(new FixedTargets(cardsToExile, game));
}