1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-27 13:34:28 +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,37 +68,22 @@ class EmojifyCommand(Command):
"x": ["🙅‍♀", "🙅‍♂", "", ""], "x": ["🙅‍♀", "🙅‍♂", "", ""],
"y": ["💴"], "y": ["💴"],
"z": ["⚡️"], "z": ["⚡️"],
"*": ["*️⃣"], "*": ["*️⃣"],
"!!": ["‼️"],
"!?": ["⁉️"],
"!": ["❗️", "", "⚠️"], "!": ["❗️", "", "⚠️"],
"?": ["", ""], "?": ["", ""],
"9": ["9"],
"1234":["🔢"], "8": ["🎱", "8"],
"777":["🎰"], "7": ["7"],
"100":["💯"], "6": ["6"],
"69":["♋️"], "5": ["", "🤚", "👋", "5"],
"24":["🏪"], "4": ["4"],
"18":["🔞"], "3": ["🥉", "3"],
"10":["🙌", "🔟", "🤲"], "2": ["✌️", "🤘", "🥈", "2"],
"9":["9"], "1": ["👆", "☝️", "🖕", "🥇", "1"],
"8":["🎱", "8"], "0": ["⭕️", "🅾️", "📯", "🌝", "🌚", "🌕", "🥯", "🙆‍♀", "🙆‍♂", "0"],
"7":["7"], "+": ["🏥"],
"6":["6"], "/": ["🏒", "🧪", "🧹"],
"5":["", "🤚","👋", "5"], "\\": ["🍢", "🍡", "🥄", "🌂"],
"4":["4"],
"3":["🥉", "3"],
"2":["✌️", "🤘", "🥈", "2"],
"1":["👆", "☝️", "🖕", "🥇", "1"],
"0":["⭕️", "🅾️", "📯", "🌝", "🌚", "🌕", "🥯", "🙆‍♀", "🙆‍♂", "0"],
"!":["❗️", "", "⚠️"],
"?":["", ""],
"+":["🏥"],
"/":["🏒", "🧪", "🧹"],
"\":["🍢", "🍡", "🥄", "🌂"],
"*":["✳️", "✴️"],
} }
@classmethod @classmethod

View file

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