itte/examples/gordon/commands/burger.lua

59 lines
1.1 KiB
Lua

-- See also https://en.wikipedia.org/wiki/Burger
grammar = {
patty = {
"coconut",
"nutty",
"possible",
"soy",
"tofu",
"veggie delight",
},
veggie = {
"kimchi",
"jalapeño peppers",
"lettuce",
"onions",
"pickles",
"tomatoes",
},
cheese = {
"vegan mozzarella cheese",
},
sauce = {
"barbecue sauce",
"curry sauce",
"Dijon mustard",
"ketchup",
},
burger = {
"#patty# burger with #veggie#, #veggie# and #cheese# in #sauce#",
"#patty# burger with #veggie#, #veggie# and #veggie# in #sauce#",
},
side = {
"avocado salad",
"BBQ baked beans",
"BBQ potato chips",
"caesar salad",
"coleslaw",
"corn on the cob",
"corn salad",
"french fries",
"french potato salad",
"fried pickles",
"fried shishito peppers",
"a fruit bowl",
"vegan mac and cheese",
"onion rings",
"potato wedges",
"roasted tomatoes",
"sweet potato fries",
"a three-bean salad",
"tempura green beans",
"zucchini chips",
},
origin = {
"Here, have a #burger#!",
"Here, have a #burger#, served with #side#!",
}
}