()
| 6019 | |
| 6020 | // this is the amount of damage a creature needs to receive before it dies |
| 6021 | public final int getLethal() { |
| 6022 | if (hasKeyword("Lethal damage dealt to CARDNAME is determined by its power rather than its toughness.")) { |
| 6023 | return getNetPower(); |
| 6024 | } |
| 6025 | return getNetToughness(); |
| 6026 | } |
| 6027 | |
| 6028 | // this is the minimal damage a trampling creature has to assign to a blocker |
| 6029 | public final int getLethalDamage() { |
no test coverage detected