magarena/release/Magarena/scripts/Rusting_Golem.groovy

14 lines
401 B
Groovy
Raw Normal View History

[
new MagicCDA() {
2012-06-17 05:19:08 -07:00
@Override
public void modPowerToughness(
final MagicGame game,
final MagicPlayer player,
final MagicPermanent permanent,
final MagicPowerToughness pt) {
2012-06-17 05:19:08 -07:00
final int amount = permanent.getCounters(MagicCounterType.Charge);
pt.set(amount,amount);
}
}
]