1
0
Fork 0
sopel-modules/emoticons.py

32 lines
588 B
Python
Raw Normal View History

2018-12-15 15:32:51 +01:00
from sopel.module import commands
@commands("shrug", "we")
def shrug(bot, trigger):
bot.say("¯\_(ツ)_/¯")
@commands("lenny", "lf")
def lenny(bot, trigger):
bot.say("( ͡° ͜ʖ ͡°)")
@commands("ohgod", "ld")
def ohgod(bot, trigger):
bot.say("ಠ_ಠ")
@commands("flip", "tf", "ft")
def flip(bot, trigger):
bot.say("(╯°□°)╯︵ ┻━┻")
@commands("unflip")
def unflip(bot, trigger):
bot.say("┬┬ ( ゜-゜ノ)")
@commands("e")
def e(bot, trigger):
bot.reply(".e is deprecated, please use .{} instead".format(trigger.group(2)))