cutthecord/resources/patches/mutan/genemojitest.py
46620 0f8f3bcbb3 Full clienthax setup (#2)
- [x] Folder structure
- [x] Script updates
- [x] XML patches
- [x] Move all patches to this repo
- [x] Make sure jenkins is ready for new build system

Reviewed-on: https://booba.tech/CutTheCord/cutthecord/pulls/2
Co-authored-by: 46620 <46620osu@gmail.com>
Co-committed-by: 46620 <46620osu@gmail.com>
2021-08-21 21:04:13 +00:00

27 lines
No EOL
910 B
Python

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)