mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
0f08a18f89
* Medical - Add force walk option to fracture setting * Add French translation Co-authored-by: Elgin675 <elgin675@hotmail.com> * Reduce calls to statusEffect_set (#7865) * Reduce calls to statusEffect_set * statusEffect_addType fracture to forcewalk Co-authored-by: Elgin675 <elgin675@hotmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
[
|
|
QGVAR(limping),
|
|
"LIST",
|
|
[LSTRING(Limping_DisplayName), LSTRING(Limping_Description)],
|
|
LSTRING(Category),
|
|
[[0, 1, 2], [ELSTRING(common,Disabled), LSTRING(Limping_LimpOnOpenWounds), LSTRING(Limping_LimpRequiresStitching)], 1],
|
|
true,
|
|
{},
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(fractures),
|
|
"LIST",
|
|
[LSTRING(Fractures_DisplayName), LSTRING(Fractures_Description)],
|
|
LSTRING(Category),
|
|
[[0, 1, 2, 3], [ELSTRING(common,Disabled), LSTRING(Fractures_SplintHealsFully), LSTRING(Fractures_SplintHealsNoSprint), LSTRING(Fractures_SplintHealsNoJog)], 1],
|
|
true,
|
|
{},
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(fractureChance),
|
|
"SLIDER",
|
|
[LSTRING(FractureChance_DisplayName), LSTRING(FractureChance_Description)],
|
|
LSTRING(Category),
|
|
[0, 1, 0.8, 2, true],
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(spontaneousWakeUpChance),
|
|
"SLIDER",
|
|
[LSTRING(SpontaneousWakeUpChance_DisplayName), LSTRING(SpontaneousWakeUpChance_Description)],
|
|
LSTRING(Category),
|
|
[0, 1, 0.05, 2, true],
|
|
true
|
|
] call CBA_settings_fnc_init;
|
|
|
|
[
|
|
QGVAR(spontaneousWakeUpEpinephrineBoost),
|
|
"SLIDER",
|
|
[LSTRING(spontaneousWakeUpEpinephrineBoost_DisplayName), LSTRING(spontaneousWakeUpEpinephrineBoost_Description)],
|
|
LSTRING(Category),
|
|
[1, 30, 1, 1],
|
|
true
|
|
] call CBA_settings_fnc_init;
|