cost after subtype, removal after timing

master
melvin 2013-10-13 18:28:17 +08:00
parent ad32978cd5
commit 4b4cdc16f2
2 changed files with 6 additions and 7 deletions

View File

@ -7,8 +7,8 @@
MagicTargetChoice.NEG_TARGET_CREATURE,
MagicExileTargetPicker.create(),
this,
"Exile target creature\$. Its controller puts a 1/1 colorless Shapeshifter " +
" creature token with changeling onto the battlefield."
"Exile target creature\$. " +
"Its controller puts a 1/1 colorless Shapeshifter creature token with changeling onto the battlefield."
);
}
@Override
@ -16,10 +16,9 @@
event.processTargetPermanent(game,new MagicPermanentAction() {
public void doAction(final MagicPermanent creature) {
game.doAction(new MagicRemoveFromPlayAction(creature,MagicLocationType.Exile));
game.doAction(new MagicPlayTokensAction(
game.doAction(new MagicPlayTokenAction(
creature.getController(),
TokenCardDefinitions.get("Changeling"),
1
TokenCardDefinitions.get("Changeling")
));
}
});

View File

@ -3,10 +3,10 @@ url=http://magiccards.info/lw/en/11.html
image=http://magiccards.info/scans/en/lw/11.jpg
value=4.065
rarity=U
removal=4
cost={2}{W}
type=Tribal,Instant
subtype=Shapeshifter
cost={2}{W}
ability=changeling
timing=removal
removal=4
requires_groovy_code