38 public int hurt(
int attackAmount) {
43 return super.hurt(attackAmount);
The Character class represents any game character with a name, skill level, and energy level.
The Student is poor and can only afford using a BadGun.
void hide()
Hides the student from the next attack.
int hurt(int attackAmount)
Calculates the amount of hurt taken from an attack.
Student(String name, int energyLevel, int skillLevel)
Constructs a new Student with the specified name, energy level, and skill level.