added Wild Aesthir

master
a. benedict balbuena 2013-05-24 17:46:50 +08:00
parent a162aa5e86
commit 7c23c6ddcd
2 changed files with 42 additions and 0 deletions

View File

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

View File

@ -0,0 +1,12 @@
name=Wild Aesthir
url=http://magiccards.info/me4/en/34.html
image=http://magiccards.info/scans/en/me4/34.jpg
value=3.754
rarity=C
type=Creature
subtype=Bird
cost={2}{W}
pt=1/1
ability=flying,first strike
timing=main
requires_groovy_code