replace groovy code with card script

master
melvin 2013-10-31 17:25:45 +08:00
parent 30888b4958
commit dcf9203db1
2 changed files with 2 additions and 28 deletions

View File

@ -53,32 +53,5 @@ def ST = new MagicStatic(MagicLayer.Type, MagicStatic.UntilEOT) {
public void executeEvent(final MagicGame game, final MagicEvent event) {
game.doAction(new MagicBecomesCreatureAction(event.getPermanent(),PT,AB,ST));
}
},
new MagicPermanentActivation(
new MagicActivationHints(MagicTiming.Pump,true),
"Pump"
) {
@Override
public Iterable<MagicEvent> getCostEvent(final MagicPermanent source) {
return [new MagicTapEvent(source), new MagicPayManaCostEvent(source, "{1}")];
}
@Override
public MagicEvent getPermanentEvent(final MagicPermanent source,final MagicPayedCost payedCost) {
return new MagicEvent(
source,
MagicTargetChoice.POS_TARGET_BLINKMOTH_CREATURE,
MagicPumpTargetPicker.create(),
this,
"Target Blinkmoth creature\$ gets +1/+1 until end of turn."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent creature) {
game.doAction(new MagicChangeTurnPTAction(creature,1,1));
}
});
}
}
]

View File

@ -4,7 +4,8 @@ image=http://magiccards.info/scans/en/ds/163.jpg
value=4.038
rarity=R
type=Land
ability=tap add mana {1}
ability=tap add mana {1};\
pay {1}, {T}: Target Blinkmoth creature gets +1/+1 until end of turn.
timing=land
mana_or_combat
requires_groovy_code