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

View File

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