English.json

From Junk Jack Wiki
Jump to navigation Jump to search

Much like Junk Jack Retro's "treasures.dat", this JSON file contains a comprehensive list of string data, item names and mob names. Inside over 4000 items are listed with their corresponding ID numbers. The game uses these IDs to save all of the items stored in an inventory to the player file.

An example of the file's format is as follows:

"treasures": [
   {
     "id": 0,
     "name": "Invalid"
   },
   {
     "id": 2,
     "name": "Wood Shovel"
   },
   {
     "id": 3,
     "name": "Wood Maul"
   },
   {
     "id": 4,
     "name": "Wood Pickaxe"
   },
   {
     "id": 5,
     "name": "Wood Axe"
   }
]