我在一些随机的 github 页面上找到了我的解决方案:
颜色 = 0xeeffee
有了这个,我能够生产:
使用以下代码:
white = 0xeeffee
@client.command(name = "eightball", description = "Asks the 8ball a question.", aliases = ["8ball","8b"])
async def eightball(ctx,*,question):
responses = ("It is Certain.","It is decidedly so.","Without a doubt.","Yes definitely.","You may rely on it.","As I see it, yes.","Most likely.","Outlook good.","Yes.","Signs point to yes.","Reply hazy, try again.","Ask again later.","Better not tell you now.","Cannot predict now.","Concentrate and ask again.","Don't count on it.","My reply is no.","My sources say no.","Outlook not so good.","Very doubtful.")
embed = discord.Embed(title = ":8ball:8ball", description = random.choice(responses), colour = white)
await ctx.send(embed = embed)