mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
[WHO] Implement Davros, Dalek Creator (#11313)
This commit is contained in:
parent
116767e234
commit
06dc5be2d8
4 changed files with 184 additions and 11 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue