remove to Drake Hatchling's script

master
melvin 2013-06-04 17:19:45 +08:00
parent 494ade7b92
commit 1c1719ed7d
2 changed files with 1 additions and 31 deletions

View File

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

View File

@ -9,4 +9,4 @@ cost={2}{U}
pt=1/3
ability=flying
timing=main
requires_groovy_code
requires_groovy_code=Drake Hatchling