Added SCRY game event.

This commit is contained in:
LevelX2 2013-09-18 21:14:52 +02:00
parent 57f8fbc543
commit a5b56c31c1
3 changed files with 5 additions and 2 deletions

View file

@ -112,10 +112,11 @@ public class SacrificeAllEffect extends OneShotEffect<SacrificeAllEffect> {
StringBuilder sb = new StringBuilder();
sb.append("Each players sacrifices ");
if (amount.toString().equals("X")) {
sb.append(amount.toString()).append(" ");
sb.append(amount.toString());
} else {
sb.append(CardUtil.numberToText(amount.toString()));
}
sb.append(" ");
sb.append(filter.getMessage());
staticText = sb.toString();
}