tuxbot-bot/tuxbot/cogs/Polls/functions/emotes.py
2021-04-21 18:28:50 +02:00

11 lines
181 B
Python

emotes = [chr(0x1F1E6 + i) for i in range(26)]
check = (chr(0x2714), chr(0x2716))
def get(count):
return emotes[:count]
def get_index(emote):
return emotes.index(emote)