magarena/release/Magarena/scripts/Rubblehulk.groovy

23 lines
1.0 KiB
Groovy
Raw Normal View History

2013-02-14 06:24:27 -08:00
[
new MagicCDA() {
@Override
public void modPowerToughness(final MagicGame game,final MagicPlayer player,final MagicPowerToughness pt) {
final int size = game.filterPermanents(player,MagicTargetFilter.TARGET_LAND_YOU_CONTROL).size();
pt.set(size, size);
}
},
new MagicBloodrushActivation(
MagicManaCost.create("{1}{R}{G}"),
"Target attacking creature\$ gets +X/+X until end of turn, where X is the number of lands you control.") {
2013-02-14 06:24:27 -08:00
@Override
public void executeEvent(final MagicGame game,final MagicEvent event,final Object[] choiceResults) {
final int size = game.filterPermanents(event.getPlayer(),MagicTargetFilter.TARGET_LAND_YOU_CONTROL).size();
2013-03-20 06:36:49 -07:00
event.processTargetPermanent(game,choiceResults,new MagicPermanentAction() {
2013-02-14 06:24:27 -08:00
public void doAction(final MagicPermanent creature) {
game.doAction(new MagicChangeTurnPTAction(creature,size,size));
}
});
}
}
]