mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
464ab0cefb
Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: jonpas <jonpas33@gmail.com>
54 lines
1.5 KiB
Plaintext
54 lines
1.5 KiB
Plaintext
[
|
|
QEGVAR(medical,fatalDamageSource),
|
|
"LIST",
|
|
[LSTRING(fatalDamageSource_DisplayName), LSTRING(fatalDamageSource_Description)],
|
|
[ELSTRING(medical,Category)],
|
|
[[0, 1, 2], [LSTRING(fatalDamageSource_vitalShotsOnly), LSTRING(fatalDamageSource_trauma), LSTRING(fatalDamageSource_both)], 2],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QEGVAR(medical,playerDamageThreshold),
|
|
"SLIDER",
|
|
[LSTRING(PlayerDamageThreshold_DisplayName), LSTRING(PlayerDamageThreshold_Description)],
|
|
ELSTRING(medical,Category),
|
|
[0, 25, 1, 2],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QEGVAR(medical,AIDamageThreshold),
|
|
"SLIDER",
|
|
[LSTRING(AIDamageThreshold_DisplayName), LSTRING(AIDamageThreshold_Description)],
|
|
ELSTRING(medical,Category),
|
|
[0, 25, 1, 2],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QEGVAR(medical,painUnconsciousChance),
|
|
"SLIDER",
|
|
[LSTRING(PainUnconsciousChance_DisplayName), LSTRING(PainUnconsciousChance_Description)],
|
|
ELSTRING(medical,Category),
|
|
[0, 1, 0.1, 2, true],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QEGVAR(medical,painUnconsciousThreshold),
|
|
"SLIDER",
|
|
[LSTRING(PainUnconsciousThreshold_DisplayName), LSTRING(PainUnconsciousThreshold_Description)],
|
|
ELSTRING(medical,Category),
|
|
[0, 1, 0.5, 2, false],
|
|
true
|
|
] call CBA_fnc_addSetting;
|
|
|
|
[
|
|
QEGVAR(medical,deathChance),
|
|
"SLIDER",
|
|
[LSTRING(deathChance_DisplayName), LSTRING(deathChance_Description)],
|
|
ELSTRING(medical,Category),
|
|
[0, 1, 1, 2, true],
|
|
true
|
|
] call CBA_fnc_addSetting;
|