public bool takeWitchsBrew(Hero hero)
        {
            if (witchsBrew != null)
            {
                hero.addItem(witchsBrew);
                witchsBrew = null;
                return(true);
            }

            return(false);
        }
 public void setWitchsBrew(WitchsBrew witchsBrew)
 {
     this.witchsBrew = witchsBrew;
 }