use of mage.game.permanent.token.SpiritBlueToken in project mage by magefree.
the class GeistSnatchCounterTargetEffect method apply.
@Override
public boolean apply(Game game, Ability source) {
game.getStack().counter(source.getFirstTarget(), source, game);
Token token = new SpiritBlueToken();
token.putOntoBattlefield(1, game, source, source.getControllerId());
return true;
}
Aggregations