Push the new mutant code, now with a whole lot more diversity~

This commit is contained in:
ave 2019-01-22 23:49:28 +03:00
parent 1e33f68eb4
commit ccd84dde66
No known key found for this signature in database
GPG key ID: 09356ABAA42C842B
7 changed files with 1444 additions and 188 deletions

View 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)