2015-01-18 21:16:35 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-02-03 19:09:25 +00:00
|
|
|
ADDON = false;
|
2015-01-18 21:16:35 +00:00
|
|
|
|
2015-02-06 12:48:28 +00:00
|
|
|
PREP(getTypeOfDamage);
|
2015-02-08 09:25:03 +00:00
|
|
|
PREP(handleDamage_airway);
|
2015-01-18 21:16:35 +00:00
|
|
|
PREP(handleDamage);
|
2015-02-03 19:09:25 +00:00
|
|
|
PREP(handleDamage_advanced);
|
|
|
|
PREP(handleDamage_basic);
|
|
|
|
PREP(handleDamage_medium);
|
2015-02-08 09:25:03 +00:00
|
|
|
PREP(handleDamage_fractures);
|
|
|
|
PREP(handleDamage_internalInjuries);
|
2015-02-06 12:47:17 +00:00
|
|
|
PREP(init);
|
2015-02-03 20:48:53 +00:00
|
|
|
PREP(selectionNameToNumber);
|
2015-02-07 23:08:36 +00:00
|
|
|
PREP(handleDamage_wounds);
|
|
|
|
PREP(handleUnitVitals);
|
|
|
|
PREP(getBloodLoss);
|
|
|
|
PREP(getBloodPressure);
|
|
|
|
PREP(getBloodVolumeChange);
|
|
|
|
PREP(getCardiacOutput);
|
|
|
|
PREP(setCardiacArrest);
|
2015-02-08 09:25:03 +00:00
|
|
|
PREP(addToInjuredCollection);
|
|
|
|
PREP(setUnconscious);
|
2015-02-08 12:06:44 +00:00
|
|
|
PREP(getUnconsciousCondition);
|
|
|
|
PREP(addUnconsciousCondition);
|
2015-02-08 12:18:08 +00:00
|
|
|
PREP(setDead);
|
|
|
|
PREP(playInjuredSound);
|
2015-02-08 12:06:44 +00:00
|
|
|
|
2015-02-08 09:25:03 +00:00
|
|
|
GVAR(injuredUnitCollection) = [];
|
2015-01-18 21:16:35 +00:00
|
|
|
|
|
|
|
ADDON = true;
|