replace groovy code with ability in card script

master
melvin 2013-10-22 21:50:43 +08:00
parent 443a05db45
commit 4fb3575507
2 changed files with 1 additions and 22 deletions

View File

@ -1,21 +0,0 @@
[
new MagicWhenComesIntoPlayTrigger() {
@Override
public MagicEvent executeTrigger(final MagicGame game, final MagicPermanent permanent, final MagicPayedCost payedCost) {
return new MagicEvent(
permanent,
this,
"PN puts two 1/1 red Goblin creature tokens onto the battlefield."
);
}
@Override
public void executeEvent(final MagicGame game, final MagicEvent event) {
game.doAction(new MagicPlayTokensAction(
event.getPlayer(),
TokenCardDefinitions.get("Goblin1"),
2
));
}
}
]

View File

@ -7,5 +7,5 @@ type=Creature
subtype=Goblin,Warrior subtype=Goblin,Warrior
cost={2}{R}{R} cost={2}{R}{R}
pt=2/2 pt=2/2
ability=enters effect PN puts two 1/1 red Goblin creature tokens onto the battlefield.
timing=main timing=main
requires_groovy_code