feat: Add headpat and hug commands

Implement new slash commands `/headpat` and `/hug` to `MessageCog` and `NeruMessageCog`. These commands send wholesome messages to mentioned users and track usage between them.
This commit is contained in:
Slipstream 2025-05-26 22:41:29 -06:00
parent ba1b0effdf
commit 8cbe6955bc
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD
2 changed files with 1009 additions and 0 deletions

View File

@ -391,6 +391,460 @@ class MessageCog(commands.Cog):
response += f"\n-# {ctx.author.display_name} and {member.display_name} have had sex {count} times"
await ctx.reply(response)
@rp.command(name="headpat", description="Send a wholesome headpat message to the mentioned user")
@app_commands.allowed_installs(guilds=True, users=True)
@app_commands.allowed_contexts(guilds=True, dms=True, private_channels=True)
@app_commands.describe(member="The user to send the message to")
async def headpat_slash(self, interaction: discord.Interaction, member: discord.User):
"""Slash command version of headpat."""
# Track usage between the two users
await self._increment_usage_counter(interaction.user.id, member.id, "headpat")
headpat_messages = [
f"{interaction.user.mention} gently pats {member.mention}'s head, a soft smile gracing their lips.",
f"{interaction.user.mention} reaches out and gives {member.mention} a comforting headpat.",
f"A warm hand from {interaction.user.mention} ruffles {member.mention}'s hair with a gentle headpat.",
f"{interaction.user.mention} gives {member.mention} a series of light, affectionate headpats.",
f"{interaction.user.mention} softly strokes {member.mention}'s head, a gesture of warmth and care.",
f"{interaction.user.mention} leans in and gives {member.mention} a tender headpat, making them feel cherished.",
f"With a loving gaze, {interaction.user.mention} gives {member.mention} a reassuring headpat.",
f"{interaction.user.mention} playfully taps {member.mention}'s head, a sign of friendly affection.",
f"{interaction.user.mention} gives {member.mention} a slow, soothing headpat, easing their worries.",
f"A gentle hand from {interaction.user.mention} rests on {member.mention}'s head, offering silent support.",
f"{interaction.user.mention} gives {member.mention} a quick, encouraging headpat.",
f"{interaction.user.mention} runs their fingers through {member.mention}'s hair, ending with a soft headpat.",
f"{interaction.user.mention} gives {member.mention} a congratulatory headpat.",
f"{interaction.user.mention} gives {member.mention} a comforting headpat after a long day.",
f"{interaction.user.mention} gives {member.mention} a headpat that feels like a warm hug.",
f"{interaction.user.mention} gently boops {member.mention}'s head with a soft pat.",
f"{interaction.user.mention} gives {member.mention} a headpat, making them feel safe and loved.",
f"{interaction.user.mention} gives {member.mention} a headpat, a simple gesture that speaks volumes.",
f"{interaction.user.mention} gives {member.mention} a headpat, acknowledging their presence with kindness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a silent promise of continued care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a small act of tenderness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a moment of gentle connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and innocent gesture.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sign of deep affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gesture of pure, unadulterated kindness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a symbol of comfort and understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their worth.",
f"{interaction.user.mention} gives {member.mention} a headpat, a silent blessing.",
f"{interaction.user.mention} gives {member.mention} a headpat, a moment of shared peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gesture that transcends words.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft touch that calms the soul.",
f"{interaction.user.mention} gives {member.mention} a headpat, a simple act of profound love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that soothes the spirit.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of acceptance.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of fondness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender moment of connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that reassures.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that warms the heart.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle touch.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of warmth.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle moment.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that warms the heart.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of fondness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle affirmation.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that reassures.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle caress.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of warmth.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle touch that reassures.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle moment of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of happiness.",
f"{interaction.user.mention} gives {member.mention} a gentle touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a loving caress that brings joy.",
f"{interaction.user.mention} gives {member.mention} a tender expression of peace.",
f"{interaction.user.mention} gives {member.mention} a comforting gesture of happiness.",
f"{interaction.user.mention} gives {member.mention} a sweet and gentle touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a loving moment of peace.",
f"{interaction.user.mention} gives {member.mention} a tender touch that brings happiness.",
f"{interaction.user.mention} gives {member.mention} a sweet gesture of solace.",
f"{interaction.user.mention} gives {member.mention} a gentle caress that brings joy.",
f"{interaction.user.mention} gives {member.mention} a loving touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a tender expression of happiness.",
f"{interaction.user.mention} gives {member.mention} a comforting gesture of solace.",
f"{interaction.user.mention} gives {member.mention} a sweet and gentle moment of joy.",
f"{interaction.user.mention} gives {member.mention} a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a tender caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a sweet gesture of comfort.",
f"{interaction.user.mention} gives {member.mention} a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a loving caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a tender expression of comfort.",
f"{interaction.user.mention} gives {member.mention} a comforting gesture of joy.",
f"{interaction.user.mention} gives {member.mention} a sweet and gentle touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a loving moment of happiness.",
f"{interaction.user.mention} gives {member.mention} a tender touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a sweet gesture of joy.",
f"{interaction.user.mention} gives {member.mention} a gentle caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a tender expression of happiness.",
f"{interaction.user.mention} gives {member.mention} a comforting gesture of solace.",
f"{interaction.user.mention} gives {member.mention} a sweet and gentle moment of joy.",
f"{interaction.user.mention} gives {member.mention} a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a tender caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a sweet gesture of comfort.",
f"{interaction.user.mention} gives {member.mention} a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a loving caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a tender expression of comfort.",
f"{interaction.user.mention} gives {member.mention} a comforting headpat, a gesture of pure affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft touch that conveys deep care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that speaks volumes.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of unwavering support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of shared understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings immense comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their cherished bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that melts away worries.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of profound love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings deep peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their special connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that fills the heart with joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of unconditional acceptance.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of pure, unadulterated happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings immense solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their unwavering support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that speaks volumes.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that soothes the soul.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of heartfelt affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings profound peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their deep bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings immense joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of complete understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of shared tranquility.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their enduring love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings absolute peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings overwhelming joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of complete devotion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of perfect harmony.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings eternal solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their everlasting love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that transcends words.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that heals all wounds.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of divine affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings celestial peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of ultimate compassion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of pure bliss.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings boundless solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their profound connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep devotion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings absolute comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of eternal love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings perfect peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable spiritual bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings divine joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of infinite tenderness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of celestial tranquility.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their timeless connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates deeply.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound healing.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless compassion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of absolute serenity.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings eternal comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their beautiful journey together.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of unwavering love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of endless affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings perfect happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their deep, abiding connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings divine peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of infinite love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of celestial bliss.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their timeless, beautiful bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates with pure love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound healing and comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless, unconditional love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate, serene peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable, and eternal bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite, divine happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated, and boundless love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of absolute, serene, and perfect tranquility.",
]
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "headpat")
response = random.choice(headpat_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have headpatted {count} times"
await interaction.response.send_message(response)
@commands.command(name="headpat")
async def headpat_legacy(self, ctx: commands.Context, member: discord.User):
"""Legacy command version of headpat."""
# Track usage between the two users
await self._increment_usage_counter(ctx.author.id, member.id, "headpat")
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "headpat")
headpat_messages = [
f"{ctx.author.mention} gently pats {member.mention}'s head, a soft smile gracing their lips.",
f"{ctx.author.mention} reaches out and gives {member.mention} a comforting headpat.",
f"A warm hand from {ctx.author.mention} ruffles {member.mention}'s hair with a gentle headpat.",
f"{ctx.author.mention} gives {member.mention} a series of light, affectionate headpats.",
f"{ctx.author.mention} softly strokes {member.mention}'s head, a gesture of warmth and care.",
f"{ctx.author.mention} leans in and gives {member.mention} a tender headpat, making them feel cherished.",
f"With a loving gaze, {ctx.author.mention} gives {member.mention} a reassuring headpat.",
f"{ctx.author.mention} playfully taps {member.mention}'s head, a sign of friendly affection.",
f"{ctx.author.mention} gives {member.mention} a slow, soothing headpat, easing their worries.",
f"A gentle hand from {ctx.author.mention} rests on {member.mention}'s head, offering silent support.",
f"{ctx.author.mention} gives {member.mention} a quick, encouraging headpat.",
f"{ctx.author.mention} runs their fingers through {member.mention}'s hair, ending with a soft headpat.",
f"{ctx.author.mention} gives {member.mention} a congratulatory headpat.",
f"{ctx.author.mention} gives {member.mention} a comforting headpat after a long day.",
f"{ctx.author.mention} gives {member.mention} a headpat that feels like a warm hug.",
f"{ctx.author.mention} gently boops {member.mention}'s head with a soft pat.",
f"{ctx.author.mention} gives {member.mention} a headpat, making them feel safe and loved.",
f"{ctx.author.mention} gives {member.mention} a headpat, a simple gesture that speaks volumes.",
f"{ctx.author.mention} gives {member.mention} a headpat, acknowledging their presence with kindness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a silent promise of continued care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a small act of tenderness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a moment of gentle connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and innocent gesture.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sign of deep affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gesture of pure, unadulterated kindness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a symbol of comfort and understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their worth.",
f"{ctx.author.mention} gives {member.mention} a headpat, a silent blessing.",
f"{ctx.author.mention} gives {member.mention} a headpat, a moment of shared peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gesture that transcends words.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft touch that calms the soul.",
f"{ctx.author.mention} gives {member.mention} a headpat, a simple act of profound love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that soothes the spirit.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of acceptance.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of fondness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender moment of connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that reassures.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that warms the heart.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of support.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle touch.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving moment of peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that brings happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of warmth.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle moment.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that warms the heart.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of fondness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle affirmation.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving moment of connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender touch that reassures.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of support.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that brings solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle caress.",
f"{ctx.author.mention} gives {member.mention} a loving moment of warmth.",
f"{ctx.author.mention} gives {member.mention} a tender touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of comfort.",
f"{ctx.author.mention} gives {member.mention} a gentle caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings happiness.",
f"{ctx.author.mention} gives {member.mention} a tender expression of solace.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of joy.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle touch that reassures.",
f"{ctx.author.mention} gives {member.mention} a loving moment of understanding.",
f"{ctx.author.mention} gives {member.mention} a tender touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of peace.",
f"{ctx.author.mention} gives {member.mention} a gentle caress that brings happiness.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a tender expression of joy.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of peace.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle moment of happiness.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a tender caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of happiness.",
f"{ctx.author.mention} gives {member.mention} a gentle touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a loving caress that brings joy.",
f"{ctx.author.mention} gives {member.mention} a tender expression of peace.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of happiness.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a loving moment of peace.",
f"{ctx.author.mention} gives {member.mention} a tender touch that brings happiness.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of solace.",
f"{ctx.author.mention} gives {member.mention} a gentle caress that brings joy.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings peace.",
f"{ctx.author.mention} gives {member.mention} a tender expression of happiness.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of solace.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle moment of joy.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a tender caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of comfort.",
f"{ctx.author.mention} gives {member.mention} a gentle touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a loving caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a tender expression of comfort.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of joy.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle touch that brings peace.",
f"{ctx.author.mention} gives {member.mention} a loving moment of happiness.",
f"{ctx.author.mention} gives {member.mention} a tender touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of joy.",
f"{ctx.author.mention} gives {member.mention} a gentle caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a tender expression of happiness.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of solace.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle moment of joy.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a tender caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of comfort.",
f"{ctx.author.mention} gives {member.mention} a gentle touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a loving caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a tender expression of comfort.",
f"{ctx.author.mention} gives {member.mention} a comforting headpat, a gesture of pure affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft touch that conveys deep care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that speaks volumes.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of unwavering support.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of shared understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings immense comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their cherished bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and reassuring gesture of affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that melts away worries.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of profound love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings deep peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their special connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that fills the heart with joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of unconditional acceptance.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of pure, unadulterated happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings immense solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their unwavering support.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture that speaks volumes.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that soothes the soul.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of heartfelt affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings profound peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their deep bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings immense joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of complete understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of shared tranquility.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their enduring love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings profound comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of boundless affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings absolute peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings overwhelming joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of complete devotion.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of perfect harmony.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings eternal solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their everlasting love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture that transcends words.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that heals all wounds.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of divine affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings celestial peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings infinite joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of ultimate compassion.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of pure bliss.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings boundless solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their profound connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep devotion.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings absolute comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of eternal love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings perfect peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable spiritual bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings divine joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of infinite tenderness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of celestial tranquility.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their timeless connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates deeply.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings profound healing.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of boundless compassion.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings infinite happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of absolute serenity.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings eternal comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their beautiful journey together.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and reassuring gesture of unwavering love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings profound joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of endless affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings perfect happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their deep, abiding connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings divine peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of infinite love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of celestial bliss.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their timeless, beautiful bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates with pure love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings profound healing and comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of boundless, unconditional love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate, serene peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable, and eternal bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings infinite, divine happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated, and boundless love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of absolute, serene, and perfect tranquility.",
]
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "headpat")
response = random.choice(headpat_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have headpatted {count} times"
await ctx.reply(response)
# --- Memes Group ---
memes = app_commands.Group(name="memes", description="Meme and copypasta commands")

View File

@ -454,6 +454,561 @@ class MessageCog(commands.Cog):
response += f"\n-# {ctx.author.display_name} and {member.display_name} have hugged {count} times"
await ctx.reply(response)
@rp.command(name="headpat", description="Send a wholesome headpat message to the mentioned user")
@app_commands.allowed_installs(guilds=True, users=True)
@app_commands.allowed_contexts(guilds=True, dms=True, private_channels=True)
@app_commands.describe(member="The user to send the message to")
async def headpat_slash(self, interaction: discord.Interaction, member: discord.User):
"""Slash command version of headpat."""
# Track usage between the two users
await self._increment_usage_counter(interaction.user.id, member.id, "neru_headpat")
headpat_messages = [
f"{interaction.user.mention} gently pats {member.mention}'s head, a soft smile gracing their lips.",
f"{interaction.user.mention} reaches out and gives {member.mention} a comforting headpat.",
f"A warm hand from {interaction.user.mention} ruffles {member.mention}'s hair with a gentle headpat.",
f"{interaction.user.mention} gives {member.mention} a series of light, affectionate headpats.",
f"{interaction.user.mention} softly strokes {member.mention}'s head, a gesture of warmth and care.",
f"{interaction.user.mention} leans in and gives {member.mention} a tender headpat, making them feel cherished.",
f"With a loving gaze, {interaction.user.mention} gives {member.mention} a reassuring headpat.",
f"{interaction.user.mention} playfully taps {member.mention}'s head, a sign of friendly affection.",
f"{interaction.user.mention} gives {member.mention} a slow, soothing headpat, easing their worries.",
f"A gentle hand from {interaction.user.mention} rests on {member.mention}'s head, offering silent support.",
f"{interaction.user.mention} gives {member.mention} a quick, encouraging headpat.",
f"{interaction.user.mention} runs their fingers through {member.mention}'s hair, ending with a soft headpat.",
f"{interaction.user.mention} gives {member.mention} a congratulatory headpat.",
f"{interaction.user.mention} gives {member.mention} a comforting headpat after a long day.",
f"{interaction.user.mention} gives {member.mention} a headpat that feels like a warm hug.",
f"{interaction.user.mention} gently boops {member.mention}'s head with a soft pat.",
f"{interaction.user.mention} gives {member.mention} a headpat, making them feel safe and loved.",
f"{interaction.user.mention} gives {member.mention} a headpat, a simple gesture that speaks volumes.",
f"{interaction.user.mention} gives {member.mention} a headpat, acknowledging their presence with kindness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a silent promise of continued care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a small act of tenderness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a moment of gentle connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and innocent gesture.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sign of deep affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gesture of pure, unadulterated kindness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a symbol of comfort and understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their worth.",
f"{interaction.user.mention} gives {member.mention} a headpat, a silent blessing.",
f"{interaction.user.mention} gives {member.mention} a headpat, a moment of shared peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gesture that transcends words.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft touch that calms the soul.",
f"{interaction.user.mention} gives {member.mention} a headpat, a simple act of profound love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that soothes the spirit.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of acceptance.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of fondness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender moment of connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that reassures.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that warms the heart.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle touch.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of warmth.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle moment.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that warms the heart.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of fondness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle affirmation.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that reassures.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle caress.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of warmth.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle touch that reassures.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle moment of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle moment of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle moment of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle touch that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving moment of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender touch that brings solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting gesture of solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet and gentle moment of joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet gesture of comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender expression of comfort.",
f"{interaction.user.mention} gives {member.mention} a comforting headpat, a gesture of pure affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft touch that conveys deep care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that speaks volumes.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of unwavering support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of shared understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings immense comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their cherished bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that melts away worries.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of profound love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings deep peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their special connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that fills the heart with joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of unconditional acceptance.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of pure, unadulterated happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings immense solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their unwavering support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that speaks volumes.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that soothes the soul.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of heartfelt affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings profound peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their deep bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings immense joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of complete understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of shared tranquility.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their enduring love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings absolute peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings overwhelming joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of complete devotion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of perfect harmony.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings eternal solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their everlasting love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that transcends words.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that heals all wounds.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of divine affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings celestial peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of ultimate compassion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of pure bliss.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings boundless solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their profound connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep devotion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings absolute comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of eternal love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings perfect peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable spiritual bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings divine joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of infinite tenderness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of celestial tranquility.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their timeless connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates deeply.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound healing.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless compassion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of absolute serenity.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings eternal comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their beautiful journey together.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of unwavering love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of endless affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings perfect happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their deep, abiding connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings divine peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of infinite love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of celestial bliss.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their timeless, beautiful bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates with pure love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound healing and comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless, unconditional love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate, serene peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable, and eternal bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite, divine happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated, and boundless love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of absolute, serene, and perfect tranquility.",
f"{interaction.user.mention} gives {member.mention} a comforting headpat, a gesture of pure affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft touch that conveys deep care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle caress that speaks volumes.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of unwavering support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of shared understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving touch that brings immense comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their cherished bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that melts away worries.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of profound love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings deep peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their special connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that fills the heart with joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of unconditional acceptance.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of pure, unadulterated happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings immense solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their unwavering support.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that speaks volumes.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that soothes the soul.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of heartfelt affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings profound peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their deep bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings immense joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of complete understanding.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of shared tranquility.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their enduring love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep care.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings absolute peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings overwhelming joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of complete devotion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of perfect harmony.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings eternal solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their everlasting love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that transcends words.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that heals all wounds.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of divine affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings celestial peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of ultimate compassion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of pure bliss.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings boundless solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their profound connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep devotion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings absolute comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of eternal love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings perfect peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable spiritual bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings divine joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of infinite tenderness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of celestial tranquility.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic solace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their timeless connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates deeply.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound healing.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless compassion.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of absolute serenity.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings eternal comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their beautiful journey together.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and reassuring gesture of unwavering love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of endless affection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings perfect happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their deep, abiding connection.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings divine peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of infinite love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of celestial bliss.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic joy.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle reminder of their timeless, beautiful bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates with pure love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender caress that brings profound healing and comfort.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet expression of boundless, unconditional love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate, serene peace.",
f"{interaction.user.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable, and eternal bond.",
f"{interaction.user.mention} gives {member.mention} a headpat, a loving caress that brings infinite, divine happiness.",
f"{interaction.user.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated, and boundless love.",
f"{interaction.user.mention} gives {member.mention} a headpat, a sweet moment of absolute, serene, and perfect tranquility.",
]
# Get the updated count
count = await self._get_usage_count(interaction.user.id, member.id, "neru_headpat")
response = random.choice(headpat_messages)
response += f"\n-# {interaction.user.display_name} and {member.display_name} have headpatted {count} times"
await interaction.response.send_message(response)
@commands.command(name="headpat")
async def headpat_legacy(self, ctx: commands.Context, member: discord.User):
"""Legacy command version of headpat."""
# Track usage between the two users
await self._increment_usage_counter(ctx.author.id, member.id, "neru_headpat")
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "neru_headpat")
headpat_messages = [
f"{ctx.author.mention} gently pats {member.mention}'s head, a soft smile gracing their lips.",
f"{ctx.author.mention} reaches out and gives {member.mention} a comforting headpat.",
f"A warm hand from {ctx.author.mention} ruffles {member.mention}'s hair with a gentle headpat.",
f"{ctx.author.mention} gives {member.mention} a series of light, affectionate headpats.",
f"{ctx.author.mention} softly strokes {member.mention}'s head, a gesture of warmth and care.",
f"{ctx.author.mention} leans in and gives {member.mention} a tender headpat, making them feel cherished.",
f"With a loving gaze, {ctx.author.mention} gives {member.mention} a reassuring headpat.",
f"{ctx.author.mention} playfully taps {member.mention}'s head, a sign of friendly affection.",
f"{ctx.author.mention} gives {member.mention} a slow, soothing headpat, easing their worries.",
f"A gentle hand from {ctx.author.mention} rests on {member.mention}'s head, offering silent support.",
f"{ctx.author.mention} gives {member.mention} a quick, encouraging headpat.",
f"{ctx.author.mention} runs their fingers through {member.mention}'s hair, ending with a soft headpat.",
f"{ctx.author.mention} gives {member.mention} a congratulatory headpat.",
f"{ctx.author.mention} gives {member.mention} a comforting headpat after a long day.",
f"{ctx.author.mention} gives {member.mention} a headpat that feels like a warm hug.",
f"{ctx.author.mention} gently boops {member.mention}'s head with a soft pat.",
f"{ctx.author.mention} gives {member.mention} a headpat, making them feel safe and loved.",
f"{ctx.author.mention} gives {member.mention} a headpat, a simple gesture that speaks volumes.",
f"{ctx.author.mention} gives {member.mention} a headpat, acknowledging their presence with kindness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a silent promise of continued care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a small act of tenderness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a moment of gentle connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and innocent gesture.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sign of deep affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gesture of pure, unadulterated kindness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a symbol of comfort and understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their worth.",
f"{ctx.author.mention} gives {member.mention} a headpat, a silent blessing.",
f"{ctx.author.mention} gives {member.mention} a headpat, a moment of shared peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gesture that transcends words.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft touch that calms the soul.",
f"{ctx.author.mention} gives {member.mention} a headpat, a simple act of profound love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that soothes the spirit.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of acceptance.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of fondness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender moment of connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that reassures.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that warms the heart.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of support.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle touch.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving moment of peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that brings happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of warmth.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle moment.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that warms the heart.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of fondness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle affirmation.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving moment of connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender touch that reassures.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of support.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that brings solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle caress.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving moment of warmth.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle touch that reassures.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving moment of understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that brings happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet and gentle moment of happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet gesture of happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender expression of peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting gesture of happiness.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a loving moment of peace.",
f"{ctx.author.mention} gives {member.mention} a tender touch that brings happiness.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of solace.",
f"{ctx.author.mention} gives {member.mention} a gentle caress that brings joy.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings peace.",
f"{ctx.author.mention} gives {member.mention} a tender expression of happiness.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of solace.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle moment of joy.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a tender caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of comfort.",
f"{ctx.author.mention} gives {member.mention} a gentle touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a loving caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a tender expression of comfort.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of joy.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle touch that brings peace.",
f"{ctx.author.mention} gives {member.mention} a loving moment of happiness.",
f"{ctx.author.mention} gives {member.mention} a tender touch that brings solace.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of joy.",
f"{ctx.author.mention} gives {member.mention} a gentle caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a tender expression of happiness.",
f"{ctx.author.mention} gives {member.mention} a comforting gesture of solace.",
f"{ctx.author.mention} gives {member.mention} a sweet and gentle moment of joy.",
f"{ctx.author.mention} gives {member.mention} a loving touch that brings comfort.",
f"{ctx.author.mention} gives {member.mention} a tender caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a sweet gesture of comfort.",
f"{ctx.author.mention} gives {member.mention} a gentle touch that brings joy.",
f"{ctx.author.mention} gives {member.mention} a loving caress that brings peace.",
f"{ctx.author.mention} gives {member.mention} a tender expression of comfort.",
f"{ctx.author.mention} gives {member.mention} a comforting headpat, a gesture of pure affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft touch that conveys deep care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle caress that speaks volumes.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of unwavering support.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of shared understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving touch that brings immense comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their cherished bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and reassuring gesture of affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that melts away worries.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of profound love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings deep peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their special connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that fills the heart with joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of unconditional acceptance.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of pure, unadulterated happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings immense solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their unwavering support.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture that speaks volumes.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that soothes the soul.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of heartfelt affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings profound peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their deep bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings immense joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of complete understanding.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of shared tranquility.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their enduring love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep care.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings profound comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of boundless affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings absolute peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings overwhelming joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of complete devotion.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of perfect harmony.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings eternal solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their everlasting love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture that transcends words.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that heals all wounds.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of divine affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings celestial peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings infinite joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of ultimate compassion.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of pure bliss.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings boundless solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their profound connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and reassuring gesture of deep devotion.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings absolute comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of eternal love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings perfect peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their unbreakable spiritual bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings divine joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of infinite tenderness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of celestial tranquility.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic solace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their timeless connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates deeply.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings profound healing.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of boundless compassion.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings infinite happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of absolute serenity.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings eternal comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their beautiful journey together.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and reassuring gesture of unwavering love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings profound joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of endless affection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings perfect happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their deep, abiding connection.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings divine peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of infinite love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of celestial bliss.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings cosmic joy.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle reminder of their timeless, beautiful bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a soft and loving gesture that resonates with pure love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender caress that brings profound healing and comfort.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet expression of boundless, unconditional love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a comforting touch that brings ultimate, serene peace.",
f"{ctx.author.mention} gives {member.mention} a headpat, a gentle affirmation of their sacred, unbreakable, and eternal bond.",
f"{ctx.author.mention} gives {member.mention} a headpat, a loving caress that brings infinite, divine happiness.",
f"{ctx.author.mention} gives {member.mention} a headpat, a tender gesture of pure, unadulterated, and boundless love.",
f"{ctx.author.mention} gives {member.mention} a headpat, a sweet moment of absolute, serene, and perfect tranquility.",
]
# Get the updated count
count = await self._get_usage_count(ctx.author.id, member.id, "neru_headpat")
response = random.choice(headpat_messages)
response += f"\n-# {ctx.author.display_name} and {member.display_name} have headpatted {count} times"
await ctx.reply(response)
# --- Memes Group ---
memes = app_commands.Group(name="memes", description="Meme and copypasta commands")