mirror of
https://github.com/kaaninchen/Gleiswechsel.git
synced 2026-07-21 19:52:47 +00:00
15 lines
403 B
Python
15 lines
403 B
Python
emoji_list = {
|
|
"Fallback": "🚉",
|
|
"Nahverkehr": "🚃",
|
|
"Höchstgeschwindigkeit": "🚄"
|
|
}
|
|
|
|
train_types = { # Unvollständig! Benötigt testing
|
|
"ICE": emoji_list["Höchstgeschwindigkeit"],
|
|
"TGV": emoji_list["Höchstgeschwindigkeit"],
|
|
|
|
"RE": emoji_list["Nahverkehr"],
|
|
"RB": emoji_list["Nahverkehr"],
|
|
"ARV": emoji_list["Nahverkehr"],
|
|
"BRB": emoji_list["Nahverkehr"],
|
|
} |