続きへ。
コードをどーん!
@bot.command(name="謎ガチャ") async def mystery_gacha_gacha(ctx): color = random.randint(0x000000, 0xFFFFFF) gachapon = [ "はずれ!", "木のツルハシゲット!", "鉄のツルハシゲット!", "石の一式ゲット!", "木の一式ゲット!", "鉄一式ゲット!", "ダイヤ一式ゲット!", "ネザライト一式ゲット!", ] result = random.choices(gachapon,weights=(99, 20, 20, 20, 20, 10, 10, 5))[0] await ctx.reply(embed=discord.Embed(title=f"{ctx.author}へ", description=result, color=color))
こんな感じに。
説明。
akumunoyami.hatenadiary.jp
これを元に組んでみた結果のものです。
英名にちゃんと直した結果がこの記事となります。
あくまでもサンプルなので、実際に試すが吉です。
では||)ノシ