···11+"""
22+This is a fun cog, it contains commands that are just for fun and don't have any real use.
33+"""
44+55+import random
66+import discohook
77+import time
88+99+@discohook.command.slash('dice', description = 'Roll a dice!')
1010+async def dice_command(interaction):
1111+ # Dice!
1212+ number = random.randint(1, 6)
1313+ text = "You rolled a... (Wait 1 second)"
1414+ await interaction.response.send(text)
1515+1616+ # anticipation
1717+ time.sleep(1)
1818+ text = f"You rolled a {number}!"
1919+ await interaction.response.followup(text)