30 lines
1.0 KiB
Groovy
30 lines
1.0 KiB
Groovy
[
|
|
new MagicWhenComesIntoPlayTrigger() {
|
|
@Override
|
|
public MagicEvent executeTrigger(
|
|
final MagicGame game,
|
|
final MagicPermanent permanent,
|
|
final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
permanent,
|
|
MagicTargetChoice.TARGET_CREATURE_YOUR_OPPONENT_CONTROLS,
|
|
MagicBounceTargetPicker.create(),
|
|
this,
|
|
"Return target creature\$ your opponent " +
|
|
"controls to its owner's hand."
|
|
);
|
|
}
|
|
@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.OwnersHand
|
|
));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|