27 lines
902 B
Groovy
27 lines
902 B
Groovy
[
|
|
new MagicSpellCardEvent() {
|
|
@Override
|
|
public MagicEvent getEvent(
|
|
final MagicCardOnStack cardOnStack,
|
|
final MagicPayedCost payedCost) {
|
|
return new MagicEvent(
|
|
cardOnStack,
|
|
this,
|
|
"Return all nonland permanents to their owners' hands."
|
|
);
|
|
}
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
final Collection<MagicPermanent> targets = game.filterPermanents(
|
|
event.getPlayer(),
|
|
MagicTargetFilter.TARGET_NONLAND_PERMANENT);
|
|
for (final MagicPermanent target : targets) {
|
|
game.doAction(new MagicRemoveFromPlayAction(
|
|
target,
|
|
MagicLocationType.OwnersHand
|
|
));
|
|
}
|
|
}
|
|
}
|
|
]
|