Exemplo n.º 1
0
 public async Task Attack(CommandContext ctx, string attr)
 {
     if (!CardHelper.IsMinion(attr))
     {
         await ctx.Channel.SendMessageAsync("That's not a minon.");
     }
     else
     {
         await ctx.Channel.SendMessageAsync(CardHelper.GetAtk(attr));
     }
 }