()
| 557 | } |
| 558 | |
| 559 | public final boolean canLoseLife() { |
| 560 | return isInGame() && !StaticAbilityCantGainLosePayLife.anyCantLoseLife(this); |
| 561 | } |
| 562 | |
| 563 | public final boolean canPayLife(final int lifePayment, final boolean effect, SpellAbility cause) { |
| 564 | if (lifePayment > 0 && life < lifePayment) { |
no test coverage detected