30 lines
983 B
Groovy
30 lines
983 B
Groovy
[
|
|
new MagicWhenComesIntoPlayTrigger() {
|
|
@Override
|
|
public MagicEvent executeTrigger(
|
|
final MagicGame game,
|
|
final MagicPermanent permanent,
|
|
final MagicPlayer player) {
|
|
return new MagicEvent(
|
|
permanent,
|
|
MagicTargetChoice.TARGET_CREATURE,
|
|
new MagicNoCombatTargetPicker(false,true,false),
|
|
this,
|
|
"Target creature\$ can't block this turn."
|
|
);
|
|
}
|
|
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
|
public void doAction(final MagicPermanent creature) {
|
|
game.doAction(new MagicSetAbilityAction(
|
|
creature,
|
|
MagicAbility.CannotBlock
|
|
));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
]
|