2013-05-24 04:00:37 -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 =
|
2013-07-14 04:50:06 -07:00
|
|
|
player.getNrOfPermanents(MagicType.Creature) +
|
|
|
|
player.getOpponent().getNrOfPermanents(MagicType.Creature);
|
2013-05-24 04:00:37 -07:00
|
|
|
pt.set(amount,amount);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|