rDrama/files/helpers/config/awards.py

996 lines
23 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",
2023-10-10 16:16:22 +00:00
"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,
"negative": False,
"included_in_lootbox": False,
},
2023-01-01 05:33:09 +00:00
### Deprecated
2023-10-07 12:22:09 +00:00
"king": {
"kind": "king",
"title": "King",
"description": "Gives the recipient golden text for 24 hours.",
"icon": "fas fa-crown",
"color": "text-gold",
"price": 1000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": False,
"negative": False,
"included_in_lootbox": False,
2023-10-07 12:22:09 +00:00
},
"ghost": {
"kind": "ghost",
"title": "Ghost",
2023-10-10 16:16:22 +00:00
"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,
"negative": False,
"included_in_lootbox": False,
},
"nword": {
"kind": "nword",
"title": "Nword Pass",
2023-10-10 16:16:22 +00:00
"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,
"negative": False,
"included_in_lootbox": False,
2023-01-01 05:33:09 +00:00
},
2023-08-11 13:18:13 +00:00
"fish": {
"kind": "fish",
"title": "Fish",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-08-11 13:18:13 +00:00
"icon": "fas fa-fish",
"color": "text-gold",
"price": 20000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": False,
"negative": False,
"included_in_lootbox": False,
2023-08-11 13:18:13 +00:00
},
2023-01-01 05:33:09 +00:00
2023-12-01 19:31:45 +00:00
### Shared
"grinch": {
"kind": "grinch",
"title": "Grinch",
"description": "???",
"icon": "fas fa-angry",
2023-12-01 19:34:34 +00:00
"color": "text-orange",
2023-12-01 19:31:45 +00:00
"price": 100,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": IS_EVENT() and SITE_NAME == "rDrama",
"negative": False,
"included_in_lootbox": False,
},
2023-01-01 05:33:09 +00:00
"lootbox": {
"kind": "lootbox",
"title": "Lootbox",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-01-01 05:33:09 +00:00
"icon": "fas fa-box-open",
"color": "text-blue",
"price": 300 if IS_FISTMAS() else 1000,
2023-01-01 05:33:09 +00:00
"deflectable": True,
"cosmetic": False,
"ghost": False,
2023-09-28 23:58:09 +00:00
"enabled": IS_FISTMAS() or IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": False,
2023-09-28 23:58:09 +00:00
},
### Fistmas
"fireplace": {
"kind": "fireplace",
"title": "Fireplace",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"icon": "fas fa-fireplace",
"color": "text-orange",
"price": 100,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
"negative": False,
"included_in_lootbox": True,
},
2023-05-05 21:46:24 +00:00
"snow": {
"kind": "snow",
"title": "Snow",
2023-10-10 16:16:22 +00:00
"description": "???",
"icon": "fas fa-snowflake",
2023-01-01 05:33:09 +00:00
"color": "text-lightblue",
"price": 100,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
"negative": False,
"included_in_lootbox": True,
},
"gingerbread": {
"kind": "gingerbread",
"title": "Gingerbread",
2023-10-10 16:16:22 +00:00
"description": "???",
"icon": "fas fa-gingerbread-man",
2023-01-01 05:33:09 +00:00
"color": "text-brown",
"price": 100,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
"negative": False,
"included_in_lootbox": True,
},
"lights": {
"kind": "lights",
"title": "Lights",
2023-10-10 16:16:22 +00:00
"description": "???",
"icon": "fas fa-lights-holiday",
2023-01-01 05:33:09 +00:00
"color": "text-success",
"price": 100,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
"negative": False,
"included_in_lootbox": True,
},
2023-09-28 23:58:09 +00:00
"frostbite": {
"kind": "frostbite",
"title": "Frostbite",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"icon": "fas fa-temperature-snow",
"color": "text-blue",
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
"negative": False,
"included_in_lootbox": True,
2023-01-01 05:33:09 +00:00
},
2023-09-28 23:58:09 +00:00
"candycane": {
"kind": "candycane",
"title": "Candy Cane",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"icon": "fas fa-candy-cane",
"color": "text-danger",
2023-01-01 05:33:09 +00:00
"price": 300,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_FISTMAS(),
"negative": False,
"included_in_lootbox": True,
2023-01-01 05:33:09 +00:00
},
2023-12-01 15:54:31 +00:00
### Homoween
2023-10-26 15:10:05 +00:00
"stalker": {
"kind": "stalker",
"title": "Stalker",
"description": "???",
"icon": "fas fa-scarecrow",
"color": "text-primary",
"price": 100,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": True,
},
2023-10-14 20:24:01 +00:00
"bite": {
"kind": "bite",
"title": "Zombie Bite",
"description": "???",
"icon": "fas fa-biohazard",
"color": "text-danger",
2023-10-15 13:20:17 +00:00
"price": 100,
2023-10-14 20:24:01 +00:00
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": IS_HOMOWEEN(),
"negative": False,
2023-10-14 20:24:01 +00:00
"included_in_lootbox": False,
},
2023-10-18 13:18:27 +00:00
"vax": {
"kind": "vax",
"title": "Vaxxmaxx",
"description": "???",
"icon": "fas fa-syringe",
"color": "text-blue",
2023-10-31 19:31:29 +00:00
"price": 100,
2023-10-18 13:18:27 +00:00
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": False,
},
2023-09-28 23:58:09 +00:00
"spiders": {
"kind": "spiders",
"title": "Spiders",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"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(),
"negative": False,
"included_in_lootbox": True,
},
2023-09-28 23:58:09 +00:00
"fog": {
"kind": "fog",
"title": "Fog",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"icon": "fas fa-smoke",
"color": "text-gray",
"price": 200,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": True,
2023-09-28 23:58:09 +00:00
},
"bones": {
"kind": "bones",
"title": "Bones",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"icon": "fas fa-bone",
"color": "text-white",
"price": 200,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": True,
2023-09-28 23:58:09 +00:00
},
2023-10-04 13:18:17 +00:00
"pumpkin": {
"kind": "pumpkin",
"title": "Pumpkin",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-10-04 13:18:17 +00:00
"icon": "fas fa-jack-o-lantern",
"color": "text-orange",
"price": 200,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": True,
2023-10-04 13:18:17 +00:00
},
2023-12-18 18:29:45 +00:00
"candycorn": {
"kind": "candycorn",
2023-09-28 23:58:09 +00:00
"title": "Candy Corn",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"icon": "fas fa-candy-corn",
"color": "text-orange",
"price": 400,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": True,
2023-09-28 23:58:09 +00:00
},
"ectoplasm": {
"kind": "ectoplasm",
"title": "Ectoplasm",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"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(),
"negative": False,
"included_in_lootbox": True,
},
"stab": {
"kind": "stab",
"title": "Stab",
2023-10-10 16:16:22 +00:00
"description": "???",
"icon": "fas fa-knife-kitchen",
"color": "text-danger",
2023-09-28 23:58:09 +00:00
"price": 400,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": True,
},
2023-09-28 23:58:09 +00:00
"haunt": {
"kind": "haunt",
"title": "Haunt",
2023-10-10 16:16:22 +00:00
"description": "???",
2023-09-28 23:58:09 +00:00
"icon": "fas fa-book-dead",
"color": "text-warning",
"price": 400,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": True,
},
"jumpscare": {
"kind": "jumpscare",
"title": "Jumpscare",
"description": "???",
"icon": "fas fa-coffin-cross",
"color": "text-purple",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": True,
},
"flashlight": {
"kind": "flashlight",
"title": "Flashlight",
"description": "???",
"icon": "fas fa-flashlight",
"color": "text-black",
"price": 1000,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": False,
},
"upsidedown": {
"kind": "upsidedown",
"title": "Upside Down",
"description": "???",
"icon": "fas fa-trees",
"color": "",
"price": 1000,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": IS_HOMOWEEN(),
"negative": False,
"included_in_lootbox": False,
},
2023-09-28 23:58:09 +00:00
### Birthgay/Birthdead
"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,
"cosmetic": True,
"ghost": True,
2023-09-28 23:58:09 +00:00
"enabled": IS_BIRTHGAY() or IS_BIRTHDEAD(),
"negative": False,
"included_in_lootbox": False,
},
2023-01-01 05:33:09 +00:00
### Standard
"beano": {
"kind": "beano",
"title": "Beano",
2023-08-30 16:09:45 +00:00
"description": "Makes the recipient not hear fart noises on the site.",
"icon": "fas fa-gas-pump-slash",
"color": "text-green",
2023-06-22 10:05:33 +00:00
"price": 100,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
},
2023-06-27 21:04:50 +00:00
"marsify": {
"kind": "marsify",
"title": "Marsify",
"description": "Marsifies the recipient's posts and comments for 24 hours.",
2023-06-27 21:04:50 +00:00
"icon": "fas fa-cat",
"color": "text-white",
"price": 100,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
2023-06-27 21:04:50 +00:00
},
2023-10-08 23:59:24 +00:00
"emoji": {
"kind": "emoji",
"title": "Emoji",
"description": "Summons a moving emoji on the post.",
"icon": "fas fa-smile-beam",
"color": "text-yellow",
"price": 100,
2023-10-08 23:59:24 +00:00
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
2023-10-08 23:59:24 +00:00
},
"emoji-hz": {
"kind": "emoji-hz",
"title": "Emoji",
"description": "Summons a moving emoji on the post.",
"icon": "fas fa-smile-beam",
"color": "text-yellow",
"price": 200,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": False,
"negative": False,
"included_in_lootbox": False,
2023-10-08 23:59:24 +00:00
},
"shit": {
"kind": "shit",
"title": "Shit",
"description": "Makes flies swarm the post.",
"icon": "fas fa-poop",
"color": "text-black-50",
"price": 300,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
},
"fireflies": {
"kind": "fireflies",
"title": "Fireflies",
"description": "Makes fireflies swarm the post.",
"icon": "fas fa-sparkles",
"color": "text-warning",
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
},
"firework": {
"kind": "firework",
"title": "Fireworks",
"description": "Summons fireworks on the post.",
"icon": "fas fa-bahai",
"color": "text-danger",
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
},
"ricardo": {
"kind": "ricardo",
"title": "Stripper Cake",
"description": "Summons Ricardo to dance on the post.",
"icon": "fas fa-pinata",
"color": "text-pink",
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
},
"tilt": {
"kind": "tilt",
"title": "Tilt",
"description": "Tilts the post or comment",
"icon": "fas fa-car-tilt",
"color": "text-blue",
2023-08-11 12:40:14 +00:00
"price": 300,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
},
"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": 500,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": True,
"ghost": True,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
},
2023-10-06 17:39:27 +00:00
"gold": {
"kind": "gold",
"title": "Gold",
"description": "Gold is a virtual good you can use on Reddit to reward, recognize, and celebrate content from redditors you love. If you like a post or comment and want to show your appreciation for it, you can give it gold. This will help the post or comment stand out on Reddit.",
"icon": "fas fa-coin",
"color": "text-gold",
"price": 500,
"deflectable": False,
"cosmetic": True,
"ghost": True,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
2023-10-06 17:39:27 +00:00
},
"spider": {
"kind": "spider",
"title": "Spider!",
"description": "Summons a spider to terrorize the recipient for 24 hours.",
"icon": "fas fa-spider",
"color": "text-brown",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
},
"flairlock": {
"kind": "flairlock",
2024-04-16 21:36:00 +00:00
"title": "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,
"negative": True,
"included_in_lootbox": False,
},
2023-06-27 17:25:04 +00:00
"rehab": {
"kind": "rehab",
"title": "Rehab",
"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,
2023-06-27 17:25:04 +00:00
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
2023-06-27 17:25:04 +00:00
},
2023-05-13 04:53:14 +00:00
"namelock": {
"kind": "namelock",
2024-04-16 21:36:00 +00:00
"title": "Namelock",
2023-10-07 15:02:33 +00:00
"description": "Changes the recipient's username to something of your choosing for 24 hours.",
2023-05-13 04:53:14 +00:00
"icon": "fas fa-at",
"color": "text-pink",
"price": 1000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
2023-05-13 04:53:14 +00:00
},
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-pink",
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
"price": 1000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
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
},
"offsitementions": {
"kind": "offsitementions",
"title": "Y'all Seein' Eye",
2024-02-24 18:45:29 +00:00
"description": "Gives the recipient notifications when people on other sites 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,
2023-09-15 15:43:42 +00:00
"enabled": True,
"negative": False,
"included_in_lootbox": False,
},
"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": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": True,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
},
"chud": {
"kind": "chud",
"title": "Chud",
"description": "Chuds the recipient for 24 hours.",
"icon": "fas fa-snooze",
"color": "text-purple",
"price": 1000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
},
"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,
"negative": False,
"included_in_lootbox": False,
},
"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,
"negative": False,
"included_in_lootbox": False,
},
"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,
"negative": True,
"included_in_lootbox": False,
},
"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,
"negative": True,
"included_in_lootbox": False,
},
2023-10-13 19:04:45 +00:00
"hieroglyphs": {
"kind": "hieroglyphs",
"title": "Hieroglyphs",
"description": "Makes the recipient unable to post/comment anything but emojis for 24 hours.",
"icon": "fas fa-ankh",
"color": "text-gold",
"price": 2000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
},
"ban": {
"kind": "ban",
2024-04-16 21:36:00 +00:00
"title": "Ban",
"description": "Bans the recipient for a day.",
"icon": "fas fa-gavel",
"color": "text-danger",
2023-06-27 21:04:50 +00:00
"price": 2000,
"deflectable": True,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": True,
"included_in_lootbox": False,
},
"unban": {
"kind": "unban",
2024-04-16 21:36:00 +00:00
"title": "Unban",
"description": "Removes 1 day from the ban duration of the recipient.",
"icon": "fas fa-gavel",
"color": "text-success",
2023-06-27 21:04:50 +00:00
"price": 2500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
2023-06-27 21:04:50 +00:00
},
"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,
2023-10-19 15:58:35 +00:00
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
},
"benefactor": {
"kind": "benefactor",
"title": "Benefactor",
2023-10-31 17:21:58 +00:00
"description": f"Grants one month of {patron} status and 1250 marseybux to the recipient. Cannot be used on yourself.",
"icon": "fas fa-gift",
"color": "text-blue",
"price": 2500,
"deflectable": False,
2023-01-01 05:33:09 +00:00
"cosmetic": False,
"ghost": False,
"enabled": FEATURES['MARSEYBUX'],
"negative": False,
"included_in_lootbox": False,
},
"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,
2024-04-16 17:31:31 +00:00
"enabled": SITE != 'rdrama.net',
"negative": False,
"included_in_lootbox": False,
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,
"negative": True,
"included_in_lootbox": False,
},
"unblockable": {
"kind": "unblockable",
"title": "Unblockable",
2024-02-15 21:56:13 +00:00
"description": "Makes the recipient unblockable and removes all blocks on them at the cost of being unable to block others.",
"icon": "fas fa-laugh-squint",
"color": "text-lightgreen",
"price": 20000,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
},
"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,
"negative": False,
"included_in_lootbox": False,
},
"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,
"negative": False,
"included_in_lootbox": False,
},
"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,
"negative": False,
"included_in_lootbox": False,
},
"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,
"negative": False,
"included_in_lootbox": False,
},
2023-10-05 19:40:44 +00:00
"pride": {
"kind": "pride",
"title": "Pride",
2023-10-08 18:58:56 +00:00
"description": "Permanently glams up the recipient's name, showing lifelong support for the LGBTQIA+ community.",
2023-10-05 19:40:44 +00:00
"icon": "fas fa-heart",
"color": "text-purple",
"price": 1000000,
2023-10-05 19:40:44 +00:00
"deflectable": True,
"cosmetic": False,
"ghost": False,
"enabled": True,
"negative": False,
"included_in_lootbox": False,
2023-10-05 19:40:44 +00:00
},
2023-01-01 05:33:09 +00:00
}
def AWARDS_ENABLED():
return {k: v for k, v in AWARDS.items() if v["enabled"]}
LOOTBOX_ITEM_COUNT = 5
2022-12-19 16:32:13 +00:00
HOUSE_AWARDS = {
"Furry": {
"kind": "Furry",
"title": "OwOify",
"description": "OwOifies the recipient's posts and comments for 6 hours.",
"icon": "fas fa-paw-simple",
"color": "text-purple",
"price": 500,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"negative": True,
"included_in_lootbox": False,
},
"Femboy": {
"kind": "Femboy",
"title": "Rainbow",
2023-09-26 17:13:36 +00:00
"description": "Makes the recipient's posts and comments in rainbow text for 24 hours.",
"icon": "fas fa-cloud-rainbow",
"color": "text-pink",
"price": 200,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"negative": True,
"included_in_lootbox": 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,
"negative": True,
"included_in_lootbox": 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",
2023-06-27 14:38:00 +00:00
"price": 100,
"deflectable": True,
"cosmetic": False,
"ghost": False,
"negative": True,
"included_in_lootbox": False,
},
2023-06-26 15:05:27 +00:00
"Edgy": {
"kind": "Edgy",
"title": "Sharpen",
"description": "Adds a badass edge to all the recipient's posts and comments for 24 hours.",
2023-06-26 15:05:27 +00:00
"icon": "fas fa-fire",
"color": "text-danger",
"price": 200,
2023-06-26 15:05:27 +00:00
"deflectable": True,
"cosmetic": False,
"ghost": False,
"negative": True,
"included_in_lootbox": False,
2023-06-26 15:05:27 +00:00
},
}
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)