Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions cogs/fun.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,20 @@ async def kill(self, ctx: ApplicationContext, target: discord.User = None):
f"{target.display_name} tried to do a wheelie on their bike without wearing a helmet and fell off."
]
await ctx.respond(random.choice(responses))

@commands.slash_command(
name="owoify",
description="Owoify any text you want!"
)
@option(name="text", description="The text you want to owoify", type=str)
async def owoify(self, ctx: ApplicationContext, text: str):
text = text.replace("r", "w")
text = text.replace("l", "w")
text = text.replace("the", "da")
text = text.replace("you", "u")
text = text.replace("your", "ur")
text += random.choice([" uwu", " owo", " UwU", " OwO", " XDDD", " :D", " ;-;", " <3", " ^-^", " >-<"])
await ctx.respond(text)

# Initialization
def setup(bot): bot.add_cog(Fun(bot))
10 changes: 10 additions & 0 deletions config/commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -708,5 +708,15 @@
"usable_by": "everyone",
"disabled": false,
"bugged": false
},
"owoify": {
"name": "Owoify",
"description": "Lets you owoify any text you want (uwu girl moment)",
"type": "fun",
"cooldown": null,
"args": ["text"],
"usable_by": "everyone",
"disabled": false,
"bugged": false
}
}