Compare commits
No commits in common. "master" and "master" have entirely different histories.
@ -28,7 +28,6 @@
|
|||||||
|
|
||||||
###
|
###
|
||||||
|
|
||||||
from random import choice
|
|
||||||
from supybot import utils, plugins, ircutils, callbacks
|
from supybot import utils, plugins, ircutils, callbacks
|
||||||
from supybot.commands import *
|
from supybot.commands import *
|
||||||
try:
|
try:
|
||||||
@ -102,10 +101,7 @@ emoji = {'innocent':'ʘ‿ʘ',
|
|||||||
'shy':'(๑•́ ₃ •̀๑)',
|
'shy':'(๑•́ ₃ •̀๑)',
|
||||||
'fly-away':'⁽⁽ଘ( ˊᵕˋ )ଓ⁾⁾',
|
'fly-away':'⁽⁽ଘ( ˊᵕˋ )ଓ⁾⁾',
|
||||||
'careless':'◔_◔',
|
'careless':'◔_◔',
|
||||||
'love': [
|
'love':'♥‿♥',
|
||||||
'♥‿♥',
|
|
||||||
'-`ღ´-',
|
|
||||||
],
|
|
||||||
'ididit':'ԅ(≖‿≖ԅ)',
|
'ididit':'ԅ(≖‿≖ԅ)',
|
||||||
'kissing':'( ˘ ³˘)♥',
|
'kissing':'( ˘ ³˘)♥',
|
||||||
'shark-face':'( ˇ෴ˇ )',
|
'shark-face':'( ˇ෴ˇ )',
|
||||||
@ -144,6 +140,7 @@ emoji = {'innocent':'ʘ‿ʘ',
|
|||||||
'fuck-off':'(° ͜ʖ͡°)╭∩╮',
|
'fuck-off':'(° ͜ʖ͡°)╭∩╮',
|
||||||
'smiley-toast':'ʕʘ̅͜ʘ̅ʔ',
|
'smiley-toast':'ʕʘ̅͜ʘ̅ʔ',
|
||||||
'exorcism':'ح(•̀ж•́)ง †',
|
'exorcism':'ح(•̀ж•́)ง †',
|
||||||
|
'love':'-`ღ´-',
|
||||||
'taking-a-dump':'(⩾﹏⩽)',
|
'taking-a-dump':'(⩾﹏⩽)',
|
||||||
'dab':'ヽ( •_)ᕗ',
|
'dab':'ヽ( •_)ᕗ',
|
||||||
'wave-dance':'~(^-^)~',
|
'wave-dance':'~(^-^)~',
|
||||||
@ -170,8 +167,6 @@ class UnicodeEmoji(callbacks.Plugin):
|
|||||||
re = emoji.get(emote.lower())
|
re = emoji.get(emote.lower())
|
||||||
if re is None:
|
if re is None:
|
||||||
re = emoji['fuck-off']
|
re = emoji['fuck-off']
|
||||||
elif isinstance(re, list):
|
|
||||||
re = choice(re)
|
|
||||||
irc.reply('%s' % re, msg=msg, prefixNick=False )
|
irc.reply('%s' % re, msg=msg, prefixNick=False )
|
||||||
|
|
||||||
e = wrap(e, ['text'])
|
e = wrap(e, ['text'])
|
||||||
|
Loading…
Reference in New Issue
Block a user