forked from russellb/sopelmods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactions.py
executable file
·57 lines (44 loc) · 2.68 KB
/
actions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
from random import choice
def table(phenny, input):
phenny.say('(╯°□°)╯︵ ┻━┻')
table.commands = ['table', 'rage']
def untable(phenny, input):
phenny.say('┬┬ ノ(゜-゜ノ)')
untable.commands = ['untable', 'putitback', 'unrage']
def dapper(phenny, input):
phenny.say('┌─┐')
phenny.say('┴─┴')
phenny.say('ಠ_ರೃ')
dapper.commands = ['dapper']
def joyful(phenny, input):
joyful_emotes = ['🙌', '😀', '😁', '😂', '😃', '😄', '😅']
phenny.say(choice(joyful_emotes))
joyful.commands = ['huzzuh', 'awesome', 'happy', 'smile']
def finger(phenny, input):
fingers = ['┌∩┐(◣_◢)┌∩┐', '凸(¬‿¬)凸']
phenny.say(choice(fingers))
finger.commands = ['finger']
def umadbro(phenny, input):
phenny.say('¯\_(ツ)_/¯')
umadbro.commands = ['umadbro']
def troll(phenny, input):
phenny.say('░░░░░▄▄▄▄▀▀▀▀▀▀▀▀▄▄▄▄▄▄░░░░░░░')
phenny.say('░░░░░█░░░░▒▒▒▒▒▒▒▒▒▒▒▒░░▀▀▄░░░░')
phenny.say('░░░░█░░░▒▒▒▒▒▒░░░░░░░░▒▒▒░░█░░░')
phenny.say('░░░█░░░░░░▄██▀▄▄░░░░░▄▄▄░░░░█░░')
phenny.say('░▄▀▒▄▄▄▒░█▀▀▀▀▄▄█░░░██▄▄█░░░░█░')
phenny.say('█░▒█▒▄░▀▄▄▄▀░░░░░░░░█░░░▒▒▒▒▒░█')
phenny.say('█░▒█░█▀▄▄░░░░░█▀░░░░▀▄░░▄▀▀▀▄▒█')
phenny.say('░█░▀▄░█▄░█▀▄▄░▀░▀▀░▄▄▀░░░░█░░█░')
phenny.say('░░█░░░▀▄▀█▄▄░█▀▀▀▄▄▄▄▀▀█▀██░█░░')
phenny.say('░░░█░░░░██░░▀█▄▄▄█▄▄█▄████░█░░░')
phenny.say('░░░░█░░░░▀▀▄░█░░░█░█▀██████░█░░')
phenny.say('░░░░░▀▄░░░░░▀▀▄▄▄█▄█▄█▄█▄▀░░█░░')
phenny.say('░░░░░░░▀▄▄░▒▒▒▒░░░░░░░░░░▒░░░█░')
phenny.say('░░░░░░░░░░▀▀▄▄░▒▒▒▒▒▒▒▒▒▒░░░░█░')
phenny.say('░░░░░░░░░░░░░░▀▄▄▄▄▄░░░░░░░░█░░')
troll.commands = ['troll','trollface']
def trololo(phenny, input):
phenny.say('http://bit.ly/SJdlXh')
trololo.commands = ['trolo', 'trololo', 'trolololo']