2013-02-15 21:09:25 -08:00
|
|
|
[
|
|
|
|
new MagicBloodrushActivation(
|
2013-02-26 21:18:13 -08:00
|
|
|
MagicManaCost.create("{1}{R}{G}"),
|
2013-02-15 21:09:25 -08:00
|
|
|
"Target attacking creature\$ gets +5/+4 until end of turn.") {
|
|
|
|
@Override
|
|
|
|
public void executeEvent(final MagicGame game,final MagicEvent event,final Object[] choiceResults) {
|
|
|
|
event.processTargetPermanent(game,choiceResults,0,new MagicPermanentAction() {
|
|
|
|
public void doAction(final MagicPermanent creature) {
|
|
|
|
game.doAction(new MagicChangeTurnPTAction(creature,5,4));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|