ACE3/addons/medical/ACE_Medical_Treatments.hpp

1446 lines
58 KiB
C++
Raw Normal View History

2015-02-21 20:09:57 +00:00
class ACE_Medical_Actions {
class Basic {
class Bandage {
displayName = CSTRING(Bandage);
displayNameProgress = CSTRING(Bandaging);
category = "bandage";
2015-02-28 19:46:36 +00:00
treatmentLocations[] = {"All"};
2015-08-06 22:09:40 +00:00
allowedSelections[] = {"All"};
allowSelfTreatment = 1;
requiredMedic = 0;
treatmentTime = 5;
treatmentTimeSelfCoef = 1;
2015-03-21 21:22:28 +00:00
items[] = {{"ACE_fieldDressing", "ACE_packingBandage", "ACE_elasticBandage", "ACE_quikclot"}};
condition = "";
patientStateCondition = 0;
itemConsumed = 1;
2015-02-24 21:09:31 +00:00
callbackSuccess = QUOTE(DFUNC(treatmentBasic_bandage));
callbackFailure = "";
callbackProgress = "";
animationPatient = "";
animationPatientUnconscious = "AinjPpneMstpSnonWrflDnon_rolltoback";
2015-04-04 16:08:41 +00:00
animationPatientUnconsciousExcludeOn[] = {"ainjppnemstpsnonwrfldnon"};
animationCaller = "AinvPknlMstpSlayWrflDnon_medicOther";
animationCallerProne = "AinvPpneMstpSlayW[wpn]Dnon_medicOther";
animationCallerSelf = "AinvPknlMstpSlayW[wpn]Dnon_medic";
animationCallerSelfProne = "AinvPpneMstpSlayW[wpn]Dnon_medic";
litter[] = {
{"All", "_bloodLossOnSelection > 0", {{"ACE_MedicalLitterBase", "ACE_MedicalLitter_bandage1", "ACE_MedicalLitter_bandage2", "ACE_MedicalLitter_bandage3"}}},
{"All", "_bloodLossOnSelection <= 0", {"ACE_MedicalLitter_clean"}}
};
};
class Morphine: Bandage {
displayName = CSTRING(Inject_Morphine);
displayNameProgress = CSTRING(Injecting_Morphine);
2015-08-06 22:09:40 +00:00
allowedSelections[] = {"hand_l", "hand_r", "leg_l", "leg_r"};
allowSelfTreatment = 1;
category = "medication";
treatmentTime = 2;
2015-03-21 21:22:28 +00:00
items[] = {"ACE_morphine"};
2015-02-24 21:09:31 +00:00
callbackSuccess = QUOTE(DFUNC(treatmentBasic_morphine));
animationCaller = "AinvPknlMstpSnonWnonDnon_medic1";
litter[] = { {"All", "", {"ACE_MedicalLitter_morphine"}} };
};
class Epinephrine: Bandage {
displayName = CSTRING(Inject_Epinephrine);
displayNameProgress = CSTRING(Injecting_Epinephrine);
2015-08-06 22:09:40 +00:00
allowedSelections[] = {"hand_l", "hand_r", "leg_l", "leg_r"};
allowSelfTreatment = 1;
category = "medication";
requiredMedic = QGVAR(medicSetting_basicEpi);
treatmentTime = 3;
2015-03-21 21:22:28 +00:00
items[] = {"ACE_epinephrine"};
2015-02-24 21:09:31 +00:00
callbackSuccess = QUOTE(DFUNC(treatmentBasic_epipen));
animationCaller = "AinvPknlMstpSnonWnonDnon_medic1";
litter[] = { {"All", "", {"ACE_MedicalLitter_epinephrine"}} };
treatmentLocations[] = {QGVAR(useLocation_basicEpi)};
};
2015-03-17 06:53:35 +00:00
class BloodIV: Bandage {
displayName = CSTRING(Transfuse_Blood);
displayNameProgress = CSTRING(Transfusing_Blood);
2015-08-06 22:09:40 +00:00
allowedSelections[] = {"hand_l", "hand_r", "leg_l", "leg_r"};
allowSelfTreatment = 0;
category = "advanced";
2015-02-28 19:46:36 +00:00
requiredMedic = 1;
treatmentTime = 20;
2015-05-23 06:16:18 +00:00
items[] = {"ACE_bloodIV"};
2015-02-24 21:09:31 +00:00
callbackSuccess = QUOTE(DFUNC(treatmentBasic_bloodbag));
animationCaller = "AinvPknlMstpSnonWnonDnon_medic1";
2015-04-03 23:42:13 +00:00
litter[] = {};
};
2015-05-23 06:16:18 +00:00
class BloodIV_500: BloodIV {
category = "advanced";
2015-05-23 06:16:18 +00:00
items[] = {"ACE_bloodIV_500"};
};
class BloodIV_250: BloodIV {
category = "advanced";
2015-05-23 06:16:18 +00:00
items[] = {"ACE_bloodIV_250"};
};
class BodyBag: Bandage {
displayName = CSTRING(PlaceInBodyBag);
displayNameProgress = CSTRING(PlacingInBodyBag);
category = "advanced";
2015-03-22 09:28:41 +00:00
treatmentLocations[] = {"All"};
requiredMedic = 0;
treatmentTime = 4;
items[] = {"ACE_bodyBag"};
condition = "!alive (_this select 1);";
callbackSuccess = QUOTE(DFUNC(actionPlaceInBodyBag));
2015-03-22 09:28:41 +00:00
callbackFailure = "";
callbackProgress = "";
animationPatient = "";
animationPatientUnconscious = "";
2015-04-06 12:51:17 +00:00
itemConsumed = 1;
2015-04-03 23:42:13 +00:00
litter[] = {};
2015-03-22 09:28:41 +00:00
};
2015-04-17 22:38:03 +00:00
class Diagnose: Bandage {
displayName = CSTRING(Actions_Diagnose);
displayNameProgress = CSTRING(Actions_Diagnosing);
category = "examine";
treatmentLocations[] = {"All"};
2015-08-29 20:54:51 +00:00
allowedSelections[] = {"head", "body"};
requiredMedic = 0;
2015-04-17 22:38:03 +00:00
treatmentTime = 1;
items[] = {};
2015-04-17 22:38:03 +00:00
callbackSuccess = QUOTE(DFUNC(actionDiagnose));
callbackFailure = "";
callbackProgress = "";
animationPatient = "";
animationCaller = ""; // TODO
itemConsumed = 0;
litter[] = {};
};
class CPR: Bandage {
displayName = CSTRING(Actions_CPR);
displayNameProgress = CSTRING(Actions_PerformingCPR);
category = "advanced";
treatmentLocations[] = {"All"};
allowedSelections[] = {"body"};
allowSelfTreatment = 0;
requiredMedic = 0;
treatmentTime = 15;
items[] = {};
condition = QUOTE(!([(_this select 1)] call ace_common_fnc_isAwake) && GVAR(enableRevive)>0);
callbackSuccess = QUOTE(DFUNC(treatmentAdvanced_CPR));
callbackFailure = "";
callbackProgress = "!([((_this select 0) select 1)] call ace_common_fnc_isAwake)";
animationPatient = "";
animationPatientUnconscious = "AinjPpneMstpSnonWrflDnon_rolltoback";
animationCaller = "AinvPknlMstpSlayWnonDnon_medic";
animationCallerProne = "AinvPpneMstpSlayW[wpn]Dnon_medic";
animationCallerSelf = "";
animationCallerSelfProne = "";
itemConsumed = 0;
litter[] = {};
};
};
class Advanced {
2015-02-22 17:33:46 +00:00
class FieldDressing {
displayName = CSTRING(Actions_FieldDressing);
displayNameProgress = CSTRING(Bandaging);
category = "bandage";
// Which locations can this treatment action be used? Available: Field, MedicalFacility, MedicalVehicle, All.
2015-02-22 17:33:46 +00:00
treatmentLocations[] = {"All"};
2015-08-06 22:09:40 +00:00
allowedSelections[] = {"All"};
allowSelfTreatment = 1;
// What is the level of medical skill required for this treatment action? 0 = all soldiers, 1 = medic, 2 = doctor
requiredMedic = 0;
// The time it takes for a treatment action to complete. Time is in seconds.
treatmentTime = 8;
// Item required for the action. Leave empty for no item required.
2015-03-21 21:22:28 +00:00
items[] = {"ACE_fieldDressing"};
condition = "";
patientStateCondition = 0;
// Callbacks
2015-02-23 09:23:09 +00:00
callbackSuccess = QUOTE(DFUNC(treatmentAdvanced_bandage));
2015-02-22 17:33:46 +00:00
callbackFailure = "";
callbackProgress = "";
2015-02-22 17:34:59 +00:00
itemConsumed = 1;
animationPatient = "";
animationPatientUnconscious = "AinjPpneMstpSnonWrflDnon_rolltoback";
2015-04-04 16:08:41 +00:00
animationPatientUnconsciousExcludeOn[] = {"ainjppnemstpsnonwrfldnon"};
animationCaller = "AinvPknlMstpSlayWrflDnon_medicOther";
animationCallerProne = "AinvPpneMstpSlayW[wpn]Dnon_medicOther";
animationCallerSelf = "AinvPknlMstpSlayW[wpn]Dnon_medic";
animationCallerSelfProne = "AinvPpneMstpSlayW[wpn]Dnon_medic";
litter[] = {
{"All", "_bloodLossOnSelection > 0", {{"ACE_MedicalLitter_bandage2", "ACE_MedicalLitter_bandage3"}}},
{"All", "_bloodLossOnSelection <= 0", {"ACE_MedicalLitter_clean"}}
};
2015-02-22 17:33:46 +00:00
};
class PackingBandage: fieldDressing {
displayName = CSTRING(Actions_PackingBandage);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_packingBandage"};
litter[] = {
{"All", "", {"ACE_MedicalLitter_packingBandage"}},
{"All", "_bloodLossOnSelection > 0", {{"ACE_MedicalLitter_bandage2", "ACE_MedicalLitter_bandage3"}}},
{"All", "_bloodLossOnSelection <= 0", {"ACE_MedicalLitter_clean"}}
};
2015-02-22 17:33:46 +00:00
};
class ElasticBandage: fieldDressing {
displayName = CSTRING(Actions_ElasticBandage);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_elasticBandage"};
2015-02-22 17:33:46 +00:00
};
class QuikClot: fieldDressing {
displayName = CSTRING(Actions_QuikClot);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_quikclot"};
litter[] = {
{"All", "", {"ACE_MedicalLitter_QuickClot"}},
{"All", "_bloodLossOnSelection > 0", {{"ACE_MedicalLitter_bandage2", "ACE_MedicalLitter_bandage3"}}},
{"All", "_bloodLossOnSelection <= 0", {"ACE_MedicalLitter_clean"}}
};
2015-02-22 17:33:46 +00:00
};
class Tourniquet: fieldDressing {
displayName = CSTRING(Apply_Tourniquet);
displayNameProgress = CSTRING(Applying_Tourniquet);
2015-08-26 09:18:54 +00:00
allowedSelections[] = {"hand_l", "hand_r", "leg_l", "leg_r"};
2015-03-21 21:22:28 +00:00
items[] = {"ACE_tourniquet"};
treatmentTime = 4;
2015-02-23 09:23:09 +00:00
callbackSuccess = QUOTE(DFUNC(treatmentTourniquet));
2015-03-09 20:41:43 +00:00
condition = QUOTE(!([ARR_2(_this select 1, _this select 2)] call FUNC(hasTourniquetAppliedTo)));
2015-04-03 23:42:13 +00:00
litter[] = {};
2015-02-22 17:33:46 +00:00
};
class Morphine: fieldDressing {
displayName = CSTRING(Inject_Morphine);
displayNameProgress = CSTRING(Injecting_Morphine);
2015-08-06 22:09:40 +00:00
allowedSelections[] = {"hand_l", "hand_r", "leg_l", "leg_r"};
category = "medication";
2015-03-21 21:22:28 +00:00
items[] = {"ACE_morphine"};
2015-02-22 17:33:46 +00:00
treatmentTime = 3;
2015-02-23 09:23:09 +00:00
callbackSuccess = QUOTE(DFUNC(treatmentAdvanced_medication));
animationCaller = "AinvPknlMstpSnonWnonDnon_medic1";
litter[] = { {"All", "", {"ACE_MedicalLitter_morphine"}} };
2015-02-22 17:33:46 +00:00
};
class Adenosine: Morphine {
displayName = CSTRING(Inject_Adenosine);
displayNameProgress = CSTRING(Injecting_Adenosine);
items[] = {"ACE_adenosine"};
litter[] = { {"All", "", {"ACE_MedicalLitter_adenosine"}} };
};
class Atropine: Morphine {
displayName = CSTRING(Inject_Atropine);
displayNameProgress = CSTRING(Injecting_Atropine);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_atropine"};
litter[] = { {"All", "", {"ACE_MedicalLitter_atropine"}} };
2015-02-22 17:33:46 +00:00
};
class Epinephrine: Morphine {
displayName = CSTRING(Inject_Epinephrine);
displayNameProgress = CSTRING(Injecting_Epinephrine);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_epinephrine"};
litter[] = { {"All", "", {"ACE_MedicalLitter_epinephrine"}} };
2015-02-22 17:33:46 +00:00
};
class BloodIV: fieldDressing {
displayName = CSTRING(Actions_Blood4_1000);
displayNameProgress = CSTRING(Transfusing_Blood);
2015-08-06 22:09:40 +00:00
allowedSelections[] = {"hand_l", "hand_r", "leg_l", "leg_r"};
allowSelfTreatment = 0;
category = "advanced";
2015-03-21 21:22:28 +00:00
items[] = {"ACE_bloodIV"};
2015-02-22 17:33:46 +00:00
requiredMedic = 1;
treatmentTime = 7;
2015-02-23 09:23:09 +00:00
callbackSuccess = QUOTE(DFUNC(treatmentIV));
animationCaller = "AinvPknlMstpSnonWnonDnon_medic1";
2015-04-03 23:42:13 +00:00
litter[] = {};
2015-02-22 17:33:46 +00:00
};
class BloodIV_500: BloodIV {
displayName = CSTRING(Actions_Blood4_500);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_bloodIV_500"};
};
2015-02-22 17:33:46 +00:00
class BloodIV_250: BloodIV {
displayName = CSTRING(Actions_Blood4_250);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_bloodIV_250"};
2015-02-22 17:33:46 +00:00
};
class PlasmaIV: BloodIV {
displayName = CSTRING(Actions_Plasma4_1000);
displayNameProgress = CSTRING(Transfusing_Plasma);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_plasmaIV"};
animationCaller = "AinvPknlMstpSnonWnonDnon_medic1";
2015-02-22 17:33:46 +00:00
};
class PlasmaIV_500: PlasmaIV {
displayName = CSTRING(Actions_Plasma4_500);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_plasmaIV_500"};
2015-02-22 17:33:46 +00:00
};
class PlasmaIV_250: PlasmaIV {
displayName = CSTRING(Actions_Plasma4_250);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_plasmaIV_250"};
2015-02-22 17:33:46 +00:00
};
class SalineIV: BloodIV {
displayName = CSTRING(Actions_Saline4_1000);
displayNameProgress = CSTRING(Transfusing_Saline);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_salineIV"};
animationCaller = "AinvPknlMstpSnonWnonDnon_medic1";
2015-02-22 17:33:46 +00:00
};
class SalineIV_500: SalineIV {
displayName = CSTRING(Actions_Saline4_500);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_salineIV_500"};
2015-02-22 17:33:46 +00:00
};
class SalineIV_250: SalineIV {
displayName = CSTRING(Actions_Saline4_250);
2015-03-21 21:22:28 +00:00
items[] = {"ACE_salineIV_250"};
2015-02-22 17:33:46 +00:00
};
class SurgicalKit: fieldDressing {
displayName = CSTRING(Use_SurgicalKit);
2015-08-22 20:20:20 +00:00
displayNameProgress = CSTRING(Stitching);
category = "advanced";
2015-03-21 21:22:28 +00:00
items[] = {"ACE_surgicalKit"};
2015-04-06 12:32:37 +00:00
treatmentLocations[] = {QGVAR(useLocation_SurgicalKit)};
allowSelfTreatment = 0;
requiredMedic = QGVAR(medicSetting_SurgicalKit);
patientStateCondition = QGVAR(useCondition_SurgicalKit);
treatmentTime = "(count ((_this select 1) getVariable ['ACE_Medical_bandagedWounds', []]) * 5)";
callbackSuccess = "";
callbackProgress = QUOTE(DFUNC(treatmentAdvanced_surgicalKit_onProgress));
itemConsumed = QGVAR(consumeItem_SurgicalKit);
animationCaller = "AinvPknlMstpSnonWnonDnon_medic1";
litter[] = { {"All", "", {"ACE_MedicalLitter_gloves"} }};
2015-02-22 17:33:46 +00:00
};
class PersonalAidKit: fieldDressing {
displayName = CSTRING(Use_Aid_Kit);
displayNameProgress = CSTRING(TreatmentAction);
category = "advanced";
2015-03-21 21:22:28 +00:00
items[] = {"ACE_personalAidKit"};
treatmentLocations[] = {QGVAR(useLocation_PAK)};
allowSelfTreatment = 0;
requiredMedic = QGVAR(medicSetting_PAK);
patientStateCondition = QGVAR(useCondition_PAK);
treatmentTime = QUOTE((_this select 1) call FUNC(treatmentAdvanced_fullHealTreatmentTime));
callbackSuccess = QUOTE(DFUNC(treatmentAdvanced_fullHeal));
itemConsumed = QGVAR(consumeItem_PAK);
animationPatient = "";
animationPatientUnconscious = "AinjPpneMstpSnonWrflDnon_rolltoback";
2015-05-05 17:26:11 +00:00
animationCaller = "AinvPknlMstpSlayWnonDnon_medicOther";
animationCallerProne = "AinvPpneMstpSlayW[wpn]Dnon_medicOther";
animationCallerSelf = "";
animationCallerSelfProne = "";
litter[] = { {"All", "", {"ACE_MedicalLitter_gloves"}},
{"All", "_bloodLossOnSelection > 0", {{"ACE_MedicalLitterBase", "ACE_MedicalLitter_bandage1", "ACE_MedicalLitter_bandage2", "ACE_MedicalLitter_bandage3"}}},
{"All", "_bloodLossOnSelection > 0", {{"ACE_MedicalLitterBase", "ACE_MedicalLitter_bandage1", "ACE_MedicalLitter_bandage2", "ACE_MedicalLitter_bandage3"}}},
{"All", "_bloodLossOnSelection <= 0", {"ACE_MedicalLitter_clean"}}
};
2015-02-22 17:33:46 +00:00
};
2015-02-23 19:35:36 +00:00
class CheckPulse: fieldDressing {
displayName = CSTRING(Actions_CheckPulse);
displayNameProgress = CSTRING(Check_Pulse_Content);
category = "examine";
2015-02-23 19:35:36 +00:00
treatmentLocations[] = {"All"};
requiredMedic = 0;
treatmentTime = 2;
items[] = {};
callbackSuccess = QUOTE(DFUNC(actionCheckPulse));
callbackFailure = "";
callbackProgress = "";
animationPatient = "";
animationCaller = ""; // TODO
animationCallerProne = "";
animationCallerSelfProne = "";
2015-02-23 19:35:36 +00:00
itemConsumed = 0;
2015-04-03 23:42:13 +00:00
litter[] = {};
2015-02-23 19:35:36 +00:00
};
class CheckBloodPressure: CheckPulse {
displayName = CSTRING(Actions_CheckBloodPressure);
2015-02-23 19:35:36 +00:00
callbackSuccess = QUOTE(DFUNC(actionCheckBloodPressure));
displayNameProgress = CSTRING(Check_Bloodpressure_Content);
2015-02-23 19:35:36 +00:00
};
class CheckResponse: CheckPulse {
displayName = CSTRING(Check_Response);
2015-02-23 19:35:36 +00:00
callbackSuccess = QUOTE(DFUNC(actionCheckResponse));
displayNameProgress = CSTRING(Check_Response_Content);
allowSelfTreatment = 0;
2015-02-23 19:35:36 +00:00
};
class RemoveTourniquet: Tourniquet {
displayName = CSTRING(Actions_RemoveTourniquet);
items[] = {};
2015-02-23 19:35:36 +00:00
treatmentTime = 2.5;
callbackSuccess = QUOTE(DFUNC(actionRemoveTourniquet));
2015-03-09 20:41:43 +00:00
condition = QUOTE([ARR_2(_this select 1, _this select 2)] call FUNC(hasTourniquetAppliedTo));
displayNameProgress = CSTRING(RemovingTourniquet);
litter[] = {};
2015-02-23 19:35:36 +00:00
};
class CPR: fieldDressing {
displayName = CSTRING(Actions_CPR);
displayNameProgress = CSTRING(Actions_PerformingCPR);
category = "advanced";
treatmentLocations[] = {"All"};
2015-08-06 22:09:40 +00:00
allowedSelections[] = {"body"};
allowSelfTreatment = 0;
requiredMedic = 0;
treatmentTime = 15;
items[] = {};
condition = "!([(_this select 1)] call ace_common_fnc_isAwake)";
callbackSuccess = QUOTE(DFUNC(treatmentAdvanced_CPR));
callbackFailure = "";
callbackProgress = "!([((_this select 0) select 1)] call ace_common_fnc_isAwake)";
animationPatient = "";
animationPatientUnconscious = "AinjPpneMstpSnonWrflDnon_rolltoback";
animationCaller = "AinvPknlMstpSlayWnonDnon_medic";
animationCallerProne = "AinvPpneMstpSlayW[wpn]Dnon_medic";
animationCallerSelf = "";
animationCallerSelfProne = "";
itemConsumed = 0;
2015-04-03 23:42:13 +00:00
litter[] = {};
};
2015-03-09 21:36:25 +00:00
class BodyBag: fieldDressing {
displayName = CSTRING(PlaceInBodyBag);
displayNameProgress = CSTRING(PlacingInBodyBag);
category = "advanced";
2015-03-09 21:36:25 +00:00
treatmentLocations[] = {"All"};
allowSelfTreatment = 0;
2015-03-09 21:36:25 +00:00
requiredMedic = 0;
treatmentTime = 15;
2015-03-21 21:22:28 +00:00
items[] = {"ACE_bodyBag"};
2015-03-09 21:36:25 +00:00
condition = "!alive (_this select 1);";
callbackSuccess = QUOTE(DFUNC(actionPlaceInBodyBag));
callbackFailure = "";
callbackProgress = "";
animationPatient = "";
animationPatientUnconscious = "";
2015-04-06 12:51:17 +00:00
itemConsumed = 1;
2015-04-03 23:42:13 +00:00
litter[] = {};
2015-03-09 21:36:25 +00:00
};
2015-02-21 20:09:57 +00:00
};
};
class ACE_Medical_Advanced {
// Defines all the possible injury types for advanced medical
class Injuries {
// All the possible wounds
class wounds {
// Source: Scarle
// Also called scrapes, they occur when the skin is rubbed away by friction against another rough surface (e.g. rope burns and skinned knees).
class Abrasion {
name = CSTRING(Wounds_Abrasion);
selections[] = {"All"};
bleedingRate = 0.0001;
2015-03-08 14:13:44 +00:00
pain = 0.01;
causes[] = {"falling", "ropeburn", "vehiclecrash", "unknown"};
minDamage = 0.01;
class Minor {
name = CSTRING(Wounds_Abrasion_Minor);
minDamage = 0.01;
maxDamage = 0.2;
bleedingRate = 0.0001;
};
class Medium {
name = CSTRING(Wounds_Abrasion_Medium);
minDamage = 0.2;
maxDamage = 0.3;
bleedingRate = 0.00015;
};
class Large {
name = CSTRING(Wounds_Abrasion_Large);
minDamage = 0.3;
maxDamage = 0.5;
bleedingRate = 0.0002;
};
};
// Occur when an entire structure or part of it is forcibly pulled away, such as the loss of a permanent tooth or an ear lobe. Explosions, gunshots, and animal bites may cause avulsions.
class Avulsions {
name = CSTRING(Wounds_Avulsion);
selections[] = {"All"};
bleedingRate = 0.01;
2015-03-08 14:13:44 +00:00
pain = 0.3;
causes[] = {"explosive", "vehiclecrash", "grenade", "shell", "bullet", "backblast", "bite"};
minDamage = 0.2;
class Minor {
name = CSTRING(Wounds_Avulsion_Minor);
minDamage = 0.2;
maxDamage = 0.3;
bleedingRate = 0.01;
};
class Medium {
name = CSTRING(Wounds_Avulsion_Medium);
minDamage = 0.3;
maxDamage = 0.6;
bleedingRate = 0.02;
};
class Large {
name = CSTRING(Wounds_Avulsion_Large);
minDamage = 0.5;
bleedingRate = 0.05;
};
};
// Also called bruises, these are the result of a forceful trauma that injures an internal structure without breaking the skin. Blows to the chest, abdomen, or head with a blunt instrument (e.g. a football or a fist) can cause contusions.
class Contusion {
name = CSTRING(Wounds_Contusion);
selections[] = {"All"};
bleedingRate = 0.0;
2015-03-08 14:13:44 +00:00
pain = 0.05;
2015-04-26 07:36:51 +00:00
causes[] = {"bullet", "backblast", "punch", "vehiclecrash", "falling"};
minDamage = 0.01;
maxDamage = 0.1;
class Minor {
name = CSTRING(Wounds_Contusion_Minor);
minDamage = 0.01;
maxDamage = 0.1;
};
class Medium {
name = CSTRING(Wounds_Contusion_Medium);
minDamage = 0.1;
maxDamage = 0.15;
};
class Large {
name = CSTRING(Wounds_Contusion_Large);
minDamage = 0.15;
maxDamage = 0.2;
};
};
// Occur when a heavy object falls onto a person, splitting the skin and shattering or tearing underlying structures.
class CrushWound {
name = CSTRING(Wounds_Crush);
selections[] = {"All"};
bleedingRate = 0.01;
2015-03-08 14:13:44 +00:00
pain = 0.1;
causes[] = {"falling", "vehiclecrash", "punch", "unknown"};
minDamage = 0.1;
class Minor {
name = CSTRING(Wounds_Crush_Minor);
minDamage = 0.1;
maxDamage = 0.45;
bleedingRate = 0.005;
};
class Medium {
name = CSTRING(Wounds_Crush_Medium);
minDamage = 0.4;
maxDamage = 0.7;
bleedingRate = 0.007;
};
class Large {
name = CSTRING(Wounds_Crush_Large);
minDamage = 0.6;
bleedingRate = 0.0095;
};
};
// Slicing wounds made with a sharp instrument, leaving even edges. They may be as minimal as a paper cut or as significant as a surgical incision.
class Cut {
name = CSTRING(Wounds_Cut);
selections[] = {"All"};
bleedingRate = 0.01;
2015-03-08 14:13:44 +00:00
pain = 0.075;
causes[] = {"vehiclecrash", "grenade", "explosive", "shell", "backblast", "stab", "unknown"};
minDamage = 0.1;
class Minor {
name = CSTRING(Wounds_Cut_Minor);
minDamage = 0.1;
maxDamage = 0.3;
bleedingRate = 0.005;
};
class Medium {
name = CSTRING(Wounds_Cut_Medium);
minDamage = 0.3;
maxDamage = 0.65;
bleedingRate = 0.02;
};
class Large {
name = CSTRING(Wounds_Cut_Large);
minDamage = 0.65;
bleedingRate = 0.05;
};
};
// Also called tears, these are separating wounds that produce ragged edges. They are produced by a tremendous force against the body, either from an internal source as in childbirth, or from an external source like a punch.
class Laceration {
name = CSTRING(Wounds_Laceration);
selections[] = {"All"};
bleedingRate = 0.01;
2015-03-08 14:13:44 +00:00
pain = 0.075;
causes[] = {"vehiclecrash", "punch"};
minDamage = 0.01;
class Minor {
name = CSTRING(Wounds_Laceration_Minor);
minDamage = 0.1;
maxDamage = 0.5;
bleedingRate = 0.005;
};
class Medium {
name = CSTRING(Wounds_Laceration_Medium);
minDamage = 0.5;
maxDamage = 0.7;
bleedingRate = 0.01;
};
class Large {
name = CSTRING(Wounds_Laceration_Large);
minDamage = 0.7;
bleedingRate = 0.03;
};
};
// Also called velocity wounds, they are caused by an object entering the body at a high speed, typically a bullet or small peices of shrapnel.
class velocityWound {
name = CSTRING(Wounds_VelocityWound);
selections[] = {"All"};
bleedingRate = 0.01;
2015-03-08 14:13:44 +00:00
pain = 0.2;
causes[] = {"bullet", "grenade","explosive", "shell", "unknown"};
minDamage = 0.15;
class Minor {
name = CSTRING(Wounds_VelocityWound_Minor);
minDamage = 0.15;
maxDamage = 0.3;
bleedingRate = 0.025;
};
class Medium {
name = CSTRING(Wounds_VelocityWound_Medium);
minDamage = 0.3;
bleedingRate = 0.05;
};
class Large {
name = CSTRING(Wounds_VelocityWound_Large);
minDamage = 0.75;
bleedingRate = 0.1;
};
};
// Deep, narrow wounds produced by sharp objects such as nails, knives, and broken glass.
class punctureWound {
name = CSTRING(Wounds_PunctureWound);
selections[] = {"All"};
bleedingRate = 0.01;
2015-03-08 14:13:44 +00:00
pain = 0.075;
causes[] = {"stab", "grenade"};
minDamage = 0.01;
class Minor {
name = CSTRING(Wounds_PunctureWound_Minor);
minDamage = 0.01;
maxDamage = 0.5;
bleedingRate = 0.01;
};
class Medium {
name = CSTRING(Wounds_PunctureWound_Medium);
minDamage = 0.5;
maxDamage = 0.75;
bleedingRate = 0.03;
};
class Large {
name = CSTRING(Wounds_PunctureWound_Large);
minDamage = 0.65;
bleedingRate = 0.08;
};
};
};
class fractures {
class Femur {
name = CSTRING(Wounds_Femur);
selections[] = {"Head", "Torso"};
pain = 0.2;
causes[] = {"Bullet", "VehicleCrash", "Backblast", "Explosive", "Shell", "Grenade"};
minDamage = 0.5;
};
};
class damageTypes {
thresholds[] = {{0.1, 1}};
selectionSpecific = 1;
lethalDamage = 0.01;
class bullet {
// above damage, amount. Put the highest threshold to the left and lower the threshold with the elements to the right of it.
thresholds[] = {{0.1, 1}};
selectionSpecific = 1;
};
class grenade {
thresholds[] = {{0.1, 3}, {0, 1}};
selectionSpecific = 0;
};
class explosive {
thresholds[] = {{1, 6}, {0.1, 4}, {0, 1}};
selectionSpecific = 0;
};
class shell {
thresholds[] = {{1, 7}, {0.1, 5}, {0, 1}};
selectionSpecific = 0;
};
class vehiclecrash {
thresholds[] = {{0.25, 5}, {0.05, 1}};
selectionSpecific = 0;
lethalDamage = 0.2;
};
class backblast {
thresholds[] = {{1, 6}, {0.55, 5}, {0, 2}};
selectionSpecific = 0;
lethalDamage = 1;
};
class stab {
thresholds[] = {{0.1, 1}};
selectionSpecific = 1;
};
class punch {
thresholds[] = {{0.1, 1}};
selectionSpecific = 1;
};
class falling {
thresholds[] = {{0.1, 1}};
selectionSpecific = 1;
lethalDamage = 0.4;
};
class ropeburn {
thresholds[] = {{0.1, 1}};
selectionSpecific = 1;
};
class unknown {
thresholds[] = {{0.1, 1}};
};
};
};
class Treatment {
class Bandaging {
class FieldDressing {
// How effect is the bandage for treating one wounds type injury
effectiveness = 1;
// What is the chance and delays (in seconds) of the treated default injury reopening
reopeningChance = 0.1;
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
2015-02-22 17:33:46 +00:00
class Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 3;
2015-02-22 17:33:46 +00:00
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
2016-02-07 11:37:00 +00:00
class AbrasionMinor: Abrasion {
effectiveness = 5;
reopeningChance = 0;
reopeningMinDelay = 1000;
reopeningMaxDelay = 5000;
};
class AbrasionMedium: Abrasion {
effectiveness = 3;
reopeningChance = 0.7;
reopeningMinDelay = 750;
reopeningMaxDelay = 3000;
};
class AbrasionLarge: Abrasion {
effectiveness = 2;
reopeningChance = 0.9;
reopeningMinDelay = 300;
reopeningMaxDelay = 1000;
};
2015-02-22 17:33:46 +00:00
class Avulsions: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.2;
reopeningChance = 0.8;
reopeningMinDelay = 5;
reopeningMaxDelay = 20;
};
class AvulsionsMinor: Avulsions {
effectiveness = 0.4;
reopeningChance = 0.75;
reopeningMinDelay = 5;
reopeningMaxDelay = 20;
};
class AvulsionsMedium: Avulsions {
2016-02-07 11:37:00 +00:00
effectiveness = 0.3;
reopeningChance = 0.85;
reopeningMinDelay = 5;
reopeningMaxDelay = 10;
};
class AvulsionsLarge: Avulsions {
2016-02-07 11:37:00 +00:00
effectiveness = 0.1;
reopeningChance = 0.9;
reopeningMinDelay = 2;
reopeningMaxDelay = 10;
2015-02-22 17:33:46 +00:00
};
2015-02-22 17:33:46 +00:00
class Contusion: Abrasion {
effectiveness = 1;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class ContusionMinor: Contusion {};
class ContusionMedium: Contusion {};
class ContusionLarge: Contusion {};
2015-02-22 17:33:46 +00:00
class CrushWound: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 1;
reopeningChance = 0.4;
2015-02-22 17:33:46 +00:00
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
};
class CrushWoundMinor: CrushWound {
2016-02-07 11:37:00 +00:00
effectiveness = 1;
reopeningChance = 0.4;
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
};
class CrushWoundMedium: CrushWound {
2016-02-07 11:37:00 +00:00
effectiveness = 0.4;
reopeningChance = 0.3;
reopeningMinDelay = 100;
reopeningMaxDelay = 150;
};
class CrushWoundLarge: CrushWound {
2016-02-07 11:37:00 +00:00
effectiveness = 0.2;
reopeningChance = 0.2;
reopeningMinDelay = 50;
reopeningMaxDelay = 70;
};
2015-02-22 17:33:46 +00:00
class Cut: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 3;
reopeningChance = 0.3;
reopeningMinDelay = 2000;
reopeningMaxDelay = 5000;
};
class CutMinor: Cut {
effectiveness = 6;
reopeningChance = 0.1;
reopeningMinDelay = 5000;
reopeningMaxDelay = 8000;
2015-02-22 17:33:46 +00:00
};
class CutMedium: Cut {
2016-02-07 11:37:00 +00:00
effectiveness = 3;
reopeningChance = 0.3;
reopeningMinDelay = 1200;
reopeningMaxDelay = 2000;
};
class CutLarge: Cut {
2016-02-07 11:37:00 +00:00
effectiveness = 1;
reopeningChance = 0.6;
reopeningMinDelay = 220;
reopeningMaxDelay = 260;
};
2015-02-22 17:33:46 +00:00
class Laceration: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.8;
2015-02-22 17:33:46 +00:00
reopeningChance = 0.3;
2016-02-07 11:37:00 +00:00
reopeningMinDelay = 220;
reopeningMaxDelay = 500;
2015-02-22 17:33:46 +00:00
};
2016-02-07 11:37:00 +00:00
class LacerationMinor: Laceration {
effectiveness = 0.8;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.3;
reopeningMinDelay = 400;
reopeningMaxDelay = 800;
};
class LacerationMedium: Laceration {
effectiveness = 0.5;
reopeningChance = 0.5;
reopeningMinDelay = 220;
reopeningMaxDelay = 500;
};
class LacerationLarge: Laceration {
2016-02-07 11:37:00 +00:00
effectiveness = 0.3;
reopeningChance = 0.7;
reopeningMinDelay = 120;
reopeningMaxDelay = 260;
};
2015-02-22 17:33:46 +00:00
class velocityWound: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.5;
reopeningChance = 0.7;
reopeningMinDelay = 100;
2015-02-22 17:33:46 +00:00
reopeningMaxDelay = 300;
};
class velocityWoundMinor: velocityWound {
effectiveness = 0.8;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.4;
reopeningMinDelay = 300;
reopeningMaxDelay = 550;
};
class velocityWoundMedium: velocityWound {
effectiveness = 0.6;
reopeningChance = 0.8;
2016-02-07 11:37:00 +00:00
reopeningMinDelay = 100;
reopeningMaxDelay = 300;
};
class velocityWoundLarge: velocityWound {
effectiveness = 0.3;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.9;
reopeningMinDelay = 50;
reopeningMaxDelay = 170;
};
2015-02-22 17:33:46 +00:00
class punctureWound: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.6;
reopeningChance = 0.3;
reopeningMinDelay = 200;
2015-02-22 17:33:46 +00:00
reopeningMaxDelay = 300;
};
2016-02-07 11:37:00 +00:00
class punctureWoundMinor: punctureWound {
effectiveness = 0.8;
reopeningChance = 0.5;
reopeningMinDelay = 500;
reopeningMaxDelay = 800;
};
class punctureWoundMedium: punctureWound {
effectiveness = 0.6;
reopeningChance = 0.3;
reopeningMinDelay = 400;
reopeningMaxDelay = 600;
};
class punctureWoundLarge: punctureWound {
2016-02-07 11:37:00 +00:00
effectiveness = 0.3;
reopeningChance = 0.8;
reopeningMinDelay = 20;
reopeningMaxDelay = 300;
};
2015-02-22 17:33:46 +00:00
};
class PackingBandage: fieldDressing {
class Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.1;
reopeningChance = 0.9;
reopeningMinDelay = 5;
reopeningMaxDelay = 10;
};
class AbrasionMinor: Abrasion {
effectiveness = 0.1;
reopeningChance = 0.9;
reopeningMinDelay = 5;
reopeningMaxDelay = 10;
};
class AbrasionMedium: Abrasion {
effectiveness = 0.1;
reopeningChance = 0.9;
reopeningMinDelay = 5;
reopeningMaxDelay = 10;
2015-02-22 17:33:46 +00:00
};
class AbrasionLarge: Abrasion {
effectiveness = 1;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.9;
reopeningMinDelay = 5;
reopeningMaxDelay = 10;
};
2015-02-22 17:33:46 +00:00
class Avulsions: Abrasion {
effectiveness = 1;
reopeningChance = 0.3;
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
};
2016-02-07 11:37:00 +00:00
class AvulsionsMinor: Avulsions {
effectiveness = 1;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.2;
reopeningMinDelay = 500;
reopeningMaxDelay = 1000;
};
class AvulsionsMedium: Avulsions {{
effectiveness = 0.7;
reopeningChance = 0.4;
reopeningMinDelay = 250;
reopeningMaxDelay = 750;
};
class AvulsionsLarge: Avulsions {
effectiveness = 0.5;
reopeningChance = 0.5;
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
};
2015-02-22 17:33:46 +00:00
class Contusion: Abrasion {
effectiveness = 1;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class ContusionMinor: Contusion {};
class ContusionMedium: Contusion {};
class ContusionLarge: Contusion {
effectiveness = 1;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
2015-02-22 17:33:46 +00:00
class CrushWound: Abrasion {
effectiveness = 0.6;
reopeningChance = 0.2;
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
};
2016-02-07 11:37:00 +00:00
class CrushWoundMinor: CrushWound {
effectiveness = 0.8;
reopeningChance = 0.4;
reopeningMinDelay = 500;
reopeningMaxDelay = 1000;
};
class CrushWoundMedium: CrushWound {
effectiveness = 0.6;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.6;
reopeningMinDelay = 280;
reopeningMaxDelay = 320;
};
class CrushWoundLarge: CrushWound {
effectiveness = 0.4;
reopeningChance = 0.8;
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
};
2015-02-22 17:33:46 +00:00
class Cut: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.2;
reopeningChance = 0.4;
reopeningMinDelay = 10000;
reopeningMaxDelay = 20000;
};
class CutMinor: Cut {
effectiveness = 1;
reopeningChance = 0.1;
reopeningMinDelay = 20000;
reopeningMaxDelay = 30000;
};
class CutMedium: Cut {
effectiveness = 0.5;
reopeningChance = 0.4;
reopeningMinDelay = 2000;
reopeningMaxDelay = 3000;
2015-02-22 17:33:46 +00:00
};
class CutLarge: Cut {
2016-02-07 11:37:00 +00:00
effectiveness = 0.7;
reopeningChance = 0.6;
2016-02-07 11:37:00 +00:00
reopeningMinDelay = 300;
reopeningMaxDelay = 2060;
};
2015-02-22 17:33:46 +00:00
class Laceration: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.5;
reopeningChance = 0.5;
2015-02-22 17:33:46 +00:00
reopeningMinDelay = 120;
reopeningMaxDelay = 260;
};
2016-02-07 11:37:00 +00:00
class LacerationMinor: Laceration {
effectiveness = 1;
reopeningChance = 0.1;
reopeningMinDelay = 500;
reopeningMaxDelay = 700;
};
class LacerationMedium: Laceration {
effectiveness = 0.7;
reopeningChance = 0.3;
reopeningMinDelay = 300;
reopeningMaxDelay = 600;
};
class LacerationLarge: Laceration {
effectiveness = 0.3;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.5;
reopeningMinDelay = 220;
reopeningMaxDelay = 360;
};
2015-02-22 17:33:46 +00:00
class velocityWound: Abrasion {
effectiveness = 1;
reopeningChance = 0.5;
reopeningMinDelay = 20;
reopeningMaxDelay = 300;
};
2016-02-07 11:37:00 +00:00
class velocityWoundMinor: velocityWound {
effectiveness = 1;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.7;
reopeningMinDelay = 800;
reopeningMaxDelay = 1000;
};
class velocityWoundMedium: velocityWound {
effectiveness = 0.6;
reopeningChance = 0.6;
reopeningMinDelay = 500;
reopeningMaxDelay = 800;
};
class velocityWoundLarge: velocityWound {
effectiveness = 0.3;
reopeningChance = 0.5;
2016-02-07 11:37:00 +00:00
reopeningMinDelay = 300;
reopeningMaxDelay = 500;
};
2015-02-22 17:33:46 +00:00
class punctureWound: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.1;
2015-02-22 17:33:46 +00:00
reopeningChance = 0.5;
reopeningMinDelay = 20;
reopeningMaxDelay = 300;
};
class punctureWoundMinor: punctureWound {};
2016-02-07 11:37:00 +00:00
class punctureWoundMedium: punctureWound {
effectiveness = 0.2;
reopeningChance = 0.5;
};
class punctureWoundLarge: punctureWound {
effectiveness = 0.3;
reopeningChance = 0.5;
reopeningMinDelay = 20;
reopeningMaxDelay = 300;
};
2015-02-22 17:33:46 +00:00
};
2016-02-07 11:37:00 +00:00
2015-02-22 17:33:46 +00:00
class ElasticBandage: fieldDressing {
class Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 2;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class AbrasionMinor: Abrasion {};
2016-02-07 11:37:00 +00:00
class AbrasionMedium: Abrasion {
effectiveness = 1.5;
};
class AbrasionLarge: Abrasion {
effectiveness = 1;
reopeningChance = 0;
reopeningMinDelay = 0;
};
2015-02-22 17:33:46 +00:00
class Avulsions: Abrasion {
effectiveness = 0.3;
reopeningChance = 0.4;
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
};
2016-02-07 11:37:00 +00:00
class AvulsionsMinor: Avulsions {
effectiveness = 0.9;
reopeningChance = 0.2;
};
class AvulsionsMedium: Avulsions {
effectiveness = 0.7;
reopeningChance = 0.4;
};
class AvulsionsLarge: Avulsions {
effectiveness = 0.3;
reopeningChance = 0.4;
reopeningMinDelay = 120;
reopeningMaxDelay = 200;
};
2015-02-22 17:33:46 +00:00
class Contusion: Abrasion {
effectiveness = 1;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class ContusionMinor: Contusion {};
class ContusionMedium: Contusion {};
2016-02-07 11:37:00 +00:00
class ContusionLarge: Contusion {};
2015-02-22 17:33:46 +00:00
class CrushWound: Abrasion {
effectiveness = 1;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class CrushWoundMinor: CrushWound {};
class CrushWoundMedium: CrushWound {};
class CrushWoundLarge: CrushWound {
effectiveness = 1;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
2015-02-22 17:33:46 +00:00
class Cut: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 1.5;
2015-02-22 17:33:46 +00:00
reopeningChance = 0.2;
reopeningMinDelay = 10;
reopeningMaxDelay = 400;
};
class CutMinor: Cut {};
2016-02-07 11:37:00 +00:00
class CutMedium: Cut {
effectiveness = 1.2;
reopeningChance = 0.3;
};
class CutLarge: Cut {
effectiveness = 1;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.5;
reopeningMinDelay = 10;
reopeningMaxDelay = 400;
};
2015-02-22 17:33:46 +00:00
class Laceration: Abrasion {
effectiveness = 1;
reopeningChance = 0.3;
reopeningMinDelay = 120;
reopeningMaxDelay = 260;
};
class LacerationMinor: Laceration {};
2016-02-07 11:37:00 +00:00
class LacerationMedium: Laceration {
effectiveness = 0.75;
};
class LacerationLarge: Laceration {
2016-02-07 11:37:00 +00:00
effectiveness = 0.5;
reopeningChance = 0.3;
reopeningMinDelay = 120;
reopeningMaxDelay = 260;
};
2015-02-22 17:33:46 +00:00
class velocityWound: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.7;
2015-02-22 17:33:46 +00:00
reopeningChance = 0.5;
reopeningMinDelay = 20;
reopeningMaxDelay = 300;
};
class velocityWoundMinor: velocityWound {};
2016-02-07 11:37:00 +00:00
class velocityWoundMedium: velocityWound {
effectiveness = 0.5;
2016-02-07 11:37:00 +00:00
};
class velocityWoundLarge: velocityWound {
effectiveness = 0.25;
reopeningChance = 0.7;
reopeningMinDelay = 20;
reopeningMaxDelay = 300;
};
2015-02-22 17:33:46 +00:00
class punctureWound: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.9;
reopeningChance = 0.3;
2015-02-22 17:33:46 +00:00
reopeningMinDelay = 20;
reopeningMaxDelay = 300;
};
class punctureWoundMinor: punctureWound {};
2016-02-07 11:37:00 +00:00
class punctureWoundMedium: punctureWound {
effectiveness = 0.9;
reopeningChance = 0.5;
};
class punctureWoundLarge: punctureWound {
effectiveness = 0.85;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.7;
reopeningMinDelay = 20;
reopeningMaxDelay = 300;
};
};
2015-02-22 17:33:46 +00:00
class QuikClot: fieldDressing {
class Abrasion {
2015-02-22 17:33:46 +00:00
effectiveness = 0.7;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class AbrasionMinor: Abrasion {};
class AbrasionMedium: Abrasion {};
class AbrasionLarge: Abrasion {
effectiveness = 0.7;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
2015-02-22 17:33:46 +00:00
class Avulsions: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 0.6;
2015-02-22 17:33:46 +00:00
reopeningChance = 0.1;
reopeningMinDelay = 300;
reopeningMaxDelay = 350;
};
class AvulsionsMinor: Avulsions {};
2016-02-07 11:37:00 +00:00
class AvulsionsMedium: Avulsions {
effectiveness = 0.4;
};
class AvulsionsLarge: Avulsions {
effectiveness = 0.2;
reopeningChance = 0.1;
reopeningMinDelay = 300;
reopeningMaxDelay = 350;
};
2015-02-22 17:33:46 +00:00
class Contusion: Abrasion {
effectiveness = 0.7;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class ContusionMinor: Contusion {};
class ContusionMedium: Contusion {};
class ContusionLarge: Contusion {
effectiveness = 0.7;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
2015-02-22 17:33:46 +00:00
class CrushWound: Abrasion {
2016-02-07 11:37:00 +00:00
effectiveness = 1;
2015-02-22 17:33:46 +00:00
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class CrushWoundMinor: CrushWound {};
2016-02-07 11:37:00 +00:00
class CrushWoundMedium: CrushWound {
effectiveness = 0.9;
reopeningChance = 0.05;
};
class CrushWoundLarge: CrushWound {
effectiveness = 0.7;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.1;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
2015-02-22 17:33:46 +00:00
class Cut: Abrasion {
effectiveness = 0.7;
2016-02-07 11:37:00 +00:00
reopeningChance = 0;
2015-02-22 17:33:46 +00:00
reopeningMinDelay = 100;
reopeningMaxDelay = 400;
};
class CutMinor: Cut {};
2016-02-07 11:37:00 +00:00
class CutMedium: Cut {
effectiveness = 0.6;
reopeningChance = 0;
};
class CutLarge: Cut {
2016-02-07 11:37:00 +00:00
effectiveness = 0.5;
reopeningChance = 0.2;
reopeningMinDelay = 100;
reopeningMaxDelay = 400;
};
2015-02-22 17:33:46 +00:00
class Laceration: Abrasion {
effectiveness = 0.7;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
class LacerationMinor: Laceration {};
2016-02-07 11:37:00 +00:00
class LacerationMedium: Laceration {
effectiveness = 0.6;
};
class LacerationLarge: Laceration {
2016-02-07 11:37:00 +00:00
effectiveness = 0.5;
reopeningChance = 0;
reopeningMinDelay = 0;
reopeningMaxDelay = 0;
};
2015-02-22 17:33:46 +00:00
class velocityWound: Abrasion {
effectiveness = 0.7;
2016-02-07 11:37:00 +00:00
reopeningChance = 0;
2015-02-22 17:33:46 +00:00
reopeningMinDelay = 200;
reopeningMaxDelay = 300;
};
class velocityWoundMinor: velocityWound {};
2016-02-07 11:37:00 +00:00
class velocityWoundMedium: velocityWound {
effectiveness = 0.6;
};
class velocityWoundLarge: velocityWound {
2016-02-07 11:37:00 +00:00
effectiveness = 0.5;
reopeningChance = 0.1;
reopeningMinDelay = 200;
reopeningMaxDelay = 300;
};
2015-02-22 17:33:46 +00:00
class punctureWound: Abrasion {
effectiveness = 0.5;
2016-02-07 11:37:00 +00:00
reopeningChance = 0.05;
2015-02-22 17:33:46 +00:00
reopeningMinDelay = 200;
reopeningMaxDelay = 300;
};
class punctureWoundMinor: punctureWound {};
2016-02-07 11:37:00 +00:00
class punctureWoundMedium: punctureWound {
effectiveness = 0.4;
reopeningChance = 0.1;
2016-02-07 11:37:00 +00:00
};
class punctureWoundLarge: punctureWound {
effectiveness = 0.3;
reopeningChance = 0.15;
reopeningMinDelay = 200;
reopeningMaxDelay = 300;
};
2015-02-22 17:33:46 +00:00
};
};
class Medication {
// How much does the pain get reduced?
painReduce = 0;
// How much will the heart rate be increased when the HR is low (below 55)? {minIncrease, maxIncrease, seconds}
hrIncreaseLow[] = {0, 0, 0};
hrIncreaseNormal[] = {0, 0, 0};
hrIncreaseHigh[] = {0, 0, 0};
// Callback once the heart rate values have been added.
hrCallback = "";
// How long until this medication has disappeared
timeInSystem = 120;
// How many of this type of medication can be in the system before the patient overdoses?
maxDose = 4;
// Function to execute upon overdose. Arguments passed to call back are 0: unit <OBJECT>, 1: medicationClassName <STRING>
onOverDose = "";
// The viscosity of a fluid is a measure of its resistance to gradual deformation by shear stress or tensile stress. For liquids, it corresponds to the informal concept of "thickness". This value will increase/decrease the viscoty of the blood with the percentage given. Where 100 = max. Using the minus will decrease viscosity
viscosityChange = 0;
// specific details for the ACE_Morphine treatment action
2015-02-22 17:33:46 +00:00
class Morphine {
2015-05-16 14:27:14 +00:00
painReduce = 15;
2015-08-08 18:22:19 +00:00
hrIncreaseLow[] = {-10, -20, 35};
hrIncreaseNormal[] = {-10, -30, 35};
hrIncreaseHigh[] = {-10, -35, 50};
2015-05-16 14:27:14 +00:00
timeInSystem = 900;
maxDose = 4;
2015-02-22 17:33:46 +00:00
inCompatableMedication[] = {};
viscosityChange = 10;
2015-02-22 17:33:46 +00:00
};
class Epinephrine {
painReduce = 0;
hrIncreaseLow[] = {10, 20, 15};
hrIncreaseNormal[] = {10, 50, 10};
hrIncreaseHigh[] = {10, 40, 5};
2015-02-22 17:33:46 +00:00
timeInSystem = 120;
maxDose = 10;
inCompatableMedication[] = {};
};
class Adenosine {
painReduce = 0;
hrIncreaseLow[] = {-7, -10, 15};
hrIncreaseNormal[] = {-15, -30, 20};
hrIncreaseHigh[] = {-15, -35, 10};
timeInSystem = 120;
maxDose = 6;
inCompatableMedication[] = {};
};
2015-02-22 17:33:46 +00:00
class Atropine {
painReduce = 0;
hrIncreaseLow[] = {-2, -5, 15};
hrIncreaseNormal[] = {-10, -15, 20};
hrIncreaseHigh[] = {-5, -20, 10};
2015-02-22 17:33:46 +00:00
timeInSystem = 120;
maxDose = 6;
inCompatableMedication[] = {};
};
class PainKillers {
painReduce = 0.7;
timeInSystem = 120;
maxDose = 10;
inCompatableMedication[] = {};
viscosityChange = 5;
};
};
class IV {
// volume is in millileters
volume = 1000;
ratio[] = {};
type = "Blood";
2015-02-22 17:33:46 +00:00
class BloodIV {
volume = 1000;
ratio[] = {"Plasma", 1};
};
2015-02-22 17:33:46 +00:00
class BloodIV_500: BloodIV {
volume = 500;
};
2015-02-22 17:33:46 +00:00
class BloodIV_250: BloodIV {
volume = 250;
};
2015-02-22 17:33:46 +00:00
class PlasmaIV: BloodIV {
volume = 1000;
ratio[] = {"Blood", 1};
type = "Plasma";
};
2015-02-22 17:33:46 +00:00
class PlasmaIV_500: PlasmaIV {
volume = 500;
};
2015-02-22 17:33:46 +00:00
class PlasmaIV_250: PlasmaIV {
volume = 250;
};
2015-02-22 17:33:46 +00:00
class SalineIV: BloodIV {
volume = 1000;
type = "Saline";
2015-02-22 17:33:46 +00:00
ratio[] = {};
};
2015-02-22 17:33:46 +00:00
class SalineIV_500: SalineIV {
volume = 500;
};
2015-02-22 17:33:46 +00:00
class SalineIV_250: SalineIV {
volume = 250;
};
};
};
};