Files
gleiswechsel/src/data/operators.py
T
Kaaninchen 723df6bf99 a lot
i forgot to do commits, how unprofessional... i restructured the bot and made the /info and /umstieg command. Bot's almost done, the only thing missing now is the loop
2026-07-17 01:19:24 +02:00

30 lines
1.0 KiB
Python

db_logo = "https://marketingportal.extranet.deutschebahn.com/resource/blob/13602522/c53f806b9df966e144010b276af72dd2/Bild_09-data.png"
db_slogans = ["Senk ju vor träwelling wis Deutsche Bahn.", "Bitte beachten Sie die umgekehrte Wagenreihung.", "Zurückbleiben bitte!", "Alle reden vom Wetter. Wir nicht.", "Die Bahn macht mobil.", "Grün abgefahren"]
OPERATORS = {
# alles außer slogan ist ESSENZIELL für den Bot.
# Color ist Hex Color Code mit 0x am anfang.
"fallback": {
"name": "Unbekannter Anbieter",
"logo": "https://upload.wikimedia.org/wikipedia/commons/2/20/Bahn_aus_Zusatzzeichen_1024-15_A.png",
"color": 0x000000
},
"ICE": {
"name": "Deutsche Bahn",
"logo": db_logo,
"color": 0xEC0016,
"slogan": db_slogans
},
"RB": {
"name": "DB Regio",
"logo": db_logo,
"color": 0xEC0016,
"slogan": db_slogans
},
"RE": {
"name": "DB Regio",
"logo": db_logo,
"color": 0xEC0016,
"slogan": db_slogans
}
}