[WHO] Implement Davros, Dalek Creator (#11313)

This commit is contained in:
Susucre 2023-10-16 20:36:36 +02:00 committed by GitHub
parent 116767e234
commit 06dc5be2d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 184 additions and 11 deletions

View file

@ -42,12 +42,18 @@ public class OpponentLostLifeCondition extends IntCompareCondition {
case MORE_THAN:
sb.append(value + 1).append(" or more life this turn");
break;
case OR_GREATER:
sb.append(value).append(" or more life this turn");
break;
case EQUAL_TO:
sb.append(value).append(" life this turn");
break;
case FEWER_THAN:
sb.append(" less than ").append(value).append(" life this turn");
break;
case OR_LESS:
sb.append(value).append(" or less life this turn");
break;
}
return sb.toString();
}