😈
This commit is contained in:
parent
a6a9ab5ebb
commit
d19e31bea0
1 changed files with 5 additions and 2 deletions
7
bot.py
7
bot.py
|
@ -224,8 +224,11 @@ class Bot(commands.Bot):
|
||||||
# Requested by linguini15
|
# Requested by linguini15
|
||||||
@commands.command()
|
@commands.command()
|
||||||
async def shape(self, ctx: commands.Context):
|
async def shape(self, ctx: commands.Context):
|
||||||
platonic_solids = ["tetrahedron", "hexahedron", "octahedron", "dodecahedron", "icosahedron"]
|
if random.random() > 0.1:
|
||||||
solid = random.choice(platonic_solids)
|
solid = random.choice(["tetrahedron", "hexahedron", "octahedron", "dodecahedron", "icosahedron"])
|
||||||
|
else:
|
||||||
|
# Rarer goofy options
|
||||||
|
solid = random.choice(["600 cell", "pentachoric trischiliaoctacositetracontateron"])
|
||||||
message = f"did you guys know the marble is a{'n' if solid[0] in ['i', 'o'] else ''} {solid}!?!?!?"
|
message = f"did you guys know the marble is a{'n' if solid[0] in ['i', 'o'] else ''} {solid}!?!?!?"
|
||||||
await ctx.send(message)
|
await ctx.send(message)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue