- Add gravestone management with max stack and lifetime settings - Introduce new commands for grave interactions in scenarios - Update Lore handling to include gravestone context and details - Refactor death cause formatting for improved readability - Increment version to 0.28.11 in mod.json
49 lines
929 B
JSON
49 lines
929 B
JSON
{
|
|
"Spectator": [
|
|
{
|
|
"Id": "enabled",
|
|
"Type": "SWITCH",
|
|
"BoolVal": true,
|
|
"Callback": "IdleSpectator.ModSettings:OnEnabledChanged"
|
|
},
|
|
{
|
|
"Id": "show_watch_reasons",
|
|
"Type": "SWITCH",
|
|
"BoolVal": true
|
|
},
|
|
{
|
|
"Id": "show_dossier_caption",
|
|
"Type": "SWITCH",
|
|
"BoolVal": true
|
|
},
|
|
{
|
|
"Id": "chronicle_enabled",
|
|
"Type": "SWITCH",
|
|
"BoolVal": true
|
|
},
|
|
{
|
|
"Id": "debug_state_probe",
|
|
"Type": "SWITCH",
|
|
"BoolVal": true
|
|
},
|
|
{
|
|
"Id": "gravestones_enabled",
|
|
"Type": "SWITCH",
|
|
"BoolVal": true
|
|
},
|
|
{
|
|
"Id": "gravestone_max_stacks",
|
|
"Type": "INT_SLIDER",
|
|
"IntVal": 1000,
|
|
"MinIntVal": 0,
|
|
"MaxIntVal": 2000
|
|
},
|
|
{
|
|
"Id": "gravestone_ttl_seconds",
|
|
"Type": "INT_SLIDER",
|
|
"IntVal": 300,
|
|
"MinIntVal": 30,
|
|
"MaxIntVal": 1800
|
|
}
|
|
]
|
|
}
|