tuxbot-bot/utils/functions/emotes.py

11 lines
279 B
Python
Raw Normal View History

emotes = ['1⃣', '2⃣', '3⃣', '4⃣', '5⃣', '6⃣', '7⃣', '8⃣', '9⃣', '🔟', '0⃣',
2019-10-26 21:19:47 +00:00
'🇦', '🇧', '🇨', '🇩', '🇪', '🇫', '🇬', '🇭', '🇮']
def get(count):
return emotes[:count]
def get_index(emote):
2019-10-26 21:19:47 +00:00
return emotes.index(emote)