1
0
Fork 0
sopel-modules/emoticons.py
Casper V. Kristensen 0b06f00032
Initial commit.
2018-12-15 15:32:51 +01:00

32 lines
588 B
Python
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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)))