|
| 1 | +import random |
| 2 | + |
| 3 | +from cloudbot import hook |
| 4 | + |
| 5 | +balls = ['(_)_)', '8', 'B', '(___)__)', '(_)(_)', '(@)@)', '3'] |
| 6 | +shaft = ['=', '==', '===', '====', '=====', '========', '/////////////////////////', '|||||||||||||', '\u2248\u2248\u2248'] |
| 7 | +head = ['D', 'Q', '>', '|\u2283' '\u22d1', '\u22d9', '\u22d7'] |
| 8 | +emission = ['~ ~ ~ ~', '~ * ~ &', '', '*~* *~* %'] |
| 9 | +bodypart = ['face', 'glasses', 'thigh', 'tummy', 'back', 'hiney', 'hair', 'boobs', 'tongue'] |
| 10 | + |
| 11 | +@hook.command("penis", "bepis", autohelp=False) |
| 12 | +def penis(text, message, nick): |
| 13 | + """much dongs, very ween, add a user nick as an arguement for slightly different 'output'""" |
| 14 | + if not text: |
| 15 | + message("{}{}{}".format(random.choice(balls), random.choice(shaft), random.choice(head))) |
| 16 | + else: |
| 17 | + person = text.split(' ')[0] |
| 18 | + message("{}{}{}{} all over {}'s {}".format(random.choice(balls), random.choice(shaft), random.choice(head),random.choice(emission), person, random.choice(bodypart))) |
0 commit comments