magarena/release/Magarena/scripts/Lost_Order_of_Jarkeld.groovy

10 lines
305 B
Groovy
Raw Normal View History

2013-05-23 20:52:22 -07:00
[
new MagicCDA() {
@Override
public void modPowerToughness(final MagicGame game,final MagicPlayer player,final MagicPowerToughness pt) {
final int amount = 1 + player.getOpponent().getNrOfPermanents(MagicType.Creature);
2013-05-23 20:52:22 -07:00
pt.set(amount,amount);
}
}
]