I just downloaded and launched the game on Mint 18.1 x86_64.
Here are the complete steps, assuming the game is installed in the default folder.
This approach does not make any changes to the system (all commands are unprivileged, no system wide library installation). We will load the required library for the specific application (actually for the specific shell session).
--------------------
UPDATE: Generally the recommended approach is to solve dependencies using the distribution's package management tool.
This approach is a general method to fix library dependency issues, such as in cases like unsupported (by GOG) distributions or supported distributions which provide a newer incompatible library version, or has removed the library completely.
Of course, interested users may participate in the complete discussion taking place here.
--------------------
Create a
lib folder into Torment's installation folder:
$ cd ~/GOG\ Games/Planescape\ Torment\ Enhanced\ Edition/
$ mkdir lib
Download
libjson-c2.
I strongly recommend to check the integrity of the downloaded file before continue.
Navigate to the folder you have downloaded the deb file.
Extract deb file:
$ dpkg-deb -x libjson-c2_0.11-4ubuntu2_i386.deb libjson-c2_0.11-4ubuntu2_i386
Copy the shared object file to lib folder:
$ cd libjson-c2_0.11-4ubuntu2_i386/lib/i386-linux-gnu/
$ cp libjson-c.so.2.0.0 ~/GOG\ Games/Planescape\ Torment\ Enhanced\ Edition/lib/
Create the required symbolic links:
$ cd ~/GOG\ Games/Planescape\ Torment\ Enhanced\ Edition/lib/
$ ln -s libjson-c.so.2.0.0 libjson-c.so.2
$ ln -s libjson-c.so.2.0.0 libjson.so.0
Edit start.sh script (I used nano, but feel free to use a graphical editor):
$ cd ~/GOG\ Games/Planescape\ Torment\ Enhanced\ Edition/
Maybe you'd like to take a backup before editing:
$ cp start.sh start.sh.back
$ nano start.sh
Add the part in bold text. It should look like:
#!/bin/bash
# GOG.com (www.gog.com)
# Planescape: Torment Enhanced Edition
# Add shared object libraries to path
export LD_LIBRARY_PATH=$HOME/GOG\ Games/Planescape\ Torment\ Enhanced\ Edition/lib
# Initialization
Press ctrl+x -> y -> Enter to save the file.
Now all have been set. You may play the game:
./start.sh
Enjoy the game!