fixed errors in groovy code

master
melvin 2013-04-01 14:06:10 +08:00
parent 1e7f6f1d71
commit 95640e2aee
5 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
player, player,
creature, creature,
this, this,
creature+" gains lifelink until end of turn." "RN gains lifelink until end of turn."
): ):
MagicEvent.NONE; MagicEvent.NONE;
} }

View File

@ -6,7 +6,7 @@
cardOnStack, cardOnStack,
MagicTargetChoice.POS_TARGET_PLAYER, MagicTargetChoice.POS_TARGET_PLAYER,
this, this,
"Target player$ gains 7 life." 'Target player$ gains 7 life.'
); );
} }
@Override @Override

View File

@ -7,7 +7,7 @@
player, player,
MagicTargetChoice.TARGET_OPPONENT, MagicTargetChoice.TARGET_OPPONENT,
this, this,
"Target opponent$ loses 3 life." 'Target opponent$ loses 3 life.'
); );
} }

View File

@ -9,7 +9,7 @@
new MagicPayManaCostChoice(MagicManaCost.create("{2}")) new MagicPayManaCostChoice(MagicManaCost.create("{2}"))
), ),
this, this,
"You may$ pay {2}$. If you do, draw a card." 'You may$ pay {2}$. If you do, draw a card.'
); );
} }

View File

@ -10,7 +10,7 @@
player, player,
creature, creature,
this, this,
creature + " gets +2/+2 until end of turn." "RN gets +2/+2 until end of turn."
): ):
MagicEvent.NONE; MagicEvent.NONE;
} }