import java.awt.Color;

public class Female extends Human {
	// OVERVIEW: A Female is a subtype of the Human class.  Female represent
	// three age categories: baby, adult, and senior (representing a specific
	// age and color: pink, red, and magenta, respectively.

	public Female() {
		this(1);
	}

	public Female(int ageF) {

		super(ageF);

		inTurn = false;

	}

	public Color getNaturalColor()
	// Effects:  Returns color depending upon the state of this.
	 {
		if (age <= 5) {
			return Color.pink;
		} else if (age <= 15) {
			return Color.red;
		} else {
			return Color.magenta;
		}
	}

	public int getGender() {
		// Effects: Returns the gender of this.

		return genderF;
	}
}