From 237f7fcabbd4f12a2396f0c2ba028eba98c89df3 Mon Sep 17 00:00:00 2001 From: Luke Robles <98352913+lrobles-iterable@users.noreply.github.com> Date: Mon, 12 Sep 2022 19:07:02 -0700 Subject: [PATCH] adding mroe weeb methods --- app/cogs/weeb_shit.py | 45 +++++++++++++++++++++++++++++++++++++++++++ app/help_methods.py | 37 +++++++++++++++++++++++------------ 2 files changed, 70 insertions(+), 12 deletions(-) diff --git a/app/cogs/weeb_shit.py b/app/cogs/weeb_shit.py index 8cc1f4e5..6e4e3500 100644 --- a/app/cogs/weeb_shit.py +++ b/app/cogs/weeb_shit.py @@ -27,6 +27,51 @@ class Weeb(commands.Cog): ) ) + @commands.command(name="yeet") + async def yeet(self, ctx: commands.Context): + + await ctx.reply( + embed=core_utils.generate_embed( + embed_url=core_utils.waifu_pics(endpoint="yeet") + ) + ) + + @commands.command(name="cuddle") + async def cuddle(self, ctx: commands.Context): + + await ctx.reply( + embed=core_utils.generate_embed( + embed_url=core_utils.waifu_pics(endpoint="cuddle") + ) + ) + + @commands.command(name="awoo") + async def awoo(self, ctx: commands.Context): + + await ctx.reply( + embed=core_utils.generate_embed( + embed_url=core_utils.waifu_pics(endpoint="awoo") + ) + ) + + @commands.command(name="bonk") + async def bonk(self, ctx: commands.Context): + + await ctx.reply( + embed=core_utils.generate_embed( + embed_url=core_utils.waifu_pics(endpoint="bonk") + ) + ) + + @commands.command(name="glomp") + async def glomp(self, ctx: commands.Context): + + await ctx.reply( + embed=core_utils.generate_embed( + embed_url=core_utils.waifu_pics(endpoint="glomp") + ) + ) + @commands.command(name="pout") async def pout(self, ctx: commands.Context): diff --git a/app/help_methods.py b/app/help_methods.py index 78ea4a66..f23c6447 100644 --- a/app/help_methods.py +++ b/app/help_methods.py @@ -217,6 +217,14 @@ def get_help_message(method): "dance": ["returns an anime girl dancing", "\nUsage: !dance"], "cringe": ["returns an anime girl cringing", "\nUsage: !cringe"], "blush": ["returns an anime girl blushing", "\nUsage: !blush"], + "yeet": ["returns an anime girl getting yeetetd", "\nUsage: !yeet"], + "cuddle": ["returns an anime girl cuddling", "\nUsage: !cuddle"], + "awoo": ["returns an anime dog girl (like neko but dogs)", "\nUsage: !awoo"], + "bonk": ["returns an anime girl getting hit", "\nUsage: !bonk"], + "glomp": [ + "returns an anime girl getting bitten but not like !bite", + "\nUsage: !glomp", + ], "wordle": ["Link to the worlde app running on my k8s", "\nUsage: !wordle"], "vc": [ "Creates a role and voice channel named whatever you pass in. Only takes one argument\n", @@ -288,25 +296,30 @@ def get_help_embed(bot): "sheeb", ], "pictures of anime girls": [ - "waifu", - "neko", - "shinobu", + "awoo", + "bite", + "blush", + "bonk", "bully", + "cringe", "cry", + "cuddle", + "dance", + "glomp", + "highfive", "hug", "kiss", "lick", - "pat", - "smug", - "highfive", + "neko", "nom", - "bite", - "slap", - "wink", + "pat", "poke", - "dance", - "cringe", - "blush", + "shinobu", + "slap", + "smug", + "waifu", + "wink", + "yeet", ], "admin": ["cleanup"], }