2025-plovdiv-ODD/src/italianfood/ingredients_and_toppings.py
2025-07-20 22:10:03 +02:00

17 lines
424 B
Python

# Dough ingredients
FLOUR_PER_PIZZA = 250 # grams
WATER_PER_PIZZA = 150 # grams
SALT_PER_PIZZA = 5 # grams
YEAST_PER_PIZZA = 2 # grams
# Toppings
TOMATO_SAUCE = "tomato sauce"
MOZZARELLA = "mozzarella"
TOPPINGS_MARGARITA_PIZZA = [TOMATO_SAUCE, MOZZARELLA]
TOPPINGS_FUNGHI_PIZZA = [TOMATO_SAUCE, MOZZARELLA, "mushrooms"]
TOPPINGS_VERDURE_GRIGLIATE_PIZZA = [
TOMATO_SAUCE,
MOZZARELLA,
"grilled vegetables"
]