magarena/release/Magarena/scripts/Rage_Nimbus.groovy

33 lines
1.1 KiB
Groovy
Raw Normal View History

2013-05-26 05:03:05 -07:00
[
2013-06-23 18:29:26 -07:00
new MagicPermanentActivation(
2013-05-26 05:03:05 -07:00
new MagicActivationHints(MagicTiming.MustAttack),
"Attacks"
) {
@Override
public MagicEvent[] getCostEvent(final MagicPermanent source) {
return [new MagicPayManaCostEvent(source,"{1}{R}")];
}
@Override
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
return new MagicEvent(
source,
MagicTargetChoice.NEG_TARGET_CREATURE,
MagicMustAttackTargetPicker.create(),
this,
"Target creature\$ attacks this turn if able."
);
}
@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.AttacksEachTurnIfAble));
}
});
}
}
]