forked from distok/cutthecord
Dockerise
This commit is contained in:
parent
8ec2dd75c2
commit
55e2e94b63
3921 changed files with 178 additions and 111 deletions
27
resources/patches/mutant/genemojitest.py
Normal file
27
resources/patches/mutant/genemojitest.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
def genemojo(emojo, fitzpatrick=True, mutant=True):
|
||||
if fitzpatrick:
|
||||
unicodecolorbase = 0x1f3fb
|
||||
for oof in range(1, 6):
|
||||
character = chr(unicodecolorbase)
|
||||
print(f'{emojo}{character}', end='')
|
||||
unicodecolorbase += 1
|
||||
|
||||
if mutant:
|
||||
mutantcolorbase = 0x101600
|
||||
for oof in range(6, 51):
|
||||
character = chr(mutantcolorbase)
|
||||
print(f'{emojo}{character}', end='')
|
||||
mutantcolorbase += 1
|
||||
print()
|
||||
|
||||
|
||||
emojis = ["👆", "👇", "👈", "👉", "👊", "👋", "👌", "👍", "👎", "👏", "👐", "💅", "💪",
|
||||
"🖕", "🖖", "🙌", "🙏", "🤘", "🤙", "🤚", "🤛", "🤜", "🤝", "🤞", "🤳",
|
||||
"☝", "✊", "✋", "✌", "✍"]
|
||||
|
||||
mm_types = {"", ""}
|
||||
|
||||
for emoji in emojis:
|
||||
genemojo(emoji)
|
||||
for mm_type in mm_types:
|
||||
genemojo(emoji + mm_type, fitzpatrick=False)
|
Loading…
Add table
Add a link
Reference in a new issue