1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-30 15:04:18 +00:00

Fix emojify

This commit is contained in:
Steffo 2019-12-17 20:48:44 +01:00
parent 335a7fa1dd
commit fe30bcfbda
3 changed files with 25 additions and 30 deletions

View file

@ -2,7 +2,7 @@
[tool.poetry] [tool.poetry]
name = "royalpack" name = "royalpack"
version = "5.1.7" version = "5.1.8"
description = "A Royalnet command pack for the Royal Games community" description = "A Royalnet command pack for the Royal Games community"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"] authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+" license = "AGPL-3.0+"

View file

@ -9,11 +9,13 @@ class EmojifyCommand(Command):
syntax = "{messaggio}" syntax = "{messaggio}"
# noinspection InvisibleCharacter
_emojis = { _emojis = {
"abcd": ["🔡", "🔠"], "abcd": ["🔡", "🔠"],
"back": ["🔙"], "back": ["🔙"],
"cool": ["🆒"], "cool": ["🆒"],
"free": ["🆓"], "free": ["🆓"],
"1234": ["🔢"],
"abc": ["🔤"], "abc": ["🔤"],
"atm": ["🏧"], "atm": ["🏧"],
"new": ["🆕"], "new": ["🆕"],
@ -21,6 +23,8 @@ class EmojifyCommand(Command):
"top": ["🔝"], "top": ["🔝"],
"zzz": ["💤"], "zzz": ["💤"],
"end": ["🔚"], "end": ["🔚"],
"777": ["🎰"],
"100": ["💯"],
"ab": ["🆎"], "ab": ["🆎"],
"cl": ["🆑"], "cl": ["🆑"],
"id": ["🆔"], "id": ["🆔"],
@ -32,6 +36,12 @@ class EmojifyCommand(Command):
"tm": ["™️"], "tm": ["™️"],
"wc": ["🚾"], "wc": ["🚾"],
"up": ["🆙"], "up": ["🆙"],
"!!": ["‼️"],
"!?": ["⁉️"],
"69": ["♋️"],
"24": ["🏪"],
"18": ["🔞"],
"10": ["🙌", "🔟", "🤲"],
"a": ["🅰️"], "a": ["🅰️"],
"b": ["🅱️"], "b": ["🅱️"],
"c": ["☪️", "©", "🥐"], "c": ["☪️", "©", "🥐"],
@ -58,20 +68,9 @@ class EmojifyCommand(Command):
"x": ["🙅‍♀", "🙅‍♂", "", ""], "x": ["🙅‍♀", "🙅‍♂", "", ""],
"y": ["💴"], "y": ["💴"],
"z": ["⚡️"], "z": ["⚡️"],
"*": ["*️⃣"], "*": ["*️⃣"],
"!!": ["‼️"],
"!?": ["⁉️"],
"!": ["❗️", "", "⚠️"], "!": ["❗️", "", "⚠️"],
"?": ["", ""], "?": ["", ""],
"1234":["🔢"],
"777":["🎰"],
"100":["💯"],
"69":["♋️"],
"24":["🏪"],
"18":["🔞"],
"10":["🙌", "🔟", "🤲"],
"9": ["9"], "9": ["9"],
"8": ["🎱", "8"], "8": ["🎱", "8"],
"7": ["7"], "7": ["7"],
@ -82,13 +81,9 @@ class EmojifyCommand(Command):
"2": ["✌️", "🤘", "🥈", "2"], "2": ["✌️", "🤘", "🥈", "2"],
"1": ["👆", "☝️", "🖕", "🥇", "1"], "1": ["👆", "☝️", "🖕", "🥇", "1"],
"0": ["⭕️", "🅾️", "📯", "🌝", "🌚", "🌕", "🥯", "🙆‍♀", "🙆‍♂", "0"], "0": ["⭕️", "🅾️", "📯", "🌝", "🌚", "🌕", "🥯", "🙆‍♀", "🙆‍♂", "0"],
"!":["❗️", "", "⚠️"],
"?":["", ""],
"+": ["🏥"], "+": ["🏥"],
"/": ["🏒", "🧪", "🧹"], "/": ["🏒", "🧪", "🧹"],
"\":["🍢", "🍡", "🥄", "🌂"], "\\": ["🍢", "🍡", "🥄", "🌂"],
"*":["✳️", "✴️"],
} }
@classmethod @classmethod

View file

@ -1 +1 @@
semantic = "5.1.7" semantic = "5.1.8"