use of mage.game.permanent.token.WhiteBlackSpiritToken in project mage by magefree.
the class EtherealAbsolutionEffect method apply.
@Override
public boolean apply(Game game, Ability source) {
Player player = game.getPlayer(source.getControllerId());
Card card = game.getCard(source.getFirstTarget());
if (player == null || card == null) {
return false;
}
if (card.isCreature(game)) {
new CreateTokenEffect(new WhiteBlackSpiritToken()).apply(game, source);
}
return player.moveCards(card, Zone.EXILED, source, game);
}
Aggregations