magarena/release/Magarena/scripts/Hollowhenge_Spirit.groovy

25 lines
874 B
Groovy
Raw Normal View History

2013-05-17 22:51:47 -07:00
[
new MagicWhenComesIntoPlayTrigger() {
@Override
public MagicEvent executeTrigger(
final MagicGame game,
final MagicPermanent permanent,
2013-06-19 07:23:35 -07:00
final MagicPayedCost payedCost) {
2013-05-17 22:51:47 -07:00
return new MagicEvent(
permanent,
MagicTargetChoice.TARGET_ATTACKING_OR_BLOCKING_CREATURE,
this,
"Remove target attacking or blocking creature\$ from combat."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent creature) {
game.doAction(new MagicRemoveFromCombatAction(creature));
}
});
}
}
]