magarena/release/Magarena/scripts/Scion_of_the_Wild.groovy

10 lines
320 B
Groovy
Raw Normal View History

2013-04-12 19:58:51 -07:00
[
new MagicCDA() {
@Override
public void modPowerToughness(final MagicGame game,final MagicPlayer player,final MagicPowerToughness pt) {
final int size = game.filterPermanents(player,MagicTargetFilter.TARGET_CREATURE_YOU_CONTROL).size();
pt.set(size, size);
}
}
]