def dog(self, ctx):
"""Get a random cat image!
**Usage:** `g_dog`
**Permission:** User"""
isVideo = True
while isVideo:
r = requests.get('https://random.dog/woof.json')
js = r.json()
if js['url'].endswith('.mp4'):
pass
else:
isVideo = False
colours = [0x1abc9c, 0x11806a, 0x2ecc71, 0x1f8b4c, 0x3498db, 0x206694, 0x9b59b6, 0x71368a, 0xe91e63, 0xad1457, 0xf1c40f, 0xc27c0e, 0xa84300, 0xe74c3c, 0x992d22, 0x95a5a6, 0x607d8b, 0x979c9f, 0x546e7a]
col = int(random.random() * len(colours))
content = [":dog: Don't be sad! This doggy wants to play with you!", "You seem lonely, {0.mention}. Here, have a dog. They're not as nice as cats, but enjoy!".format(ctx.message.author), "Weuf, woof, woooooooooof. Woof you.", "Pupper!", "Meow... wait wrong animal."]
con = int(random.random() * len(content))
em = discord.Embed(color=colours[col])
em.set_image(url=js['url'])
await ctx.send(content=content[con], embed=em)
评论列表
文章目录