Skip to content
Cataclysm: Bright Nights
GitHubDiscord

Item Categories

This content is not available in your language yet.

Item Category

When you sort your inventory by category, these are the categories that are displayed.

IdentifierDescription
idUnique ID. Must be one continuous word, use underscores if necessary
nameThe name of the category. This is what shows up in-game when you open the inventory.
zoneThe corresponding loot_zone (see loot_zones.json)
sort_rankUsed to sort categories when displaying. Lower values are shown first
priority_zonesWhen set, items in this category will be sorted to the priority zone if the conditions are met. If the user does not have the priority zone in the zone manager, the items get sorted into zone set in the ‘zone’ property. It is a list of objects. Each object has 3 properties: ID: The id of a LOOT_ZONE (see LOOT_ZONES.json), filthy: boolean. setting this means filthy items of this category will be sorted to the priority zone, flags: array of flags
{
  "id": "armor",
  "name": "ARMOR",
  "zone": "LOOT_ARMOR",
  "sort_rank": -21,
  "priority_zones": [{ "id": "LOOT_FARMOR", "filthy": true, "flags": ["RAINPROOF"] }]
}