rDrama/files/helpers/config/awards.py

848 lines
19 KiB
Python
Raw Normal View History

from copy import deepcopy
from files.helpers.config.const import *
2023-04-24 08:36:19 +00:00
#Personal awards are disabled on ghost posts and comments bc they can be used to figure out the identity of the author through https://rdrama.net/badges
AWARDS = {
"fallback": {
"kind": "fallback",
"title": "Unknown",
"description": "",
"icon": "fas fa-block-question",
"color": "text-white",
"price": 0,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": False,
},
2023-01-01 05:33:09 +00:00
### Deprecated
"ghost": {
"kind": "ghost",
"title": "Ghost",
"description": "",
"icon": "fas fa-ghost",
"color": "text-white",
"price": 3000,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": False,
},
"nword": {
"kind": "nword",
"title": "Nword Pass",
"description": "",
"icon": "fas fa-edit",
"color": "text-success",
"price": 10000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": False,
},
### Fistmas
"lootbox": {
"kind": "lootbox",
"title": "Lootbox",
"description": "",
"icon": "fas fa-box-open",
"color": "text-blue",
"price": 1000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": IS_FISTMAS(),
},
2023-05-05 21:46:24 +00:00
"snow": {
"kind": "snow",
"title": "Snow",
"description": "",
"icon": "fas fa-snowflake",
2023-01-01 05:33:09 +00:00
"color": "text-lightblue",
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
},
"gingerbread": {
"kind": "gingerbread",
"title": "Gingerbread",
"description": "",
"icon": "fas fa-gingerbread-man",
2023-01-01 05:33:09 +00:00
"color": "text-brown",
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
},
"lights": {
"kind": "lights",
"title": "Lights",
"description": "",
"icon": "fas fa-lights-holiday",
2023-01-01 05:33:09 +00:00
"color": "text-success",
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
},
"candycane": {
"kind": "candycane",
"title": "Candy Cane",
"description": "",
"icon": "fas fa-candy-cane",
2023-01-01 05:33:09 +00:00
"color": "text-danger",
"price": 400,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
},
"fireplace": {
"kind": "fireplace",
"title": "Fireplace",
"description": "",
"icon": "fas fa-fireplace",
2023-01-01 05:33:09 +00:00
"color": "text-orange",
"price": 600,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
2023-01-01 05:33:09 +00:00
},
"frostbite": {
"kind": "frostbite",
"title": "Frostbite",
"description": "",
"icon": "fas fa-temperature-snow",
"color": "text-blue",
"price": 300,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
2023-01-01 05:33:09 +00:00
},
"grinch": {
"kind": "grinch",
"title": "Grinch",
"description": "",
"icon": "fas fa-angry",
"color": "text-green-500",
"price": 1000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": IS_FISTMAS(),
},
2023-01-01 05:33:09 +00:00
### Homoween
"haunt": {
"kind": "haunt",
"title": "Haunt",
"description": "",
"icon": "fas fa-book-dead",
"color": "text-warning",
"price": 500,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"upsidedown": {
"kind": "upsidedown",
"title": "The Upside Down",
"description": "",
"icon": "fas fa-lights-holiday",
"color": "",
"price": 400,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"stab": {
"kind": "stab",
"title": "Stab",
"description": "",
"icon": "fas fa-knife-kitchen",
"color": "text-danger",
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"spiders": {
"kind": "spiders",
"title": "Spiders",
"description": "",
"icon": "fas fa-spider",
"color": "text-black",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"fog": {
"kind": "fog",
"title": "Fog",
"description": "",
"icon": "fas fa-smoke",
"color": "text-gray",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"jumpscare": {
"kind": "jumpscare",
"title": "Jumpscare",
"description": "",
"icon": "fas fa-coffin-cross",
"color": "text-purple",
"price": 600,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": IS_HOMOWEEN(),
},
"hw-bite": {
"kind": "hw-bite",
"title": "Zombie Bite",
"description": "",
"icon": "fas fa-biohazard",
"color": "text-danger",
"price": 500,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": IS_HOMOWEEN(),
},
"hw-vax": {
"kind": "hw-vax",
"title": "Vaxxmaxx",
"description": "",
"icon": "fas fa-syringe",
"color": "text-blue",
"price": 500,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": IS_HOMOWEEN(),
},
"hw-grinch": {
"kind": "hw-grinch",
"title": "Hallowgrinch",
"description": "",
"icon": "fas fa-angry",
"color": "text-orange",
"price": 1000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": IS_HOMOWEEN(),
},
"flashlight": {
"kind": "flashlight",
"title": "Flashlight",
"description": "",
"icon": "fas fa-flashlight",
"color": "text-black",
"price": 400,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"candy-corn": {
"kind": "candy-corn",
"title": "Candy Corn",
"description": "",
"icon": "fas fa-candy-corn",
"color": "text-orange",
"price": 400,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"ectoplasm": {
"kind": "ectoplasm",
"title": "Ectoplasm",
"description": "",
"icon": "fas fa-ghost",
"color": "text-success",
"price": 400,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"bones": {
"kind": "bones",
"title": "Bones",
"description": "",
"icon": "fas fa-bone",
"color": "text-white",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
"pumpkin": {
"kind": "pumpkin",
"title": "Pumpkin",
"description": "",
"icon": "fas fa-jack-o-lantern",
"color": "text-orange",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
},
2023-01-01 05:33:09 +00:00
### Standard
"shit": {
"kind": "shit",
"title": "Shit",
"description": "Makes flies swarm the post.",
"icon": "fas fa-poop",
"color": "text-black-50",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"fireflies": {
"kind": "fireflies",
"title": "Fireflies",
"description": "Makes fireflies swarm the post.",
"icon": "fas fa-sparkles",
"color": "text-warning",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"train": {
"kind": "train",
"title": "Train",
"description": "Summons a train on the post.",
"icon": "fas fa-train",
"color": "text-pink",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"scooter": {
"kind": "scooter",
"title": "Scooter",
"description": "Summons a scooter on the post.",
"icon": "fas fa-flag-usa",
"color": "text-muted",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"wholesome": {
"kind": "wholesome",
"title": "Wholesome",
"description": "Summons a wholesome marsey on the post.",
"icon": "fas fa-smile-beam",
"color": "text-yellow",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"firework": {
"kind": "firework",
"title": "Fireworks",
"description": "Summons fireworks on the post.",
"icon": "fas fa-bahai",
"color": "text-danger",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"confetti": {
"kind": "confetti",
"title": "Confetti",
"description": "Summons confetti to fall on the post.",
"icon": "fas fa-party-horn",
"color": "text-yellow",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"ricardo": {
"kind": "ricardo",
"title": "Stripper Cake",
"description": "Summons Ricardo to dance on the post.",
"icon": "fas fa-pinata",
"color": "text-pink",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"tilt": {
"kind": "tilt",
"title": "Tilt",
"description": "Tilts the post or comment",
"icon": "fas fa-car-tilt",
"color": "text-blue",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"glowie": {
"kind": "glowie",
"title": "Glowie",
"description": "Indicates that the recipient can be seen when driving. Just run them over.",
"icon": "fas fa-user-secret",
"color": "text-green",
"price": 200,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
},
"spider": {
"kind": "spider",
"title": "Spider!",
"description": "Summons a spider to terrorize the recipient for 24 hours.",
"icon": "fas fa-spider",
"color": "text-brown",
"price": 300,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
},
2023-02-18 14:21:31 +00:00
"marsify": {
"kind": "marsify",
"title": "Marsify",
"description": "Marsifies the recipient's comments for 24 hours.",
"icon": "fas fa-cat",
"color": "text-white",
2023-05-03 18:59:15 +00:00
"price": 300,
2023-02-18 14:21:31 +00:00
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
},
2023-02-18 14:28:18 +00:00
#for non-rdrama sites
"owoify": {
"kind": "owoify",
"title": "OwOify",
"description": "OwOifies the recipient's comments for 6 hours.",
"icon": "fas fa-paw-simple",
"color": "text-purple",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": SITE_NAME != 'rDrama',
},
"rainbow": {
"kind": "rainbow",
"title": "Rainbow",
"description": "Makes the recipient's comments and posts in rainbow text for 24 hours.",
"icon": "fas fa-cloud-rainbow",
"color": "text-pink",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": SITE_NAME != 'rDrama',
},
"rehab": {
"kind": "rehab",
"title": "Rehab",
2023-01-22 23:35:15 +00:00
"description": "Prevents the user from gambling for 24 hours in a last-ditch effort to save them from themself.",
"icon": "fas fa-dice-six",
"color": "text-black",
"price": 777,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"flairlock": {
"kind": "flairlock",
"title": "1-Day Flairlock",
"description": "Sets a flair for the recipient and locks it for 24 hours.",
"icon": "fas fa-lock",
"color": "text-black",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
},
2023-05-13 04:53:14 +00:00
"namelock": {
"kind": "namelock",
"title": "1-Day Namelock",
"description": "Changes the user's username to something of your choosing for 24 hours.",
"icon": "fas fa-at",
"color": "text-pink",
"price": 1000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"agendaposter": {
"kind": "agendaposter",
"title": "Chud",
"description": "Chuds the recipient for 24 hours.",
"icon": "fas fa-snooze",
"color": "text-purple",
"price": 1000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
Add the "Misogynist" award to harass incels (#154) Whazzup? This PR is the final solution to the incel problem. There's an old indian proverb that says: "never judge a man until you've walked two moons in his mocassins". In this case, it should be: "never judge a woman until you've walked 24 hrs in her high-heels". The misogynist award is a comment-transforming award that "feminizes" comments. It does the following: - makes text pink - makes text lowercase - removes "complicated" punctuation - makes paragraphs into run-on sentences - adds stereotypical girly remarks to the beginning or end of a paragraph. For example: INPUT > What the fuck did you just fucking say about me, you little bitch? I'll have you know I graduated top of my class in the Navy Seals, and I've been involved in numerous secret raids on Al-Quaeda, and I have over 300 confirmed kills. I am trained in gorilla warfare and I'm the top sniper in the entire US armed forces. You are nothing to me but just another target. I will wipe you the fuck out with precision the likes of which has never been seen before on this Earth, mark my fucking words. You think you can get away with saying that shit to me over the Internet? Think again, fucker. As we speak I am contacting my secret network of spies across the USA and your IP is being traced right now so you better prepare for the storm, maggot. The storm that wipes out the pathetic little thing you call your life. You're fucking dead, kid. I can be anywhere, anytime, and I can kill you in over seven hundred ways, and that's just with my bare hands. Not only am I extensively trained in unarmed combat, but I have access to the entire arsenal of the United States Marine Corps and I will use it to its full extent to wipe your miserable ass off the face of the continent, you little shit. If only you could have known what unholy retribution your little "clever" comment was about to bring down upon you, maybe you would have held your fucking tongue. But you couldn't, you didn't, and now you're paying the price, you goddamn idiot. I will shit fury all over you and you will drown in it. You're fucking dead, kiddo. OUTPUT > im literally screaming, what the fuck did you just fucking say about me, you little bitch? ill have you know i graduated top of my class in the navy seals, and ive been involved in numerous secret raids on al-quaeda, and i have over 300 confirmed kills, i am trained in gorilla warfare and im the top sniper in the entire us armed forces, you are nothing to me but just another target, i will wipe you the fuck out with precision the likes of which has never been seen before on this earth, mark my fucking words, you think you can get away with saying that shit to me over the internet? think again, fucker, as we speak i am contacting my secret network of spies across the usa and your ip is being traced right now so you better prepare for the storm, maggot, the storm that wipes out the pathetic little thing you call your life, youre fucking dead, kid, i can be anywhere, anytime, and i can kill you in over seven hundred ways, and thats just with my bare hands, not only am i extensively trained in unarmed combat, but i have access to the entire arsenal of the united states marine corps and i will use it to its full extent to wipe your miserable ass off the face of the continent, you little shit, if only you could have known what unholy retribution your little clever comment was about to bring down upon you, maybe you would have held your fucking tongue, but you couldnt, you didnt, and now youre paying the price, you goddamn idiot, i will shit fury all over you and you will drown in it, youre fucking dead, kiddo It also sets the user's pfp to a random white woman. Well, psuedorandom - it's based off of the user's id, so each user will only ever have one pfp assigned to them, which I think is nifty. Finally, it changes the name of the user toa girly name. There is one small problem with the PR, which is simply that I manually added a badge for testing purposes. If you like this PR, I will submit the badge throught the proper chanels and fix it. ![image](/attachments/641c7276-ffe4-4e69-b3e9-aec9f4f94191) Co-authored-by: Chuck Sneed <sneed@formerlychucks.net> Reviewed-on: https://fsdfsd.net/rDrama/rDrama/pulls/154 Co-authored-by: HeyMoon <heymoon@noreply.fsdfsd.net> Co-committed-by: HeyMoon <heymoon@noreply.fsdfsd.net>
2023-06-21 12:36:07 +00:00
"queen": {
"kind": "queen",
"title": "Queen",
"description": "Gets the recipient in touch with their feminine side for 24 hours.",
"icon": "fas fa-phone",
"color": "text-purple",
"price": 1000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"offsitementions": {
"kind": "offsitementions",
"title": "Y'all Seein' Eye",
"description": "Gives the recipient access to notifications when people off-site talk about us.",
"icon": "fas fa-eyes",
"color": "text-orange",
"price": 1000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"beano": {
"kind": "beano",
"title": "Beano",
"description": "Stops you from embarrassing yourself with your flatulence",
"icon": "fas fa-gas-pump-slash",
"color": "text-green",
"price": 1000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"unpin": {
"kind": "unpin",
"title": "Unpin",
"description": "Removes 1 hour from the pin duration of a post or 6 hours from the pin duration of a comment.",
"icon": "fas fa-thumbtack fa-rotate--45",
"color": "text-black",
"price": 1000,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": True,
"enabled": True,
},
"pin": {
"kind": "pin",
"title": "Pin",
"description": "Pins a post for 1 hour or a comment for 6 hours.",
"icon": "fas fa-thumbtack fa-rotate--45",
"color": "text-warning",
"price": 1500,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": True,
"enabled": True,
},
"progressivestack": {
"kind": "progressivestack",
"title": "Progressive Stack",
"description": "Makes votes on the recipient's posts and comments weigh double in the ranking algorithm for 6 hours.",
"icon": "fas fa-bullhorn",
"color": "text-danger",
"price": 1500,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
2023-01-25 10:57:50 +00:00
"enabled": True,
},
"pizzashill": {
"kind": "pizzashill",
"title": "Pizzashill",
"description": "Forces the recipient to make all posts/comments > 280 characters for 24 hours.",
"icon": "fas fa-pizza-slice",
"color": "text-orange",
"price": 1500,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"bird": {
"kind": "bird",
"title": "Bird Site",
"description": "Forces the recipient to make all posts/comments < 140 characters for 24 hours.",
"icon": "fab fa-twitter",
"color": "text-blue",
"price": 1500,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"deflector": {
"kind": "deflector",
"title": "Deflector",
"description": "Causes most awards received for the next 10 hours to be deflected back at their giver.",
"icon": "fas fa-shield",
"color": "text-pink",
"price": 2500,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"marsey": {
"kind": "marsey",
"title": "Marsey",
"description": "Makes the recipient unable to post/comment anything but marsey emojis for 24 hours.",
"icon": "fas fa-cat",
"color": "text-orange",
"price": 3000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"ban": {
"kind": "ban",
"title": "1-Day Ban",
"description": "Bans the recipient for a day.",
"icon": "fas fa-gavel",
"color": "text-danger",
"price": 3000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"unban": {
"kind": "unban",
"title": "1-Day Unban",
"description": "Removes 1 day from the ban duration of the recipient.",
"icon": "fas fa-gavel",
"color": "text-success",
"price": 3500,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"benefactor": {
"kind": "benefactor",
"title": "Benefactor",
"description": f"Grants one month of {patron} status and 2500 marseybux to the recipient. Cannot be used on yourself.",
"icon": "fas fa-gift",
"color": "text-blue",
"price": 4000,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": FEATURES['MARSEYBUX'],
},
"eye": {
"kind": "eye",
"title": "All-Seeing Eye",
"description": "Gives the recipient the ability to view private profiles.",
"icon": "fas fa-eye",
"color": "text-silver",
2022-12-13 19:51:07 +00:00
"price": 5000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
2022-12-13 19:51:07 +00:00
},
"grass": {
"kind": "grass",
"title": "Grass",
"description": "Ban the recipient for 30 days (if they provide a timestamped picture of them touching grass/snow/sand/ass to the admins, they will get unbanned immediately)",
"icon": "fas fa-seedling",
"color": "text-success",
"price": 10000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"unblockable": {
"kind": "unblockable",
"title": "Unblockable",
"description": "Makes the recipient unblockable and removes all blocks on them.",
"icon": "fas fa-laugh-squint",
"color": "text-lightgreen",
"price": 20000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"fish": {
"kind": "fish",
"title": "Fish",
"description": "This user cannot be unfollowed",
"icon": "fas fa-fish",
2023-05-13 04:53:14 +00:00
"color": "text-gold",
"price": 20000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"pause": {
"kind": "pause",
"title": "Pause",
"description": "Gives the recipient the ability to pause profile anthems.",
"icon": "fas fa-volume-mute",
"color": "text-danger",
"price": 20000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"unpausable": {
"kind": "unpausable",
"title": "Unpausable",
"description": "Makes the profile anthem of the recipient unpausable.",
"icon": "fas fa-volume",
"color": "text-success",
"price": 40000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"alt": {
"kind": "alt",
"title": "Alt-Seeing Eye",
"description": "Gives the recipient the ability to view alts.",
"icon": "fas fa-eye",
"color": "text-gold",
"price": 50000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
"checkmark": {
"kind": "checkmark",
"title": "Checkmark",
"description": "Gives the recipient a checkmark.",
"icon": "fas fa-badge-check",
"color": "checkmark",
"price": 50000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
},
2023-01-01 05:33:09 +00:00
}
2023-01-01 05:33:09 +00:00
AWARDS_ENABLED = {}
for k, val in AWARDS.items():
if val["enabled"]:
AWARDS_ENABLED[k] = val
LOOTBOX_ITEM_COUNT = 5
2022-12-19 19:31:01 +00:00
LOOTBOX_CONTENTS = ["snow", "gingerbread", "lights", "candycane", "fireplace", "frostbite"]
2022-12-19 16:32:13 +00:00
HOUSE_AWARDS = {
"Furry": {
"kind": "Furry",
"title": "OwOify",
"description": "OwOifies the recipient's comments for 6 hours.",
"icon": "fas fa-paw-simple",
"color": "text-purple",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
},
"Femboy": {
"kind": "Femboy",
"title": "Rainbow",
"description": "Makes the recipient's comments and posts in rainbow text for 24 hours.",
"icon": "fas fa-cloud-rainbow",
"color": "text-pink",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
},
"Vampire": {
"kind": "Vampire",
"title": "Bite",
"description": "Turns the recipient into a vampire for 2 days.",
"icon": "fas fa-bat",
"color": "text-gray",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
},
"Racist": {
"kind": "Racist",
"title": "Early Life",
"description": "Checks the recipient's Early Life section on Wikipedia. Notices.",
"icon": "fas fa-star-of-david",
"color": "text-yellow",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
},
}
temp = deepcopy(HOUSE_AWARDS).items()
for k, val in temp:
HOUSE_AWARDS[f'{k} Founder'] = val
HOUSE_AWARDS[f'{k} Founder']['kind'] += ' Founder'
HOUSE_AWARDS[f'{k} Founder']['price'] = int(HOUSE_AWARDS[f'{k} Founder']['price'] * 0.75)