use flower crowns for queen award

master
Aevann 2023-09-29 07:39:37 +03:00
parent a4071ba6b6
commit ac83bb7739
2 changed files with 22 additions and 4 deletions

View File

@ -343,7 +343,7 @@ class User(Base):
user_forced_hats = [] user_forced_hats = []
for k, val in forced_hats.items(): for k, val in forced_hats.items():
if getattr(self, k) and getattr(self, k) > 1: if getattr(self, k) and getattr(self, k) > 1:
if k == 'chud': if isinstance(val, tuple):
user_forced_hats.append(random.choice(val)) user_forced_hats.append(random.choice(val))
else: else:
user_forced_hats.append(val) user_forced_hats.append(val)

View File

@ -940,12 +940,30 @@ forced_hats = {
"earlylife": ("The Merchant", "SHUT IT DOWN, the goys know!"), "earlylife": ("The Merchant", "SHUT IT DOWN, the goys know!"),
"marsify": ("Marsified", "I can't pick my own Marseys, help!"), "marsify": ("Marsified", "I can't pick my own Marseys, help!"),
"is_suspended": ("Behind Bars", "This user is banned and needs to do better!"), "is_suspended": ("Behind Bars", "This user is banned and needs to do better!"),
"queen": ("Emoji Crown (hearts and shooting stars)", "This user is getting in touch with her feminine side 🥰"), "chud": (
"chud": (("Egg_irl", "This user is getting in touch with xir identity!"), ("Egg_irl", "This user is getting in touch with xir identity!"),
("Trans Flag", "Just in case you forgot, trans lives matter."), ("Trans Flag", "Just in case you forgot, trans lives matter."),
("Trans Flag II", "Your egg is cracked; wear it with pride!"), ("Trans Flag II", "Your egg is cracked; wear it with pride!"),
("Pride Flag", "Never forget that this is a primarily gay community. Dude bussy lmao."), ("Pride Flag", "Never forget that this is a primarily gay community. Dude bussy lmao."),
("Pride Flag II", "This user is a proud supporter of LGBTQ+ rights.")) ("Pride Flag II", "This user is a proud supporter of LGBTQ+ rights."),
),
"queen": (
("Flower Crown I", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown II", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown III", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown IV", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown V", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown VI", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown VII", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown VIII", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown IX", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown X", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown XI", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown XII", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown XIII", "This user is getting in touch with her feminine side 🥰"),
("Flower Crown XIV", "This user is getting in touch with her feminine side 🥰"),
("Emoji Crown (hearts and shooting stars)", "This user is getting in touch with her feminine side 🥰")
),
} }