24 lines
905 B
Groovy
24 lines
905 B
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack, final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
MagicTargetChoice.NEG_TARGET_CREATURE,
|
|
MagicBounceTargetPicker.create(),
|
|
this,
|
|
"Exile target creature\$, then populate."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
|
public void doAction(final MagicPermanent creature) {
|
|
game.doAction(new MagicRemoveFromPlayAction(creature,MagicLocationType.Exile));
|
|
game.addEvent(new MagicPopulateEvent(event.getSource()));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|