mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Fix emojify
This commit is contained in:
parent
335a7fa1dd
commit
fe30bcfbda
3 changed files with 25 additions and 30 deletions
|
@ -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+"
|
||||
|
|
|
@ -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,20 +68,9 @@ class EmojifyCommand(Command):
|
|||
"x": ["🙅♀", "🙅♂", "❌", "❎"],
|
||||
"y": ["💴"],
|
||||
"z": ["⚡️"],
|
||||
|
||||
"*": ["*️⃣"],
|
||||
"!!": ["‼️"],
|
||||
"!?": ["⁉️"],
|
||||
"!": ["❗️", "❕", "⚠️"],
|
||||
"?": ["❓", "❔"],
|
||||
|
||||
"1234":["🔢"],
|
||||
"777":["🎰"],
|
||||
"100":["💯"],
|
||||
"69":["♋️"],
|
||||
"24":["🏪"],
|
||||
"18":["🔞"],
|
||||
"10":["🙌", "🔟", "🤲"],
|
||||
"9": ["9️⃣"],
|
||||
"8": ["🎱", "8️⃣"],
|
||||
"7": ["7️⃣"],
|
||||
|
@ -82,13 +81,9 @@ class EmojifyCommand(Command):
|
|||
"2": ["✌️", "🤘", "🥈", "2️⃣"],
|
||||
"1": ["👆", "☝️", "🖕", "🥇", "1️⃣"],
|
||||
"0": ["⭕️", "🅾️", "📯", "🌝", "🌚", "🌕", "🥯", "🙆♀", "🙆♂", "0️⃣"],
|
||||
|
||||
"!":["❗️", "❕", "⚠️"],
|
||||
"?":["❓", "❔"],
|
||||
"+": ["🏥"],
|
||||
"/": ["🏒", "🧪", "🧹"],
|
||||
"\":["🍢", "🍡", "🥄", "🌂"],
|
||||
"*":["✳️", "✴️"],
|
||||
"\\": ["🍢", "🍡", "🥄", "🌂"],
|
||||
}
|
||||
|
||||
@classmethod
|
||||
|
|
|
@ -1 +1 @@
|
|||
semantic = "5.1.7"
|
||||
semantic = "5.1.8"
|
||||
|
|
Loading…
Reference in a new issue