| 3324 | int Vehicle::getConstitution() const { return this->getHealth() + this->getShield(); } |
| 3325 | |
| 3326 | int Vehicle::getMaxHealth() const |
| 3327 | { |
| 3328 | auto et = getEquipmentTypes(); |
| 3329 | return this->type->getMaxHealth(et.begin(), et.end()); |
| 3330 | } |
| 3331 | |
| 3332 | int Vehicle::getHealth() const { return this->health; } |
| 3333 |
no test coverage detected