2013-02-15 21:05:03 -08:00
|
|
|
[
|
|
|
|
new MagicBloodrushActivation(
|
2013-02-26 21:18:13 -08:00
|
|
|
MagicManaCost.create("{5}{G}{G}"),
|
2013-02-15 21:05:03 -08:00
|
|
|
"Target attacking creature\$ gets +9/+9 and gains trample until end of turn.") {
|
|
|
|
@Override
|
2013-03-22 22:00:53 -07:00
|
|
|
public void executeEvent(final MagicGame game,final MagicEvent event) {
|
2013-03-21 06:35:09 -07:00
|
|
|
event.processTargetPermanent(game,new MagicPermanentAction() {
|
2013-02-15 21:05:03 -08:00
|
|
|
public void doAction(final MagicPermanent creature) {
|
|
|
|
game.doAction(new MagicChangeTurnPTAction(creature,9,9));
|
|
|
|
game.doAction(new MagicSetAbilityAction(creature,MagicAbility.Trample));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|