public class Villain extends Humans { 
    String mustacheColor; 
    String hatColor; 
    String look; 
    int drunkenness; 
    int numberOfDamsels; 
    Humans damsel; 

    public Villain() { 
        look = "Mean"; 
        drunkenness = 0;
        numberOfDamsels = 0; 
    }

    public void drinkWhiskey() { 
        drunkenness ++; 
    } 

    public int howDrunkAmI() { 
        return drunkenness; 
    } 

    public void tieUpDamsel (Humans damsel) { 
        this.damsel = damsel; 
        numberOfDamsels++; 
        System.out.println("The Villain has tied up " +
                           damsel.whatIsYourName()); 
    } 
} 
