diff options
author | 2023-05-06 16:13:14 +0100 | |
---|---|---|
committer | 2023-05-09 15:42:23 +0100 | |
commit | 9266ce3a1b3e9f20ca01e8bfc75530f1ac21f7cf (patch) | |
tree | e159a0fae7850d706d713cf2b49dfed2140ce655 /bot/exts/fun/catify.py | |
parent | Apply fixes for ruff linting (diff) |
Move unshared contants inside modules
Diffstat (limited to 'bot/exts/fun/catify.py')
-rw-r--r-- | bot/exts/fun/catify.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/bot/exts/fun/catify.py b/bot/exts/fun/catify.py index 67d17292..c1677cd8 100644 --- a/bot/exts/fun/catify.py +++ b/bot/exts/fun/catify.py @@ -5,9 +5,11 @@ from discord import AllowedMentions, Embed, Forbidden from discord.ext import commands from bot.bot import Bot -from bot.constants import Cats, Colours, NEGATIVE_REPLIES +from bot.constants import Colours, NEGATIVE_REPLIES from bot.utils import helpers +CATS = ["ᓚᘏᗢ", "ᘡᘏᗢ", "🐈", "ᓕᘏᗢ", "ᓇᘏᗢ", "ᓂᘏᗢ", "ᘣᘏᗢ", "ᕦᘏᗢ", "ᕂᘏᗢ"] + class Catify(commands.Cog): """Cog for the catify command.""" @@ -35,7 +37,7 @@ class Catify(commands.Cog): await ctx.send(embed=embed) return - display_name += f" | {random.choice(Cats.cats)}" + display_name += f" | {random.choice(CATS)}" await ctx.send(f"Your catified nickname is: `{display_name}`", allowed_mentions=AllowedMentions.none()) @@ -56,10 +58,10 @@ class Catify(commands.Cog): name = name.lower() if "cat" in name: if random.randint(0, 5) == 5: - string_list[index] = name.replace("cat", f"**{random.choice(Cats.cats)}**") + string_list[index] = name.replace("cat", f"**{random.choice(CATS)}**") else: - string_list[index] = name.replace("cat", random.choice(Cats.cats)) - for cat in Cats.cats: + string_list[index] = name.replace("cat", random.choice(CATS)) + for cat in CATS: if cat in name: string_list[index] = name.replace(cat, "cat") @@ -68,9 +70,9 @@ class Catify(commands.Cog): for _ in range(random.randint(1, string_len)): # insert cat at random index if random.randint(0, 5) == 5: - string_list.insert(random.randint(0, len(string_list)), f"**{random.choice(Cats.cats)}**") + string_list.insert(random.randint(0, len(string_list)), f"**{random.choice(CATS)}**") else: - string_list.insert(random.randint(0, len(string_list)), random.choice(Cats.cats)) + string_list.insert(random.randint(0, len(string_list)), random.choice(CATS)) text = helpers.suppress_links(" ".join(string_list)) await ctx.send( |