Expand introductions

Add a new one for favourite dishes and introduce the possibitly to have
replaceable tokens in introductions.
This commit is contained in:
Mikkel Munch Mortensen 2023-07-12 10:16:37 +02:00
parent 67d4a64f92
commit 3230a077d1
1 changed files with 28 additions and 3 deletions

View File

@ -157,6 +157,7 @@ else:
for emoji, keywords in {
"flag-in": ["indisk", "indien"],
"flag-gr": ["græsk", "grækenland"],
"flag-kr": ["korea"],
"hushed": ["surprise", "surprice"],
"fish": ["fisk", "laks", "rødspætte", "sej ", "kulmule"],
"shrimp": ["reje"],
@ -184,11 +185,13 @@ else:
"hamburger": ["burger"],
"sandwich": ["sandwich"],
"stuffed_flatbread": ["pita"],
"flatbread": ["naanbrød", " naan"],
"pie": ["tærte"],
"hotdog": ["hotdog"],
"hotdog": ["hotdog", "pølse"],
"fries": ["fritter "],
"wine_glass": ["coq au vin"],
"bowl_with_spoon": ["suppe"],
"fire": ["grill", "brændt"],
"fire": ["grill", "brændt", "bbq"],
"stew": ["gryde", "gullasch"],
"rice": [" ris "],
"ramen": ["nudler"],
@ -198,7 +201,7 @@ else:
"apple": ["æble"],
"peanuts": ["peanut"],
"baguette_bread": ["flute"],
"flag-dk": ["tillykke", "fødselsdag"],
"birthday": ["tillykke", "fødselsdag"],
"wave": ["farvel"],
"gift_heart": ["valentines"],
}.items():
@ -214,6 +217,26 @@ else:
sys.stdout.write("No emojis determined.\n")
# Pick an introduction for the menu.
tokens = {
"persons": random.choice([
"Abrahims",
"Elias'",
"Martins",
"Benjamins",
"Karstens",
"Josephines",
"Christians",
"Davids",
"Pias",
"Minas",
"Mariannes",
"Alexanders",
"Mettes",
"Jellings",
"Imers",
"Djinnies",
]),
}
introduction = random.choice(
[
"Dagens menu er",
@ -221,8 +244,10 @@ else:
"Du kan godt glæde dig til senere! For vi skal have",
"Der bliver knoklet i køkkenet for at blive klar til at servere",
"Klokken 11:30 har kantinen fremtryllet en lækker omgang",
"I dag skal vi have {persons} livret:",
]
)
introduction = introduction.format(**tokens)
sys.stdout.write(f"Introduction picked: {introduction}\n")
# Retrieve a photo of the menu from Craiyon.