Official modding guide

Home / Data Files

buildingCategoriesInfo.json

The buildingCategoriesInfo.json file contains a list of building categories to be added to the game. The structure of this file contains an array of objects in JSON format. These objects must have the following keys:

Additionally, the following keys are optional:

Here's an example of a possible buildingCategoriesInfo.json:

[
	{
		"displayName": "Magic",
		"description": "Build magical buildings to generate mana.",
		"name": "magic",
		"image": "spr_icon_magic"
	},
	{
		"displayName": "Alchemy",
		"description": "Conduct research and transform materials.",
		"name": "alchemy",
		"image": "spr_icon_potion"
	}
]

GitHub repositoryOfficial modding guide