Removes damage from the current Health of the character and returns the remaining health.
damage
int removeHealth(int damage) { current -= damage; return current; }