-
Notifications
You must be signed in to change notification settings - Fork 36
Counters
John A edited this page Oct 19, 2025
·
3 revisions
Counters are tick/clock/track managers that populate UI in Active Mode. Users can create, edit, and delete custom counters, but adding one to an item will generate an automatic, permanent counter that will always be available if the prerequisites are met (item is equipped, talent is unlocked, etc.)
{
"id": string,
"name": string,
"default_value"?: number,
"min"?: number,
"max"?: number
}Counter value will persist in save data, so giving these counters a unique ID is necessary. See Item ID Guidelines for more information.
Display name for this counter
Starting value. Defaults to 0.
Minimum user selectable value. Defaults to -MAX_INT
Maximum user selectable value. Defaults to MAX_INT
from lancer-data/lib/systems.json
"counters": [
{
"id": "ctr_monitor_module",
"name": "Monitor Module",
"default_value": 0,
"min": 0,
"max": 3
}
]