forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/helpers/marsify.py

11 lines
277 B
Python

from .const import marsey_mappings
from random import choice
def marsify(text):
new_text = ''
for x in text.split(' '):
new_text += f'{x} '
if 3 < len(x) < 10 and x in marsey_mappings:
marsey = choice(marsey_mappings[x])
new_text += f':{marsey}: '
return new_text