magarena/release/Magarena/scripts/Doubtless_One.groovy

12 lines
382 B
Groovy
Raw Normal View History

2013-07-18 03:33:54 -07:00
[
new MagicCDA() {
@Override
public void modPowerToughness(final MagicGame game,final MagicPlayer player,final MagicPowerToughness pt) {
final int amount =
2013-07-18 03:59:26 -07:00
player.getNrOfPermanents(MagicSubType.Cleric) +
player.getOpponent().getNrOfPermanents(MagicSubType.Cleric);
2013-07-18 03:33:54 -07:00
pt.set(amount,amount);
}
}
]