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

View file

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

View file

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