This commit is contained in:
Slipstream 2025-05-13 09:26:50 -06:00
parent b871045431
commit c0597ff5e0
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -1,6 +1,7 @@
import discord
from discord.ext import commands
from discord import app_commands
import random
class MessageCog(commands.Cog):
def __init__(self, bot):
@ -55,5 +56,38 @@ Your pants are slowly and deliberately removed, leaving you feeling exposed and
async def notlikeus_slash(self, interaction: discord.Interaction):
await interaction.response.send_message("Honestly i think They Not Like Us is the only mumble rap song that is good, because it calls out Drake for being a Diddy blud")
@commands.command(name="rape")
async def rape(self, ctx: commands.Context, member: discord.Member):
"""Sends a message stating the author raped the mentioned user."""
rape_messages = [
f"{ctx.author.mention} raped {member.mention}.",
f"{ctx.author.mention} brutally raped {member.mention}.",
f"{ctx.author.mention} unconsensually came inside {member.mention}.",
f"{ctx.author.mention} forced themselves onto {member.mention}.",
f"{ctx.author.mention} violated {member.mention} in a grotesque manner.",
f"{member.mention} was unconsensually defiled by {ctx.author.mention}.",
f"{ctx.author.mention} left {member.mention} traumatized after the assault."
]
response = random.choice(rape_messages)
await ctx.reply(response)
@app_commands.command(name="rape", description="Sends a message stating the author raped the mentioned user.")
@app_commands.describe(
member="The user to mention in the message"
)
async def rape_slash(self, interaction: discord.Interaction, member: discord.Member):
"""Slash command version of rape."""
rape_messages = [
f"{interaction.user.mention} raped {member.mention}.",
f"{interaction.user.mention} brutally raped {member.mention}.",
f"{interaction.user.mention} unconsensually came inside {member.mention}.",
f"{interaction.user.mention} forced themselves onto {member.mention}.",
f"{interaction.user.mention} violated {member.mention} in a grotesque manner.",
f"{member.mention} was unconsensually defiled by {interaction.user.mention}.",
f"{interaction.user.mention} left {member.mention} traumatized after the assault."
]
response = random.choice(rape_messages)
await interaction.response.send_message(response)
async def setup(bot: commands.Bot):
await bot.add_cog(MessageCog(bot))