diff --git a/pokecord/pokecord.py b/pokecord/pokecord.py index 9392912..8049393 100644 --- a/pokecord/pokecord.py +++ b/pokecord/pokecord.py @@ -46,7 +46,7 @@ class Pokecord( commands.Cog, metaclass=CompositeMetaClass, ): - """Pokecord adapted to use on Red.""" + """Ava's Pokemon adapted to use on Red.""" __version__ = "0.0.1-alpha-23" __author__ = "flare" @@ -198,7 +198,7 @@ class Pokecord( }, ) await self.config.migration.set(_MIGRATION_VERSION) - log.info("Pokecord Migration complete.") + log.info("Ava's Pokemon Migration complete.") await self.update_guild_cache() await self.update_spawn_chance() @@ -298,7 +298,7 @@ class Pokecord( return await ctx.send(_("You've already claimed your starter pokemon!")) if pokemon is None: msg = _( - "Hey there trainer! Welcome to Pokecord. This is a ported plugin version of Pokecord adopted for use on Red.\n" + "Hey there trainer! Welcome to Ava's Pokemon.\n" "In order to get catchin' you must pick one of the starter Pokemon as listed below.\n" "**Generation 1**\nBulbasaur, Charmander and Squirtle\n" "**Generation 2**\nChikorita, Cyndaquil, Totodile\n" @@ -308,6 +308,7 @@ class Pokecord( "**Generation 6**\nChespin, Fennekin, Froakie\n" "**Generation 7**\nRowlet, Litten, Popplio\n" "**Generation 8**\nGrookey, Scorbunny, Sobble\n" + "**More to come in the future!\n" ) msg += _("\nTo pick a pokemon, type {prefix}starter ").format( prefix=ctx.clean_prefix diff --git a/pokecord/pokemixin.py b/pokecord/pokemixin.py index 33830fa..2edc189 100644 --- a/pokecord/pokemixin.py +++ b/pokecord/pokemixin.py @@ -4,7 +4,7 @@ from redbot.core import commands @commands.group(name="poke") async def poke(self, ctx: commands.Context): """ - Pokecord commands + Ava's Pokemon commands """ diff --git a/pokecord/settings.py b/pokecord/settings.py index d2978ae..da9c292 100644 --- a/pokecord/settings.py +++ b/pokecord/settings.py @@ -43,11 +43,11 @@ class SettingsMixin(MixinMeta): @poke.command() @commands.guild_only() async def locale(self, ctx, locale: str): - """Set the Pokecord locale to use for yourself.""" + """Set the Ava's Pokemon locale to use for yourself.""" if locale.lower() not in LOCALES: await ctx.send( _( - "You've specified an invalid locale. Pokecord only supports English, Japanese, Chinese and French." + "You've specified an invalid locale. Ava's Pokemon only supports English" ) ) return @@ -65,14 +65,14 @@ class SettingsMixin(MixinMeta): @pokecordset.command(usage="type") @commands.admin_or_permissions(manage_guild=True) async def toggle(self, ctx, _type: bool = None): - """Toggle pokecord on or off.""" + """Toggle Ava's Pokemon on or off.""" if _type is None: _type = not await self.config.guild(ctx.guild).toggle() await self.config.guild(ctx.guild).toggle.set(_type) if _type: - await ctx.send(_("Pokécord has been toggled on!")) + await ctx.send(_("Ava's Pokemon has been toggled on!")) return - await ctx.send(_("Pokécord has been toggled off!")) + await ctx.send(_("Ava's Pokemon has been toggled off!")) await self.update_guild_cache() @pokecordset.command(usage="type") diff --git a/pokecord/trading.py b/pokecord/trading.py index aa3ff6c..81b7778 100644 --- a/pokecord/trading.py +++ b/pokecord/trading.py @@ -18,11 +18,11 @@ _ = Translator("Pokecord", __file__) class TradeMixin(MixinMeta): - """Pokecord Trading Commands""" + """Ava's Pokemon Trading Commands""" @poke.command(usage=" ") async def trade(self, ctx, user: discord.Member, *, id: int): - """Pokecord Trading + """Ava's Pokemon Trading Currently a work in progress.""" async with ctx.typing():