override public bool canAcceptFood(FoodProperty property) { if (property.GetProperty(FoodProperty.Property.Warmth) >= 7) { return(true); } return(false); }
override public bool canAcceptFood(FoodProperty property) { if (property.GetPropertyBool(FoodProperty.PropertyBool.Vegetables) == true && property.GetProperty(FoodProperty.Property.Greasiness) >= 5) { return(true); } return(false); }