Explorer Class
nIf stamina reaches 0, an explorer is defeated.
nOne possible solution:
npublic void takeHit (int hitStrength){
n if (hitStrength <= staminaPoints)
n staminaPoints = staminaPoints -     hitStrength;
n}
nBut this rarely lets the  staminaPoints reach zero.