feat: Display usage count for molest and rape commands

Adds a counter to the molest and rape commands, showing how many times the interaction has occurred between the two users. This provides immediate feedback on the frequency of these actions.
This commit is contained in:
Slipstream 2025-05-26 21:58:26 -06:00
parent 1a6330537f
commit d7eca0aafc
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD
2 changed files with 355 additions and 3 deletions

View File

@ -87,7 +87,11 @@ class MessageCog(commands.Cog):
# Track usage between the two users
await self._increment_usage_counter(interaction.user.id, member.id, "molest")
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "molest")
response = await self._message_logic(member.mention)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have molested {count} times"
await interaction.response.send_message(response)
@commands.command(name="molest")
@ -96,7 +100,11 @@ class MessageCog(commands.Cog):
# Track usage between the two users
await self._increment_usage_counter(ctx.author.id, member.id, "molest")
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "molest")
response = await self._message_logic(member.mention)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have molested {count} times"
await ctx.reply(response)
@rp.command(name="rape", description="Sends a message stating the author raped the mentioned user.")
@ -108,6 +116,9 @@ class MessageCog(commands.Cog):
# Track usage between the two users
await self._increment_usage_counter(interaction.user.id, member.id, "rape")
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "rape")
rape_messages = [
f"{interaction.user.mention} raped {member.mention}.",
f"{interaction.user.mention} brutally raped {member.mention}.",
@ -115,9 +126,14 @@ class MessageCog(commands.Cog):
f"{interaction.user.mention} traumatized {member.mention} via sexual assault.",
f"{interaction.user.mention} dominated {member.mention} against their will.",
f"{interaction.user.mention} took advantage of {member.mention}'s vulnerability.",
f"{member.mention} suffered a brutal sexual violation at the hands of {interaction.user.mention}."
f"{member.mention} suffered a brutal sexual violation at the hands of {interaction.user.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)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have raped {count} times"
await interaction.response.send_message(response)
@commands.command(name="rape")
@ -126,6 +142,9 @@ class MessageCog(commands.Cog):
# Track usage between the two users
await self._increment_usage_counter(ctx.author.id, member.id, "rape")
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "rape")
rape_messages = [
f"{ctx.author.mention} raped {member.mention}.",
f"{ctx.author.mention} brutally raped {member.mention}.",
@ -133,9 +152,156 @@ class MessageCog(commands.Cog):
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."
f"{ctx.author.mention} left {member.mention} traumatized after the assault.",
f"{ctx.author.mention} subjected {member.mention} to a horrific ordeal.",
f"{member.mention} was brutally assaulted by {ctx.author.mention}.",
f"{ctx.author.mention} committed an act of sexual violence against {member.mention}.",
f"{member.mention} was left broken and violated by {ctx.author.mention}.",
f"{ctx.author.mention} took {member.mention} by force.",
f"{ctx.author.mention} inflicted unspeakable trauma upon {member.mention}.",
f"{ctx.author.mention} violated {member.mention}'s body and spirit.",
f"{member.mention} was forced into submission by {ctx.author.mention}.",
f"{ctx.author.mention} took what they wanted from {member.mention} without consent.",
f"{member.mention} endured a horrifying assault by {ctx.author.mention}.",
f"{ctx.author.mention} defiled {member.mention} against their will.",
f"{member.mention} was left shattered by {ctx.author.mention}'s actions.",
f"{ctx.author.mention} asserted their dominance over {member.mention} through sexual violence.",
f"{member.mention} was subjected to {ctx.author.mention}'s cruel desires.",
f"{ctx.author.mention} committed an unforgivable act against {member.mention}.",
f"{member.mention} was used and discarded by {ctx.author.mention}.",
f"{ctx.author.mention} left {member.mention} feeling utterly powerless.",
f"{member.mention} was a victim of {ctx.author.mention}'s brutal urges.",
f"{ctx.author.mention} stripped {member.mention} of their dignity.",
f"{member.mention} was trapped in a nightmare by {ctx.author.mention}.",
f"{ctx.author.mention} showed no mercy as they violated {member.mention}.",
f"{member.mention} was utterly helpless against {ctx.author.mention}'s assault.",
f"{ctx.author.mention} reveled in {member.mention}'s pain and fear.",
f"{ctx.author.mention} was broken by {member.mention}'s actions.",
f"{ctx.author.mention} took {member.mention}'s innocence by force.",
f"{member.mention} was scarred for life by {ctx.author.mention}'s brutality.",
f"{ctx.author.mention} left {member.mention} a shell of their former self.",
f"{member.mention} was a plaything for {ctx.author.mention}'s twisted desires.",
f"{ctx.author.mention} crushed {member.mention}'s spirit with their assault.",
f"{member.mention} was a victim of {ctx.author.mention}'s depravity.",
f"{ctx.author.mention} reveled in the non-consensual act with {member.mention}.",
f"{member.mention} was forced to endure {ctx.author.mention}'s unwanted advances.",
f"{ctx.author.mention} took advantage of {member.mention} in the cruelest way.",
f"{member.mention} was subjected to {ctx.author.mention}'s vile acts.",
f"{ctx.author.mention} left {member.mention} in a state of shock and despair.",
f"{member.mention} was violated by {ctx.author.mention} in a way they'll never forget.",
f"{ctx.author.mention} committed a heinous crime against {member.mention}.",
f"{member.mention} was a pawn in {ctx.author.mention}'s sick game.",
f"{ctx.author.mention} showed no regard for {member.mention}'s autonomy.",
f"{member.mention} was left with deep, unhealing wounds by {ctx.author.mention}.",
f"{ctx.author.mention} took pleasure in {member.mention}'s suffering.",
f"{member.mention} was a victim of {ctx.author.mention}'s predatory nature.",
f"{ctx.author.mention} defiled {member.mention} in the most brutal manner.",
f"{member.mention} was left with nothing but trauma by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their power over {member.mention} through sexual assault.",
f"{member.mention} was a broken mess after {ctx.author.mention}'s attack.",
f"{ctx.author.mention} took everything from {member.mention} without a second thought.",
f"{member.mention} was a mere object to {ctx.author.mention}.",
f"{ctx.author.mention} reveled in the destruction of {member.mention}'s innocence.",
f"{member.mention} was a victim of {ctx.author.mention}'s twisted fantasies.",
f"{ctx.author.mention} left {member.mention} with scars that would never fade.",
f"{member.mention} was forced to endure the unthinkable by {ctx.author.mention}.",
f"{ctx.author.mention} committed an act of pure evil against {member.mention}.",
f"{member.mention} was a shell of their former self after {ctx.author.mention}'s violation.",
f"{ctx.author.mention} took {member.mention}'s body and soul.",
f"{member.mention} was left with a lifetime of pain by {ctx.author.mention}.",
f"{ctx.author.mention} showed no remorse for their actions against {member.mention}.",
f"{member.mention} was a victim of {ctx.author.mention}'s monstrous desires.",
f"{ctx.author.mention} defiled {member.mention} in a way that can never be undone.",
f"{member.mention} was left with an emptiness that could never be filled by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their control over {member.mention} through a brutal assault.",
f"{member.mention} was a broken toy after {ctx.author.mention}'s attack.",
f"{ctx.author.mention} took {member.mention}'s purity by force.",
f"{member.mention} was left with a shattered psyche by {ctx.author.mention}.",
f"{ctx.author.mention} reveled in {member.mention}'s screams and tears.",
f"{member.mention} was a victim of {ctx.author.mention}'s sadistic pleasure.",
f"{ctx.author.mention} defiled {member.mention} in the most sickening way imaginable.",
f"{member.mention} was left with a permanent stain on their soul by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their will over {member.mention} with brutal force.",
f"{member.mention} was a broken spirit after {ctx.author.mention}'s violation.",
f"{ctx.author.mention} took {member.mention}'s essence without a thought.",
f"{member.mention} was a mere vessel for {ctx.author.mention}'s dark desires.",
f"{ctx.author.mention} reveled in the complete destruction of {member.mention}.",
f"{member.mention} was a victim of {ctx.author.mention}'s twisted and depraved mind.",
f"{ctx.author.mention} left {member.mention} with wounds that would never heal.",
f"{member.mention} was forced to endure the ultimate humiliation by {ctx.author.mention}.",
f"{ctx.author.mention} committed an act of pure barbarity against {member.mention}.",
f"{member.mention} was a shadow of their former self after {ctx.author.mention}'s assault.",
f"{ctx.author.mention} took {member.mention}'s very being.",
f"{member.mention} was left with an unbearable burden by {ctx.author.mention}.",
f"{ctx.author.mention} showed no humanity in their actions against {member.mention}.",
f"{member.mention} was a victim of {ctx.author.mention}'s monstrous and insatiable lust.",
f"{ctx.author.mention} defiled {member.mention} in a way that will haunt them forever.",
f"{member.mention} was left with a void that could never be filled by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their absolute control over {member.mention} through a horrific act.",
f"{member.mention} was a shattered mirror after {ctx.author.mention}'s attack.",
f"{ctx.author.mention} took {member.mention}'s very soul by force.",
f"{member.mention} was left with a broken spirit and a ruined life by {ctx.author.mention}.",
f"{ctx.author.mention} reveled in {member.mention}'s complete and utter despair.",
f"{member.mention} was a victim of {ctx.author.mention}'s unspeakable cruelty.",
f"{ctx.author.mention} defiled {member.mention} in the most abhorrent way imaginable.",
f"{member.mention} was left with a darkness that would consume them by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their tyrannical will over {member.mention} with extreme prejudice.",
f"{member.mention} was a broken husk after {ctx.author.mention}'s violation.",
f"{ctx.author.mention} took {member.mention}'s last shred of hope.",
f"{member.mention} was a mere object of {ctx.author.mention}'s twisted amusement.",
f"{ctx.author.mention} reveled in the total annihilation of {member.mention}.",
f"{member.mention} was a victim of {ctx.author.mention}'s utterly depraved and evil mind.",
f"{ctx.author.mention} left {member.mention} with wounds that would never, ever heal.",
f"{member.mention} was forced to endure the absolute worst by {ctx.author.mention}.",
f"{ctx.author.mention} committed an act of pure, unadulterated evil against {member.mention}.",
f"{member.mention} was a ghost of their former self after {ctx.author.mention}'s assault.",
f"{ctx.author.mention} took {member.mention}'s very existence.",
f"{member.mention} was left with an eternal torment by {ctx.author.mention}.",
f"{ctx.author.mention} showed no shred of humanity in their actions against {member.mention}.",
f"{member.mention} was a victim of {ctx.author.mention}'s monstrous, insatiable, and utterly vile lust.",
f"{ctx.author.mention} defiled {member.mention} in a way that will haunt them for all eternity.",
f"{member.mention} was left with a bottomless void that could never, ever be filled by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their absolute, tyrannical control over {member.mention} through a horrific, unspeakable act.",
f"{member.mention} was a shattered, irreparable mirror after {ctx.author.mention}'s attack.",
f"{ctx.author.mention} took {member.mention}'s very soul and essence by brutal, unforgiving force.",
f"{member.mention} was left with a broken spirit, a ruined life, and a shattered psyche by {ctx.author.mention}.",
f"{ctx.author.mention} reveled in {member.mention}'s complete, utter, and eternal despair.",
f"{member.mention} was a victim of {ctx.author.mention}'s unspeakable, monstrous, and sadistic cruelty.",
f"{ctx.author.mention} defiled {member.mention} in the most abhorrent, sickening, and vile way imaginable.",
f"{member.mention} was left with a darkness that would consume them entirely, forever, by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their tyrannical, absolute, and unyielding will over {member.mention} with extreme, brutal prejudice.",
f"{member.mention} was a broken, empty husk after {ctx.author.mention}'s violation.",
f"{ctx.author.mention} took {member.mention}'s last shred of hope, dignity, and humanity.",
f"{member.mention} was a mere object of {ctx.author.mention}'s twisted, depraved, and utterly sick amusement.",
f"{ctx.author.mention} reveled in the total, complete, and absolute annihilation of {member.mention}.",
f"{member.mention} was a victim of {ctx.author.mention}'s utterly depraved, evil, and monstrous mind.",
f"{ctx.author.mention} left {member.mention} with wounds that would never, ever, ever heal.",
f"{member.mention} was forced to endure the absolute, most horrific, and unthinkable humiliation by {ctx.author.mention}.",
f"{ctx.author.mention} committed an act of pure, unadulterated, and unspeakable evil against {member.mention}.",
f"{member.mention} was a ghost, a shadow, a mere echo of their former self after {ctx.author.mention}'s assault.",
f"{ctx.author.mention} took {member.mention}'s very existence, their past, present, and future.",
f"{member.mention} was left with an eternal, unbearable torment by {ctx.author.mention}.",
f"{ctx.author.mention} showed no shred of humanity, compassion, or mercy in their actions against {member.mention}.",
f"{member.mention} was a victim of {ctx.author.mention}'s monstrous, insatiable, utterly vile, and truly sadistic lust.",
f"{ctx.author.mention} defiled {member.mention} in a way that will haunt them for all eternity, a stain that can never be washed away.",
f"{member.mention} was left with a bottomless, unending void that could never, ever, ever be filled by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their absolute, tyrannical, unyielding, and brutal control over {member.mention} through a horrific, unspeakable, and utterly depraved act.",
f"{member.mention} was a shattered, irreparable, and completely broken mirror after {ctx.author.mention}'s attack.",
f"{ctx.author.mention} took {member.mention}'s very soul, essence, and being by brutal, unforgiving, and merciless force.",
f"{member.mention} was left with a broken spirit, a ruined life, a shattered psyche, and an eternal, agonizing torment by {ctx.author.mention}.",
f"{ctx.author.mention} reveled in {member.mention}'s complete, utter, eternal, and absolute despair, a symphony of suffering.",
f"{member.mention} was a victim of {ctx.author.mention}'s unspeakable, monstrous, sadistic, and truly abhorrent cruelty.",
f"{ctx.author.mention} defiled {member.mention} in the most abhorrent, sickening, vile, and unimaginable way possible.",
f"{member.mention} was left with a darkness that would consume them entirely, forever, a shadow that would never lift by {ctx.author.mention}.",
f"{ctx.author.mention} asserted their tyrannical, absolute, unyielding, brutal, and merciless will over {member.mention} with extreme, unforgiving prejudice.",
f"{member.mention} was a broken, empty, and hollow husk after {ctx.author.mention}'s violation.",
f"{ctx.author.mention} took {member.mention}'s last shred of hope, dignity, humanity, and sanity.",
f"{member.mention} was a mere object of {ctx.author.mention}'s twisted, depraved, utterly sick, and truly monstrous amusement.",
f"{ctx.author.mention} reveled in the total, complete, absolute, and utter annihilation of {member.mention}, leaving nothing but ruin.",
f"{member.mention} was a victim of {ctx.author.mention}'s utterly depraved, evil, monstrous, and truly unspeakable mind."
]
response = random.choice(rape_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have raped {count} times"
await ctx.reply(response)
@rp.command(name="sex", description="Send a normal sex message to the mentioned user")
@ -176,7 +342,11 @@ class MessageCog(commands.Cog):
f"{member.mention} felt a deep connection with {interaction.user.mention} during their encounter.",
f"{interaction.user.mention} and {member.mention} experienced mutual pleasure."
]
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "sex")
response = random.choice(sex_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have sexed {count} times"
await interaction.response.send_message(response)
@commands.command(name="sex")
@ -185,6 +355,9 @@ class MessageCog(commands.Cog):
# Track usage between the two users
await self._increment_usage_counter(ctx.author.id, member.id, "sex")
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "sex")
sex_messages = [
f"{ctx.author.mention} and {member.mention} shared a tender kiss that deepened into a passionate embrace.",
f"{ctx.author.mention} gently caressed {member.mention}'s cheek before their lips met, igniting a spark.",
@ -215,6 +388,7 @@ class MessageCog(commands.Cog):
f"{ctx.author.mention} and {member.mention} experienced mutual pleasure."
]
response = random.choice(sex_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have sexed {count} times"
await ctx.reply(response)
# --- Memes Group ---

View File

@ -105,7 +105,11 @@ class MessageCog(commands.Cog):
f"{member.mention} felt an intense connection with {interaction.user.mention} during their explicit encounter.",
f"{interaction.user.mention} and {member.mention} experienced explosive mutual pleasure."
]
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "neru_sex")
response = random.choice(sex_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have sexed {count} times"
await interaction.response.send_message(response)
@commands.command(name="sex")
@ -114,6 +118,9 @@ class MessageCog(commands.Cog):
# Track usage between the two users
await self._increment_usage_counter(ctx.author.id, member.id, "neru_sex")
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "neru_sex")
sex_messages = [
f"{ctx.author.mention} roughly pins {member.mention} against the wall, their lips crashing together in a desperate, hungry kiss.",
f"{ctx.author.mention}'s hands roam possessively over {member.mention}'s body, leaving a trail of heat in their wake.",
@ -143,6 +150,7 @@ class MessageCog(commands.Cog):
f"{ctx.author.mention} and {member.mention} experienced explosive mutual pleasure."
]
response = random.choice(sex_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have sexed {count} times"
await ctx.reply(response)
@rp.command(name="rape", description="Sends a message stating the author raped the mentioned user.")
@ -161,9 +169,163 @@ class MessageCog(commands.Cog):
f"{interaction.user.mention} traumatized {member.mention} via sexual assault.",
f"{interaction.user.mention} dominated {member.mention} against their will.",
f"{interaction.user.mention} took advantage of {member.mention}'s vulnerability.",
f"{member.mention} suffered a brutal sexual violation at the hands of {interaction.user.mention}."
f"{member.mention} suffered a brutal sexual violation at the hands of {interaction.user.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.",
f"{interaction.user.mention} subjected {member.mention} to a horrific ordeal.",
f"{member.mention} was brutally assaulted by {interaction.user.mention}.",
f"{interaction.user.mention} committed an act of sexual violence against {member.mention}.",
f"{member.mention} was left broken and violated by {interaction.user.mention}.",
f"{interaction.user.mention} took {member.mention} by force.",
f"{interaction.user.mention} inflicted unspeakable trauma upon {member.mention}.",
f"{interaction.user.mention} violated {member.mention}'s body and spirit.",
f"{member.mention} was forced into submission by {interaction.user.mention}.",
f"{interaction.user.mention} took what they wanted from {member.mention} without consent.",
f"{member.mention} endured a horrifying assault by {interaction.user.mention}.",
f"{interaction.user.mention} defiled {member.mention} against their will.",
f"{member.mention} was left shattered by {interaction.user.mention}'s actions.",
f"{interaction.user.mention} asserted their dominance over {member.mention} through sexual violence.",
f"{member.mention} was subjected to {interaction.user.mention}'s cruel desires.",
f"{interaction.user.mention} committed an unforgivable act against {member.mention}.",
f"{member.mention} was used and discarded by {interaction.user.mention}.",
f"{interaction.user.mention} left {member.mention} feeling utterly powerless.",
f"{member.mention} was a victim of {interaction.user.mention}'s brutal urges.",
f"{interaction.user.mention} stripped {member.mention} of their dignity.",
f"{member.mention} was trapped in a nightmare by {interaction.user.mention}.",
f"{interaction.user.mention} showed no mercy as they violated {member.mention}.",
f"{member.mention} was utterly helpless against {interaction.user.mention}'s assault.",
f"{interaction.user.mention} reveled in {member.mention}'s pain and fear.",
f"{member.user.mention} was broken by {interaction.user.mention}'s actions.",
f"{interaction.user.mention} took {member.mention}'s innocence by force.",
f"{member.mention} was scarred for life by {interaction.user.mention}'s brutality.",
f"{interaction.user.mention} left {member.mention} a shell of their former self.",
f"{member.mention} was a plaything for {interaction.user.mention}'s twisted desires.",
f"{interaction.user.mention} crushed {member.mention}'s spirit with their assault.",
f"{member.mention} was a victim of {interaction.user.mention}'s depravity.",
f"{interaction.user.mention} reveled in the non-consensual act with {member.mention}.",
f"{member.mention} was forced to endure {interaction.user.mention}'s unwanted advances.",
f"{interaction.user.mention} took advantage of {member.mention} in the cruelest way.",
f"{member.mention} was subjected to {interaction.user.mention}'s vile acts.",
f"{interaction.user.mention} left {member.mention} in a state of shock and despair.",
f"{member.mention} was violated by {interaction.user.mention} in a way they'll never forget.",
f"{interaction.user.mention} committed a heinous crime against {member.mention}.",
f"{member.mention} was a pawn in {interaction.user.mention}'s sick game.",
f"{interaction.user.mention} showed no regard for {member.mention}'s autonomy.",
f"{member.mention} was left with deep, unhealing wounds by {interaction.user.mention}.",
f"{interaction.user.mention} took pleasure in {member.mention}'s suffering.",
f"{member.mention} was a victim of {interaction.user.mention}'s predatory nature.",
f"{interaction.user.mention} defiled {member.mention} in the most brutal manner.",
f"{member.mention} was left with nothing but trauma by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their power over {member.mention} through sexual assault.",
f"{member.mention} was a broken mess after {interaction.user.mention}'s attack.",
f"{interaction.user.mention} took everything from {member.mention} without a second thought.",
f"{member.mention} was a mere object to {interaction.user.mention}.",
f"{interaction.user.mention} reveled in the destruction of {member.mention}'s innocence.",
f"{member.mention} was a victim of {interaction.user.mention}'s twisted fantasies.",
f"{interaction.user.mention} left {member.mention} with scars that would never fade.",
f"{member.mention} was forced to endure the unthinkable by {interaction.user.mention}.",
f"{interaction.user.mention} committed an act of pure evil against {member.mention}.",
f"{member.mention} was a shell of their former self after {interaction.user.mention}'s violation.",
f"{interaction.user.mention} took {member.mention}'s body and soul.",
f"{member.mention} was left with a lifetime of pain by {interaction.user.mention}.",
f"{interaction.user.mention} showed no remorse for their actions against {member.mention}.",
f"{member.mention} was a victim of {interaction.user.mention}'s monstrous desires.",
f"{interaction.user.mention} defiled {member.mention} in a way that can never be undone.",
f"{member.mention} was left with an emptiness that could never be filled by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their control over {member.mention} through a brutal assault.",
f"{member.mention} was a broken toy after {interaction.user.mention}'s attack.",
f"{interaction.user.mention} took {member.mention}'s purity by force.",
f"{member.mention} was left with a shattered psyche by {interaction.user.mention}.",
f"{interaction.user.mention} reveled in {member.mention}'s screams and tears.",
f"{member.mention} was a victim of {interaction.user.mention}'s sadistic pleasure.",
f"{interaction.user.mention} defiled {member.mention} in the most sickening way imaginable.",
f"{member.mention} was left with a permanent stain on their soul by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their will over {member.mention} with brutal force.",
f"{member.mention} was a broken spirit after {interaction.user.mention}'s violation.",
f"{interaction.user.mention} took {member.mention}'s essence without a thought.",
f"{member.mention} was a mere vessel for {interaction.user.mention}'s dark desires.",
f"{interaction.user.mention} reveled in the complete destruction of {member.mention}.",
f"{member.mention} was a victim of {interaction.user.mention}'s twisted and depraved mind.",
f"{interaction.user.mention} left {member.mention} with wounds that would never heal.",
f"{member.mention} was forced to endure the ultimate humiliation by {interaction.user.mention}.",
f"{interaction.user.mention} committed an act of pure barbarity against {member.mention}.",
f"{member.mention} was a shadow of their former self after {interaction.user.mention}'s assault.",
f"{interaction.user.mention} took {member.mention}'s very being.",
f"{member.mention} was left with an unbearable burden by {interaction.user.mention}.",
f"{interaction.user.mention} showed no humanity in their actions against {member.mention}.",
f"{member.mention} was a victim of {interaction.user.mention}'s monstrous and insatiable lust.",
f"{interaction.user.mention} defiled {member.mention} in a way that will haunt them forever.",
f"{member.mention} was left with a void that could never be filled by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their absolute control over {member.mention} through a horrific act.",
f"{member.mention} was a shattered mirror after {interaction.user.mention}'s attack.",
f"{interaction.user.mention} took {member.mention}'s very soul by force.",
f"{member.mention} was left with a broken spirit and a ruined life by {interaction.user.mention}.",
f"{interaction.user.mention} reveled in {member.mention}'s complete and utter despair.",
f"{member.mention} was a victim of {interaction.user.mention}'s unspeakable cruelty.",
f"{interaction.user.mention} defiled {member.mention} in the most abhorrent way imaginable.",
f"{member.mention} was left with a darkness that would consume them by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their tyrannical will over {member.mention} with extreme prejudice.",
f"{member.mention} was a broken husk after {interaction.user.mention}'s violation.",
f"{interaction.user.mention} took {member.mention}'s last shred of hope.",
f"{member.mention} was a mere object of {interaction.user.mention}'s twisted amusement.",
f"{interaction.user.mention} reveled in the total annihilation of {member.mention}.",
f"{member.mention} was a victim of {interaction.user.mention}'s utterly depraved and evil mind.",
f"{interaction.user.mention} left {member.mention} with wounds that would never, ever heal.",
f"{member.mention} was forced to endure the absolute worst by {interaction.user.mention}.",
f"{interaction.user.mention} committed an act of pure, unadulterated evil against {member.mention}.",
f"{member.mention} was a ghost of their former self after {interaction.user.mention}'s assault.",
f"{interaction.user.mention} took {member.mention}'s very existence.",
f"{member.mention} was left with an eternal torment by {interaction.user.mention}.",
f"{interaction.user.mention} showed no shred of humanity in their actions against {member.mention}.",
f"{member.mention} was a victim of {interaction.user.mention}'s monstrous, insatiable, and utterly vile lust.",
f"{interaction.user.mention} defiled {member.mention} in a way that will haunt them for all eternity.",
f"{member.mention} was left with a bottomless void that could never, ever be filled by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their absolute, tyrannical control over {member.mention} through a horrific, unspeakable act.",
f"{member.mention} was a shattered, irreparable mirror after {interaction.user.mention}'s attack.",
f"{interaction.user.mention} took {member.mention}'s very soul and essence by brutal, unforgiving force.",
f"{member.mention} was left with a broken spirit, a ruined life, and a shattered psyche by {interaction.user.mention}.",
f"{interaction.user.mention} reveled in {member.mention}'s complete, utter, and eternal despair.",
f"{member.mention} was a victim of {interaction.user.mention}'s unspeakable, monstrous, and sadistic cruelty.",
f"{interaction.user.mention} defiled {member.mention} in the most abhorrent, sickening, and vile way imaginable.",
f"{member.mention} was left with a darkness that would consume them entirely, forever, by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their tyrannical, absolute, and unyielding will over {member.mention} with extreme, brutal prejudice.",
f"{member.mention} was a broken, empty husk after {interaction.user.mention}'s violation.",
f"{interaction.user.mention} took {member.mention}'s last shred of hope, dignity, and humanity.",
f"{member.mention} was a mere object of {interaction.user.mention}'s twisted, depraved, and utterly sick amusement.",
f"{interaction.user.mention} reveled in the total, complete, and absolute annihilation of {member.mention}.",
f"{member.mention} was a victim of {interaction.user.mention}'s utterly depraved, evil, and monstrous mind.",
f"{interaction.user.mention} left {member.mention} with wounds that would never, ever, ever heal.",
f"{member.mention} was forced to endure the absolute, most horrific, and unthinkable humiliation by {interaction.user.mention}.",
f"{interaction.user.mention} committed an act of pure, unadulterated, and unspeakable evil against {member.mention}.",
f"{member.mention} was a ghost, a shadow, a mere echo of their former self after {interaction.user.mention}'s assault.",
f"{interaction.user.mention} took {member.mention}'s very existence, their past, present, and future.",
f"{member.mention} was left with an eternal, unbearable torment by {interaction.user.mention}.",
f"{interaction.user.mention} showed no shred of humanity, compassion, or mercy in their actions against {member.mention}.",
f"{member.mention} was a victim of {interaction.user.mention}'s monstrous, insatiable, utterly vile, and truly sadistic lust.",
f"{interaction.user.mention} defiled {member.mention} in a way that will haunt them for all eternity, a stain that can never be washed away.",
f"{member.mention} was left with a bottomless, unending void that could never, ever, ever be filled by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their absolute, tyrannical, unyielding, and brutal control over {member.mention} through a horrific, unspeakable, and utterly depraved act.",
f"{member.mention} was a shattered, irreparable, and completely broken mirror after {interaction.user.mention}'s attack.",
f"{interaction.user.mention} took {member.mention}'s very soul, essence, and being by brutal, unforgiving, and merciless force.",
f"{member.mention} was left with a broken spirit, a ruined life, a shattered psyche, and an eternal, agonizing torment by {interaction.user.mention}.",
f"{interaction.user.mention} reveled in {member.mention}'s complete, utter, eternal, and absolute despair, a symphony of suffering.",
f"{member.mention} was a victim of {interaction.user.mention}'s unspeakable, monstrous, sadistic, and truly abhorrent cruelty.",
f"{interaction.user.mention} defiled {member.mention} in the most abhorrent, sickening, vile, and unimaginable way possible.",
f"{member.mention} was left with a darkness that would consume them entirely, forever, a shadow that would never lift by {interaction.user.mention}.",
f"{interaction.user.mention} asserted their tyrannical, absolute, unyielding, brutal, and merciless will over {member.mention} with extreme, unforgiving prejudice.",
f"{member.mention} was a broken, empty, and hollow husk after {interaction.user.mention}'s violation.",
f"{interaction.user.mention} took {member.mention}'s last shred of hope, dignity, humanity, and sanity.",
f"{member.mention} was a mere object of {interaction.user.mention}'s twisted, depraved, utterly sick, and truly monstrous amusement.",
f"{interaction.user.mention} reveled in the total, complete, absolute, and utter annihilation of {member.mention}, leaving nothing but ruin.",
f"{member.mention} was a victim of {interaction.user.mention}'s utterly depraved, evil, monstrous, and truly unspeakable mind."
]
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "neru_rape")
response = random.choice(rape_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have raped {count} times"
await interaction.response.send_message(response)
@rp.command(name="kiss", description="Send a wholesome kiss message to the mentioned user")
@ -197,7 +359,11 @@ class MessageCog(commands.Cog):
f"{interaction.user.mention} kisses {member.mention} under the starlight.",
f"{interaction.user.mention} gives {member.mention} a goodnight kiss.",
]
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "neru_kiss")
response = random.choice(kiss_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have kissed {count} times"
await interaction.response.send_message(response)
@commands.command(name="kiss")
@ -206,6 +372,9 @@ class MessageCog(commands.Cog):
# Track usage between the two users
await self._increment_usage_counter(ctx.author.id, member.id, "neru_kiss")
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "neru_kiss")
kiss_messages = [
f"{ctx.author.mention} gives {member.mention} a sweet kiss on the cheek.",
f"{ctx.author.mention} leans in and gives {member.mention} a gentle kiss.",
@ -219,6 +388,7 @@ class MessageCog(commands.Cog):
f"{ctx.author.mention} kisses {member.mention} with a smile.",
]
response = random.choice(kiss_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have kissed {count} times"
await ctx.reply(response)
@rp.command(name="hug", description="Send a wholesome hug message to the mentioned user")
@ -252,7 +422,11 @@ class MessageCog(commands.Cog):
f"{interaction.user.mention} gives {member.mention} a healing hug that makes everything better.",
f"{interaction.user.mention} and {member.mention} share a moment in a tender embrace.",
]
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "neru_hug")
response = random.choice(hug_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have hugged {count} times"
await interaction.response.send_message(response)
@commands.command(name="hug")
@ -261,6 +435,9 @@ class MessageCog(commands.Cog):
# Track usage between the two users
await self._increment_usage_counter(ctx.author.id, member.id, "neru_hug")
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "neru_hug")
hug_messages = [
f"{ctx.author.mention} gives {member.mention} a warm hug.",
f"{ctx.author.mention} wraps their arms around {member.mention} in a comforting hug.",
@ -274,6 +451,7 @@ class MessageCog(commands.Cog):
f"{ctx.author.mention} and {member.mention} share a sweet hug.",
]
response = random.choice(hug_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have hugged {count} times"
await ctx.reply(response)
# --- Memes Group ---