itte/examples/hachi/foils/pizza.lua

182 lines
3.6 KiB
Lua

grammar = {
cheese = {
"asiago",
"bocconcini",
"catupiry",
"cheddar",
"feta",
"fontina",
"goat cheese",
"gorgonzola",
"Monterey Jack",
"mozzarella",
"Oaxaca cheese",
"paneer",
"parmesan",
"provolone",
"ricotta",
"stracchino"
},
crust = {
"deep-dish",
"extra-thick crust",
"mochi crust",
"Neapolitan",
"Roman",
"square",
"thick crust",
"thin crust"
},
herb = {
"basil",
"cilantro",
"dill",
"oregano",
"rosemary"
},
meat = {
"bacon",
"bulgogi beef",
"rendang beef",
"roast beef",
"satay beef",
"achari chicken",
"balado chicken",
"dak galbi",
"grilled chicken",
"rendang chicken",
"rotisserie chicken",
"tandoori chicken",
"teriyaki chicken",
"chicken tikka masala",
"chorizo",
"crocodile",
"emu",
"ham",
"parma ham",
"döner kebab",
"meatballs",
"Peking duck",
"peperoncini",
"pepperoni",
"prosciutto",
"salami",
"sauage",
"German sausage",
"Maltese sausage",
"tripas"
},
mushroom = {
"cremini mushrooms",
"enoki",
"portobello mushrooms",
"shiitake",
"truffle"
},
seafood = {
"anchovies",
"canned tuna",
"clams",
"crab meat",
"crawfish",
"eel",
"lobster",
"mussels",
"oysters",
"poke",
"prawns",
"salmon",
"salmon teriyaki",
"scallops",
"scampi",
"scungilli",
"shrimp",
"tom yum and shrimp",
"smoked salmon",
"squid",
"tuna"
},
vegetable = {
"artichokes",
"arugula",
"asparagus",
"avocado",
"broccoli",
"capers",
"chilis",
"jalapeños",
"serrano chilis",
"corn",
"cucumbers",
"pickled cucumbers",
"kale",
"kimchi",
"green olives",
"onions",
"red onions",
"green peppers",
"red peppers",
"red bell peppers",
"peas",
"potatoes",
"sweet potatoes",
"tomatoes",
"sun-dried tomatoes",
"spinach",
"zucchini"
},
garnish = {
"ground black pepper",
"minced garlic",
"melted butter",
"curry",
"marinara",
"olive oil",
"extra virgin olive oil",
"balsamic vinegar",
"barbecue sauce",
"béarnaise sauce",
"brown sauce",
"donair sauce",
"honey barbecue sauce",
"sriracha",
"tabasco sauce",
"tomato sauce",
"white sauce"
},
other = {
"hard-boiled eggs",
"labane",
"nachos",
"poutine",
"bananas",
"pineapples"
},
topping = {
"#cheese#",
"#herb#",
"#meat#",
"#mushroom#",
"#other#",
"#seafood#",
"#vegetable#"
},
forecast = {
"#crust#, #topping# and #topping# with a chance of #topping#",
"lots of #topping#, with #topping# all the way to the #crust#, and a greater chance of #topping# and #topping# throughout",
"a meaty mix of #meat#, #meat# and #meat#",
"a toss-up of #vegetable#, #vegetable# and #vegetable#",
"a dynamic system of #cheese# and #cheese# is moving in towards the #crust#, along with more #cheese#",
"some scattered #vegetable#, high on the #mushroom#, and just a touch of #topping# below",
"a pretty #crust# with lots of #mushroom#, #herb# and #garnish#",
"plenty of #topping# and #garnish#, followed by trace amounts of #herb#",
"#topping#, #topping# and a shower of #garnish#",
"#meat# and #vegetable# followed later by #cheese#",
"expect some #garnish# and #herb# over the #topping# and #topping#",
"starts with some #meat#, then moves into #vegetable# and #mushroom# over the #crust#"
},
origin = {
"Pizza forecast: #forecast#"
}
}