35 lines
1.4 KiB
Groovy
35 lines
1.4 KiB
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(final MagicCardOnStack cardOnStack, final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
MagicTargetChoice.TARGET_CREATURE,
|
|
new MagicDestroyTargetPicker(true),
|
|
this,
|
|
"Destroy target creature\$. It can't be regenerated. " +
|
|
"Its controller puts a 1/1 white Spirit creature " +
|
|
"token with flying onto the battlefield."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
|
public void doAction(final MagicPermanent creature) {
|
|
final MagicPlayer controller=creature.getController();
|
|
game.doAction(new MagicChangeStateAction(
|
|
creature,
|
|
MagicPermanentState.CannotBeRegenerated,
|
|
true
|
|
));
|
|
game.doAction(new MagicDestroyAction(creature));
|
|
game.doAction(new MagicPlayTokenAction(
|
|
controller,
|
|
TokenCardDefinitions.get("Spirit2")
|
|
));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|