magarena/release/Magarena/scripts/Royal_Assassin.groovy

36 lines
1.1 KiB
Groovy

[
new MagicPermanentActivation(
[MagicCondition.CAN_TAP_CONDITION],
new MagicActivationHints(MagicTiming.Removal),
"Damage"
) {
@Override
public MagicEvent[] getCostEvent(final MagicPermanent source) {
return [new MagicTapEvent(source)];
}
@Override
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
return new MagicEvent(
source,
MagicTargetChoice.NEG_TARGET_TAPPED_CREATURE,
new MagicDestroyTargetPicker(false),
this,
"Destroy target tapped creature\$."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent creature) {
if (creature.isTapped()) {
game.doAction(new MagicDestroyAction(creature));
}
}
});
}
}
]