magarena/release/Magarena/scripts/Loam_Lion.groovy

14 lines
531 B
Groovy
Raw Normal View History

2013-03-13 06:23:24 -07:00
[
new MagicStatic(MagicLayer.ModPT) {
2012-06-17 05:19:08 -07:00
@Override
public void modPowerToughness(final MagicPermanent source,final MagicPermanent permanent,final MagicPowerToughness pt) {
final MagicGame game = source.getGame();
final Collection<MagicPermanent> targets =
game.filterPermanents(permanent.getController(),MagicTargetFilter.TARGET_FOREST_YOU_CONTROL);
2012-06-17 05:19:08 -07:00
if (targets.size() > 0) {
pt.add(1,2);
}
}
2013-03-13 06:23:24 -07:00
}
]