summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorNatrixAeria <upezu@student.kit.edu>2020-10-19 17:09:33 +0200
committerNatrixAeria <upezu@student.kit.edu>2020-10-19 17:09:33 +0200
commit1cd2075a42d422c81f31a4341f208b542bb9139f (patch)
treefbd7adcec5b12c8329649ca68db0b92d45b46a1b /config.py
parent867d9fe61528de345e6b0ce38b49771002d8fe3a (diff)
Add scoring system
Diffstat (limited to 'config.py')
-rw-r--r--config.py38
1 files changed, 28 insertions, 10 deletions
diff --git a/config.py b/config.py
index 240e602..c1843d8 100644
--- a/config.py
+++ b/config.py
@@ -1,27 +1,45 @@
-NAME = 'cupido'
+NAME = 'shuffle bot'
TOKEN_ENV_VAR = 'DISCORD_TOKEN'
TUTOR_FILE_PATH = 'tutors'
-COMMAND_PREFIX = '!<3 '
+COMMAND_PREFIX = 's!'
-GAME_STATUS = 'with love'
+GAME_STATUS = 'dich aus'
HELP_TEXT = f'''{NAME.title()} - your partner for getting shuffled.
{NAME.title()} is a discord bot to get to know your people.
This software is open-source <https://git.kobert.dev/lovefinderrz.git/>!
'''
-CATEGORY_CHANNEL_NAME = NAME.title()
-LOBBY_CHANNEL_NAME = 'lobby'
-LOBBY_CHANNEL_TOPIC = "You wanna get shuffled? You're at the right place!"
+CATEGORY_CHANNEL_NAME = 'KENNENLERNEN'
+LOBBY_CHANNEL_NAME = 'Lobby'
+LOBBY_CHANNEL_TOPIC = "Wer auch schon immer so richtig durchgeshuffelt werden wollte ist hier genau richtig!"
# time that one loop cycle needs (in seconds)
-DEFAULT_LOOP_TIME = 120
+DEFAULT_LOOP_TIME = 3 * 60
# time that cycles, that "loop" passes
DEFAULT_LOOP_COUNT = 3
EMOJI_POOL = ['๐Ÿ‘พ', '๐Ÿค–', '๐Ÿ‘ป', '๐Ÿฆง', '๐Ÿด', '๐ŸŽฎ', '๐ŸŽท', '๐Ÿ˜ˆ', '๐Ÿฆ„', '๐Ÿฎ', '๐ŸŒป', '๐Ÿ˜', '๐Ÿ•', '๐Ÿฆ‰']
-PANEL_TITLE = f'{NAME.title()} control panel'
+PANEL_TITLE = f'Wer ist Tutor?'
PANEL_TEXT = '''
-You have the choice!
-If you think, there are imposters among us, add a reaction with the corresponding emoji:'''
+Wenn **du** der Meinung bist, dass du gerade mit einem **Tutor** sprichst,
+dann stimme jetzt mit einem der entsprechenden Emojis unten ab:
+'''
+
+SUCCESS_POINTS = 1
+SUCCESS_TITLE = 'Du bist ein Sieger!'
+SUCCESS_TEXT = f'''
+Du hast einen Tutor entlarvt ({{tutor}})!! ๐Ÿฅณ๐Ÿ‘
+** -> +{SUCCESS_POINTS} points <- **
+๐Ÿช™ Du hast nun **{{points}}** Punkte ๐Ÿช™
+'''
+
+FAILIURE_POINTS = 0
+FAILIURE_TITLE = 'Schade'
+FAILIURE_TEXT = f'''
+Schade. {{user}} war kein Tutor ๐Ÿ˜”
+Vielleicht ja beim nรคchsten Mal ๐Ÿ˜Ž
+** -> +{FAILIURE_POINTS} points <- **
+๐Ÿช™ Du hast nun **{{points}}** Punkte ๐Ÿช™
+'''