|
|
@ -323,8 +323,7 @@ class Anime(Cog):
|
|
|
|
@bot_has_permissions(embed_links=True, add_reactions=True)
|
|
|
|
@bot_has_permissions(embed_links=True, add_reactions=True)
|
|
|
|
async def airing(self, ctx):
|
|
|
|
async def airing(self, ctx):
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
Display airing shows and waifu's in those shows
|
|
|
|
Display's airing anime and waifu's within those anime's
|
|
|
|
(UNDER CONSTRUCTION)
|
|
|
|
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
error = WaifuCommandNotFound(ctx.command, ctx)
|
|
|
|
error = WaifuCommandNotFound(ctx.command, ctx)
|
|
|
@ -333,7 +332,7 @@ class Anime(Cog):
|
|
|
|
@airing.command(name="trash", aliases=["worst", "garbage"])
|
|
|
|
@airing.command(name="trash", aliases=["worst", "garbage"])
|
|
|
|
@bot_has_permissions(embed_links=True, add_reactions=True)
|
|
|
|
@bot_has_permissions(embed_links=True, add_reactions=True)
|
|
|
|
async def airing_trash(self, ctx):
|
|
|
|
async def airing_trash(self, ctx):
|
|
|
|
"""Get the most popular waifu’s from the airing shows"""
|
|
|
|
"""Get the most popular waifu’s from the airing anime"""
|
|
|
|
|
|
|
|
|
|
|
|
# Variables to set up the reaction menu
|
|
|
|
# Variables to set up the reaction menu
|
|
|
|
i = 0
|
|
|
|
i = 0
|
|
|
@ -358,7 +357,7 @@ class Anime(Cog):
|
|
|
|
@airing.command(name="popular", aliases=["pop"])
|
|
|
|
@airing.command(name="popular", aliases=["pop"])
|
|
|
|
@bot_has_permissions(embed_links=True, add_reactions=True)
|
|
|
|
@bot_has_permissions(embed_links=True, add_reactions=True)
|
|
|
|
async def airing_popular(self, ctx):
|
|
|
|
async def airing_popular(self, ctx):
|
|
|
|
"""Get the most popular waifu’s from the airing shows"""
|
|
|
|
"""Get the most popular waifu’s from the airing anime"""
|
|
|
|
|
|
|
|
|
|
|
|
# Variables to setup the reaction menu
|
|
|
|
# Variables to setup the reaction menu
|
|
|
|
i = 0
|
|
|
|
i = 0
|
|
|
@ -383,7 +382,7 @@ class Anime(Cog):
|
|
|
|
@airing.command(name="best")
|
|
|
|
@airing.command(name="best")
|
|
|
|
@bot_has_permissions(embed_links=True, add_reactions=True)
|
|
|
|
@bot_has_permissions(embed_links=True, add_reactions=True)
|
|
|
|
async def airing_best(self, ctx):
|
|
|
|
async def airing_best(self, ctx):
|
|
|
|
"""Get the best waifu’s from the airing shows"""
|
|
|
|
"""Get the best waifu’s from the airing anime"""
|
|
|
|
|
|
|
|
|
|
|
|
# Local Variable i to allow the pages to be modified
|
|
|
|
# Local Variable i to allow the pages to be modified
|
|
|
|
i = 0
|
|
|
|
i = 0
|
|
|
@ -489,8 +488,7 @@ class Anime(Cog):
|
|
|
|
@bot_has_permissions(embed_links=True)
|
|
|
|
@bot_has_permissions(embed_links=True)
|
|
|
|
async def waifu(self, ctx):
|
|
|
|
async def waifu(self, ctx):
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
Waifu's are grabbed from mywaifulist.com
|
|
|
|
Waifu's that are retrieved from MyWaifuList
|
|
|
|
(UNDER CONSTRUCTION)
|
|
|
|
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
error = WaifuCommandNotFound(ctx.command, ctx)
|
|
|
|
error = WaifuCommandNotFound(ctx.command, ctx)
|
|
|
|
await self.bot.generate_embed(ctx, desc=error.message)
|
|
|
|
await self.bot.generate_embed(ctx, desc=error.message)
|
|
|
|