10 lines
181 B
Python
10 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)
|