Adds damage to the current Health of the character and returns the remaining health.
damage
int addHealth(int damage) { current += damage; return current; }