18 lines
643 B
Groovy
18 lines
643 B
Groovy
[
|
|
new MagicWhenDiesTrigger() {
|
|
@Override
|
|
public MagicEvent executeTrigger(final MagicGame game, final MagicPermanent permanent, final MagicMoveCardAction data) {
|
|
return new MagicEvent(
|
|
permanent,
|
|
this,
|
|
"PN puts a 3/3 white Bird creature token with flying onto the battlefield."
|
|
);
|
|
}
|
|
|
|
@Override
|
|
public void executeEvent(final MagicGame game, final MagicEvent event) {
|
|
game.doAction(new MagicPlayTokenAction(event.getPlayer(),TokenCardDefinitions.get("3/3 white Bird creature token with flying")));
|
|
}
|
|
}
|
|
]
|