async def pack_list(self, ctx): """Lists your available packs.""" available_pack_names = await self.bot.mdb.packs.find( Pack.view_query(str(ctx.author.id)), ['name']).to_list(None) await ctx.send( f"Your available packs: {', '.join(p['name'] for p in available_pack_names)}" )
async def pack(self, ctx, *, name=None): """Commands to manage homebrew items. When called without an argument, lists the current pack and its description. When called with a name, switches to a different pack.""" user_packs = await self.bot.mdb.packs.count_documents( Pack.view_query(str(ctx.author.id))) if not user_packs: return await ctx.send( "You have no packs. You can make one at <https://avrae.io/dashboard/homebrew/items>!" ) if name is None: pack = await Pack.from_ctx(ctx) else: try: pack = await select_pack(ctx, name) except NoActiveBrew: return await ctx.send( "You have no packs. You can make one at <https://avrae.io/dashboard/homebrew/items>!" ) except NoSelectionElements: return await ctx.send("Pack not found.") await pack.set_active(ctx) embed = HomebrewEmbedWithAuthor(ctx) embed.title = pack.name embed.description = pack.desc if pack.image: embed.set_thumbnail(url=pack.image) itemnames = "\n".join(i['name'] for i in pack.items) if len(itemnames) < 1020: embed.add_field(name="Items", value=itemnames) else: embed.add_field(name="Items", value=f"{len(pack.items)} items.") await ctx.send(embed=embed)