public async Task SearchEnemyCommand(CommandContext ctx, int monsterLevel)
        {
            await ctx.TriggerTypingAsync();

            var embed = new DiscordEmbedBuilder();

            embed.WithDescription("Procurando um monstro");
            await ctx.RespondAsync(embed.Build());

            await _battleService.SearchEnemy(ctx, monsterLevel);
        }