NadekoBot/NadekoBot/Commands/FlipCoinCommand.cs
Master Kwoth a909d69e4a Initial commit
Enjoy
2015-12-05 12:03:11 +01:00

39 lines
963 B
C#

using System;
using System.Threading.Tasks;
using Discord.Commands;
namespace NadekoBot
{
class FlipCoinCommand : DiscordCommand
{
private Random _r;
public FlipCoinCommand() : base()
{
_r = new Random();
}
public override Func<CommandEventArgs, Task> DoFunc()
{
return async e => {
int num = _r.Next(0, 2);
if (num == 1)
{
await client.SendFile(e.Channel, @"images/coins/heads.png");
}
else
{
await client.SendFile(e.Channel, @"images/coins/tails.png");
}
};
}
public override void Init(CommandGroupBuilder cgb)
{
cgb.CreateCommand("$flip")
.Description("Flips a coin, heads or tails, and shows an image of it.")
.Do(DoFunc());
}
}
}