From 075f9aeb5cd6e82c58e4b335cf7cd49e8a304cb1 Mon Sep 17 00:00:00 2001 From: Cookie <58516648+Cookie-CHR@users.noreply.github.com> Date: Tue, 10 Dec 2019 16:05:14 +0100 Subject: [PATCH] Update emojify.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aggiunti piรน numeri possibile (ma ne mancano ancora vari) e un paio di simboli --- royalpack/commands/emojify.py | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/royalpack/commands/emojify.py b/royalpack/commands/emojify.py index acd7177e..9767205e 100644 --- a/royalpack/commands/emojify.py +++ b/royalpack/commands/emojify.py @@ -48,7 +48,7 @@ class EmojifyCommand(Command): "n": ["๐Ÿ“ˆ"], "o": ["โญ•๏ธ", "๐Ÿ…พ๏ธ", "๐Ÿ“ฏ", "๐ŸŒ", "๐ŸŒš", "๐ŸŒ•", "๐Ÿฅฏ", "๐Ÿ™†โ€โ™€", "๐Ÿ™†โ€โ™‚"], "p": ["๐Ÿ…ฟ๏ธ"], - "q": ["๐Ÿ”", "๐Ÿ€"], + "q": ["๐Ÿ”", "๐Ÿ€", "๐Ÿญ"], "r": ["ยฎ"], "s": ["๐Ÿ’ฐ", "๐Ÿ’ต", "๐Ÿ’ธ", "๐Ÿ’ฒ"], "t": ["โœ๏ธ", "โฌ†๏ธ", "โ˜ฆ๏ธ"], @@ -57,7 +57,30 @@ class EmojifyCommand(Command): "w": ["๐Ÿคทโ€โ™€", "๐Ÿคทโ€โ™‚", "๐Ÿคพโ€โ™€", "๐Ÿคพโ€โ™‚", "๐Ÿคฝโ€โ™€", "๐Ÿคฝโ€โ™‚"], "x": ["๐Ÿ™…โ€โ™€", "๐Ÿ™…โ€โ™‚", "โŒ", "โŽ"], "y": ["๐Ÿ’ด"], - "z": ["โšก๏ธ"] + "z": ["โšก๏ธ"], + + "1234":["๐Ÿ”ข"], + "777":["๐ŸŽฐ"], + "100":["๐Ÿ’ฏ"], + "69":["โ™‹๏ธ"], + "24":["๐Ÿช"], + "18":["๐Ÿ”ž"], + "10":["๐Ÿ™Œ", "๐Ÿ”Ÿ", "๐Ÿคฒ"], + #9 manca + "8":["๐ŸŽฑ"], + #7 manca + #6 manca + "5":["โœ‹", "๐Ÿคš","๐Ÿ‘‹"], + #4 manca + "3":["๐Ÿฅ‰"], + "2":["โœŒ๏ธ", "๐Ÿค˜", "๐Ÿฅˆ"], + "1":["๐Ÿ‘†", "โ˜๏ธ", "๐Ÿ–•", "๐Ÿฅ‡"], + "0":["โญ•๏ธ", "๐Ÿ…พ๏ธ", "๐Ÿ“ฏ", "๐ŸŒ", "๐ŸŒš", "๐ŸŒ•", "๐Ÿฅฏ", "๐Ÿ™†โ€โ™€", "๐Ÿ™†โ€โ™‚"], + + "+":["๐Ÿฅ"], + "/":["๐Ÿ’", "๐Ÿงช", "๐Ÿงน"], + "\":["๐Ÿข", "๐Ÿก", "๐Ÿฅ„", "๐ŸŒ‚"], + "*":["โœณ๏ธ"] } @classmethod