How to read the data.
The data available to download is a JSON file containing an array of attributes. Each attribute has the following properties: ID, Name, Color, Size, X and Y.
The size represents the height and width of the mapped attribute, with the X and Y representing the grid cell from which the center of the attribute is located.
[{
"id": 100,
"name": "Health",
"color": "#30f000",
"size": 9,
"x": 7,
"y": 7
}]
The grid is 40 x 40 with the top left corner being 1, 1 and the bottom right corner being 40, 40.
Where an attribute is mapped to a grid cell near the edge of the grid, the attribute will wrap around to the opposite side of the grid.