Adding horny and simp
This commit is contained in:
parent
6f69bf95c8
commit
ae60ace55f
18
app/bot.py
18
app/bot.py
@ -286,7 +286,6 @@ async def verify(ctx):
|
||||
if emoji:
|
||||
await message.add_reaction(emoji)
|
||||
|
||||
|
||||
@bot.command(name='clap')
|
||||
async def clap(ctx):
|
||||
|
||||
@ -304,12 +303,27 @@ async def roles(ctx):
|
||||
pass
|
||||
|
||||
|
||||
@bot.command(name='simp')
|
||||
async def simp(ctx):
|
||||
response = requests.get("https://some-random-api.ml/canvas/simpcard/?avatar=%s" % ctx.message.content.split()[-1])
|
||||
with open('/app/simp.jpg', 'wb') as f:
|
||||
f.write(response.content)
|
||||
await ctx.message.delete()
|
||||
await ctx.send(file=discord.File('/app/simp.jpg'))
|
||||
|
||||
@bot.command(name='horny')
|
||||
async def horny(ctx):
|
||||
response = requests.get("https://some-random-api.ml/canvas/horny/?avatar=%s" % ctx.message.content.split()[-1])
|
||||
with open('/app/horny.jpg', 'wb') as f:
|
||||
f.write(response.content)
|
||||
await ctx.message.delete()
|
||||
await ctx.send(file=discord.File('/app/horny.jpg'))
|
||||
|
||||
@bot.command(name='birb')
|
||||
async def birb(ctx):
|
||||
import animals
|
||||
await ctx.send(animals.get_birb())
|
||||
|
||||
|
||||
@bot.command(name='dale')
|
||||
async def dale(ctx):
|
||||
import animals
|
||||
|
@ -41,6 +41,14 @@ def get_help_message(method):
|
||||
'Returns the shittiest meme created by sassy girls on twitter this century',
|
||||
'Usage: !clap some text to be meme\'mt'
|
||||
],
|
||||
'simp': [
|
||||
'Returns a license to be a simp',
|
||||
'Usage: !simp https://some.photo.jpg'
|
||||
],
|
||||
'horny': [
|
||||
'Returns a license to be horny',
|
||||
'Usage: !horny https://some.photo.jpg'
|
||||
],
|
||||
'cleanup': [
|
||||
'Admin use only. Deletes dragon bot\'s messages from the channel',
|
||||
'Usage: !cleanup'
|
||||
@ -186,7 +194,7 @@ def get_help_message(method):
|
||||
|
||||
def get_help_embed(bot):
|
||||
categories = {
|
||||
'fun': ['ffxiv', 'clap', 'youtube', 'excuse', 'greentext', 'lewd', 'message', 'meme', 'homepage', 'pout', 'roll', 'smug', 'quake', 'wink', 'verify'],
|
||||
'fun': ['ffxiv', 'clap', 'youtube', 'excuse', 'greentext', 'lewd', 'message', 'meme', 'homepage', 'pout', 'roll', 'smug', 'quake', 'wink', 'verify', 'horny', 'simp'],
|
||||
'util': ['ask', 'corona', 'emoji', '8ball', 'decide', 'info', 'icon', 'wallpaper', 'stock', 'tts', 'issue'],
|
||||
'users': ['help', 'invite', 'purge', 'roles', 'source'],
|
||||
'pictures of animals': ['birb', 'redpanda,' 'dale', 'dog', 'rat', 'koala', 'panda', 'raccoon', 'fox', 'cat', 'kangaroo'],
|
||||
|
BIN
app/simp.jpg
Normal file
BIN
app/simp.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 156 KiB |
Loading…
x
Reference in New Issue
Block a user