Tibia.dat contains useful info about items that can be sold through the in-game market. E.g.:
{
"boots": [
{
"decID": 813,
"isStackable": false,
"name": "terra boots",
"hexID": "2D 03"
},
{
"decID": 818,
"isStackable": false,
"name": "magma boots",
"hexID": "32 03"
},
{
"decID": 819,
"isStackable": false,
"name": "glacier shoes",
"hexID": "33 03"
},
…
A tool to extract this data would be useful. (I used to have a custom Python script that supported the data format up until version 10.56, but 10.57 changed the structure a bit.)
Tibia.datcontains useful info about items that can be sold through the in-game market. E.g.:{ "boots": [ { "decID": 813, "isStackable": false, "name": "terra boots", "hexID": "2D 03" }, { "decID": 818, "isStackable": false, "name": "magma boots", "hexID": "32 03" }, { "decID": 819, "isStackable": false, "name": "glacier shoes", "hexID": "33 03" }, …A tool to extract this data would be useful. (I used to have a custom Python script that supported the data format up until version 10.56, but 10.57 changed the structure a bit.)