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