from entities.items.item import Item
class Food(Item):
def __init__(self, calorie: int):
super().__init__(name="")
self.calorie_value = calorie