emojis.py: Bus emoji

This commit is contained in:
Kaaninchen
2026-08-12 19:00:46 +02:00
parent e2e7bf2a14
commit 72b4d3185a
+5 -2
View File
@@ -1,10 +1,11 @@
emoji_list = {
"Fallback": "🚉",
"Nahverkehr": "🚃",
"Höchstgeschwindigkeit": "🚄"
"Höchstgeschwindigkeit": "🚄",
"Bus": "🚎"
}
train_types = { # Unvollständig! Benötigt testing
train_types = { # Unvollständig!
"ICE": emoji_list["Höchstgeschwindigkeit"],
"TGV": emoji_list["Höchstgeschwindigkeit"],
@@ -12,4 +13,6 @@ train_types = { # Unvollständig! Benötigt testing
"RB": emoji_list["Nahverkehr"],
"ARV": emoji_list["Nahverkehr"],
"BRB": emoji_list["Nahverkehr"],
"Bus": emoji_list["Bus"]
}