magarena/release/Magarena/scripts/Krovikan_Mist.groovy

12 lines
386 B
Groovy
Raw Normal View History

2013-05-24 03:34:07 -07:00
[
new MagicCDA() {
@Override
public void modPowerToughness(final MagicGame game,final MagicPlayer player,final MagicPowerToughness pt) {
2013-06-23 18:29:26 -07:00
final int amount =
player.getNrOfPermanents(MagicSubType.Illusion) +
player.getOpponent().getNrOfPermanents(MagicSubType.Illusion);
2013-05-24 03:34:07 -07:00
pt.set(amount,amount);
}
}
]