Added first steam API command

This commit is contained in:
Robert 2020-01-07 02:41:08 +01:00
parent 82228b17eb
commit ca91cfddaf
7 changed files with 188 additions and 3 deletions

18
cogs/fun/coinflip.py Normal file
View file

@ -0,0 +1,18 @@
import discord
import random
from discord.ext import commands
class Coinflip(commands.Cog):
def __init__(self, client):
self.client = client
@commands.command(name="coinflip", description="Flips a coin and reacts with the result", aliases=["coin", "flip"])
async def coinflip(self, ctx):
if random.randint(0, 1) == 0:
await ctx.message.add_reaction("🌑")
else:
await ctx.message.add_reaction("🌕")
def setup(client):
client.add_cog(Coinflip(client))