adding mroe weeb methods

This commit is contained in:
Luke Robles 2022-09-12 19:07:02 -07:00
parent 2ce9e9d362
commit 29508c3a31
2 changed files with 70 additions and 12 deletions

View File

@ -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):

View File

@ -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"],
}