added Plated Rootwalla

master
a. benedict balbuena 2013-05-24 18:21:04 +08:00
parent 9212b17365
commit 21526fd380
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,30 @@
[
new MagicPermanentActivation(
[
MagicCondition.ABILITY_ONCE_CONDITION,
MagicConditionFactory.ManaCost("{2}{G}")
],
new MagicActivationHints(MagicTiming.Pump),
"Pump"
) {
@Override
public MagicEvent[] getCostEvent(final MagicPermanent source) {
return [
new MagicPayManaCostEvent(source,"{2}{G}"),
new MagicPlayAbilityEvent(source)
];
}
@Override
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
return new MagicEvent(
source,
this,
"SN gets +3/+3 until end of turn."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
game.doAction(new MagicChangeTurnPTAction(event.getPermanent(),3,3));
}
}
]

View File

@ -0,0 +1,11 @@
name=Plated Rootwalla
url=http://magiccards.info/br/en/52.html
image=http://magiccards.info/scans/en/br/52.jpg
value=3.754
rarity=C
type=Creature
subtype=Lizard
cost={4}{G}
pt=3/3
timing=main
requires_groovy_code