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,
creature,
this,
creature+" gains lifelink until end of turn."
"RN gains lifelink until end of turn."
):
MagicEvent.NONE;
}

View File

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

View File

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

View File

@ -9,7 +9,7 @@
new MagicPayManaCostChoice(MagicManaCost.create("{2}"))
),
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,
creature,
this,
creature + " gets +2/+2 until end of turn."
"RN gets +2/+2 until end of turn."
):
MagicEvent.NONE;
}