2019-06-10 16:23:21 +00:00
// bleeding - maximum possible percentage of cardiac output bled for a given wound type (0 .. 1)
2016-12-05 20:34:20 +00:00
// pain - maximum possible pain level for a given wound type (0 .. 1)
2016-06-30 15:33:29 +00:00
class ACE_Medical_Injuries {
2016-12-05 20:34:20 +00:00
// Defines all the possible injury types
2016-06-30 15:33:29 +00:00
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 {
2016-12-05 20:34:20 +00:00
bleeding = 0.001 ;
pain = 0.4 ;
2016-06-30 15:33:29 +00:00
} ;
// 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.
2016-12-07 20:56:13 +00:00
class Avulsion {
2019-06-10 16:23:21 +00:00
bleeding = 0.1 ;
2016-12-05 20:34:20 +00:00
pain = 1.0 ;
causeLimping = 1 ;
2016-06-30 15:33:29 +00:00
} ;
// 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 {
2019-06-10 16:23:21 +00:00
bleeding = 0 ;
2016-12-05 20:34:20 +00:00
pain = 0.3 ;
2016-06-30 15:33:29 +00:00
} ;
// Occur when a heavy object falls onto a person, splitting the skin and shattering or tearing underlying structures.
2016-12-07 20:56:13 +00:00
class Crush {
2017-06-05 16:51:53 +00:00
bleeding = 0.05 ;
2016-12-05 20:34:20 +00:00
pain = 0.8 ;
causeLimping = 1 ;
2019-05-12 04:13:59 +00:00
causeFracture = 1 ;
2016-06-30 15:33:29 +00:00
} ;
// 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 {
2019-06-10 16:23:21 +00:00
bleeding = 0.01 ;
2016-12-05 20:34:20 +00:00
pain = 0.1 ;
2016-06-30 15:33:29 +00:00
} ;
// 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 {
2016-12-05 20:34:20 +00:00
bleeding = 0.05 ;
pain = 0.2 ;
2016-06-30 15:33:29 +00:00
} ;
// 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.
2016-12-07 20:56:13 +00:00
class VelocityWound {
2019-06-10 16:23:21 +00:00
bleeding = 0.2 ;
2016-12-05 20:34:20 +00:00
pain = 0.9 ;
causeLimping = 1 ;
2019-05-12 04:13:59 +00:00
causeFracture = 1 ;
2016-06-30 15:33:29 +00:00
} ;
// Deep, narrow wounds produced by sharp objects such as nails, knives, and broken glass.
2016-12-07 20:56:13 +00:00
class PunctureWound {
2017-06-05 16:51:53 +00:00
bleeding = 0.05 ;
2016-12-05 20:34:20 +00:00
pain = 0.4 ;
causeLimping = 1 ;
2016-06-30 15:33:29 +00:00
} ;
2021-10-14 15:49:27 +00:00
// Pain wound that is caused by making or being in contact with heat
class ThermalBurn {
bleeding = 0 ;
pain = 0.7 ;
minDamage = 0 ;
} ;
2016-06-30 15:33:29 +00:00
} ;
2022-02-17 20:03:12 +00:00
2016-06-30 15:33:29 +00:00
class damageTypes {
2022-02-17 20:03:12 +00:00
// thresholds[] {{<damage>, <number of wounds>}, {...}}
// if damage is between two points, number is interpolated and then rounded by chance based on the decimal part
// e.g. a value of 2.7 has 70% chance to give 3 and 30% to give 2
// put damage values in descending order; uses the first value found that is below the wound damage, and the point immediately before that
2016-06-30 15:33:29 +00:00
thresholds [ ] = { { 0.1 , 1 } } ;
2022-02-17 20:03:12 +00:00
// if 1, wounds are only applied to the hitpoint that took the most damage. othewrise, wounds are applied to all damaged hitpoints
2016-06-30 15:33:29 +00:00
selectionSpecific = 1 ;
2022-02-17 20:03:12 +00:00
// list of damage handlers, which will be called in reverse order
// each entry should be a SQF expression that returns a function
// this can also be overridden for each damage type
class woundHandlers {
2022-02-20 23:23:56 +00:00
ADDON = QFUNC ( woundsHandlerBase ) ;
2022-02-17 20:03:12 +00:00
} ;
2016-06-30 15:33:29 +00:00
class bullet {
2022-02-17 20:03:12 +00:00
// bullets only create multiple wounds when the damage is very high
thresholds [ ] = { { 20 , 10 } , { 4.5 , 2 } , { 3 , 1 } , { 0 , 1 } } ;
2016-06-30 15:33:29 +00:00
selectionSpecific = 1 ;
2022-02-17 20:03:12 +00:00
class Avulsion {
// at damage, weight. between points, weight is interpolated then wound is chosen by weighted random.
// as with thresholds, but result is not rounded (decimal values used as-is)
weighting [ ] = { { 1 , 1 } , { 0.35 , 0 } } ;
/*
damageMultiplier = 1 ;
sizeMultiplier = 1 ;
bleedingMultiplier = 1 ;
painMultiplier = 1 ;
fractureMultiplier = 1 ;
*/
} ;
class Contusion {
weighting [ ] = { { 0.35 , 0 } , { 0.35 , 1 } } ;
// bruises caused by bullets hitting the plate are big
sizeMultiplier = 3.2 ;
// tone down the pain a tiny bit to compensate
painMultiplier = 0.8 ;
} ;
class VelocityWound {
// velocity wounds are only in the 0.35-1.5 range
weighting [ ] = { { 1.5 , 0 } , { 1.5 , 1 } , { 0.35 , 1 } , { 0.35 , 0 } } ;
// velocity wounds will tend to be medium or large
sizeMultiplier = 0.9 ;
} ;
2016-06-30 15:33:29 +00:00
} ;
class grenade {
2022-02-17 20:03:12 +00:00
// at low damage numbers, chance to create no wounds - makes it a bit more random instead of consistently covering people in bruises
thresholds [ ] = { { 20 , 10 } , { 10 , 5 } , { 4 , 3 } , { 1.5 , 2 } , { 0.8 , 2 } , { 0.3 , 1 } , { 0 , 0 } } ;
2016-06-30 15:33:29 +00:00
selectionSpecific = 0 ;
2022-02-17 20:03:12 +00:00
class Avulsion {
weighting [ ] = { { 1.5 , 1 } , { 1.1 , 0 } } ;
} ;
class VelocityWound {
weighting [ ] = { { 1.5 , 0 } , { 1.1 , 1 } , { 0.7 , 0 } } ;
} ;
class PunctureWound {
weighting [ ] = { { 0.9 , 0 } , { 0.7 , 1 } , { 0.35 , 0 } } ;
} ;
class Cut {
weighting [ ] = { { 0.7 , 0 } , { 0.35 , 1 } , { 0.35 , 0 } } ;
} ;
class Contusion {
weighting [ ] = { { 0.5 , 0 } , { 0.35 , 1 } } ;
sizeMultiplier = 2 ;
painMultiplier = 0.9 ;
} ;
2016-06-30 15:33:29 +00:00
} ;
class explosive {
2022-02-17 20:03:12 +00:00
// explosives create more and smaller wounds than grenades
thresholds [ ] = { { 20 , 15 } , { 8 , 7 } , { 2 , 3 } , { 1.2 , 2 } , { 0.4 , 1 } , { 0 , 0 } } ;
2016-06-30 15:33:29 +00:00
selectionSpecific = 0 ;
2022-02-17 20:03:12 +00:00
class Avulsion {
weighting [ ] = { { 1 , 1 } , { 0.8 , 0 } } ;
} ;
class Cut {
weighting [ ] = { { 1.5 , 0 } , { 0.35 , 1 } , { 0 , 0 } } ;
} ;
class Contusion {
weighting [ ] = { { 0.5 , 0 } , { 0.35 , 1 } } ;
sizeMultiplier = 2 ;
painMultiplier = 0.9 ;
} ;
2016-06-30 15:33:29 +00:00
} ;
class shell {
2022-02-17 20:03:12 +00:00
// shells tend to involve big pieces of shrapnel, so create fewer and larger wounds
thresholds [ ] = { { 20 , 10 } , { 10 , 5 } , { 4.5 , 2 } , { 2 , 2 } , { 0.8 , 1 } , { 0.2 , 1 } , { 0 , 0 } } ;
2016-06-30 15:33:29 +00:00
selectionSpecific = 0 ;
2022-02-17 20:03:12 +00:00
class Avulsion {
weighting [ ] = { { 1.5 , 1 } , { 1.1 , 0 } } ;
} ;
class VelocityWound {
weighting [ ] = { { 1.5 , 0 } , { 1.1 , 1 } , { 0.7 , 0 } } ;
} ;
class PunctureWound {
weighting [ ] = { { 0.9 , 0 } , { 0.7 , 1 } , { 0.35 , 0 } } ;
} ;
class Cut {
weighting [ ] = { { 0.7 , 0 } , { 0.35 , 1 } , { 0.35 , 0 } } ;
} ;
class Contusion {
weighting [ ] = { { 0.5 , 0 } , { 0.35 , 1 } } ;
sizeMultiplier = 2 ;
painMultiplier = 0.9 ;
} ;
2016-06-30 15:33:29 +00:00
} ;
class vehiclecrash {
2022-02-17 20:03:12 +00:00
thresholds [ ] = { { 1.5 , 3 } , { 1.5 , 2 } , { 1 , 2 } , { 1 , 1 } , { 0.05 , 1 } } ; // prevent subdividing wounds past FRACTURE_DAMAGE_THRESHOLD to ensure limp/fractue is triggered
2016-06-30 15:33:29 +00:00
selectionSpecific = 0 ;
2022-02-17 20:03:12 +00:00
class woundHandlers : woundHandlers {
GVAR ( vehiclecrash ) = QFUNC ( woundsHandlerVehiclecrash ) ;
} ;
class Abrasion {
weighting [ ] = { { 0.30 , 0 } , { 0.30 , 1 } } ;
} ;
class Avulsion {
weighting [ ] = { { 0.01 , 1 } , { 0.01 , 0 } } ;
} ;
class Contusion {
weighting [ ] = { { 0.35 , 0 } , { 0.35 , 1 } } ;
} ;
class Crush {
weighting [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
} ;
class Cut {
weighting [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
} ;
class Laceration {
} ;
2016-06-30 15:33:29 +00:00
} ;
2019-03-21 18:33:51 +00:00
class collision {
2022-05-17 16:54:05 +00:00
thresholds [ ] = { { 8 , 4 } , { 1 , 1 } , { 0.3 , 1 } , { 0.15 , 0.5 } , { 0 , 0.3 } } ; // prevent subdividing wounds past FRACTURE_DAMAGE_THRESHOLD to ensure limp/fractue is triggered
2019-03-21 18:33:51 +00:00
selectionSpecific = 0 ;
2022-02-17 20:03:12 +00:00
class Avulsion {
weighting [ ] = { { 1 , 2 } , { 0.5 , 0.5 } , { 0.5 , 0 } } ;
} ;
2022-05-17 16:54:05 +00:00
class Abrasion {
weighting [ ] = { { 0.4 , 0 } , { 0.2 , 1 } , { 0 , 0 } } ;
} ;
2022-02-17 20:03:12 +00:00
class Contusion {
2022-05-17 16:54:05 +00:00
weighting [ ] = { { 0.4 , 0 } , { 0.2 , 1 } } ;
2022-02-17 20:03:12 +00:00
} ;
class Crush {
2022-05-17 16:54:05 +00:00
weighting [ ] = { { 0.4 , 1 } , { 0.2 , 0 } } ;
2022-02-17 20:03:12 +00:00
} ;
class Cut {
weighting [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
} ;
class Laceration {
2022-05-17 16:54:05 +00:00
} ;
} ;
class falling {
thresholds [ ] = { { 8 , 4 } , { 1 , 1 } , { 0.2 , 1 } , { 0.1 , 0.7 } , { 0 , 0.5 } } ; // prevent subdividing wounds past FRACTURE_DAMAGE_THRESHOLD to ensure limp/fractue is triggered
selectionSpecific = 0 ;
class Abrasion {
weighting [ ] = { { 0.4 , 0 } , { 0.2 , 1 } , { 0 , 0 } } ;
sizeMultiplier = 3 ;
} ;
class Contusion {
weighting [ ] = { { 0.4 , 0 } , { 0.2 , 1 } } ;
sizeMultiplier = 3 ;
} ;
class Crush {
weighting [ ] = { { 0.4 , 1 } , { 0.2 , 0 } } ;
sizeMultiplier = 1.5 ;
2022-02-17 20:03:12 +00:00
} ;
2019-03-21 18:33:51 +00:00
} ;
2016-06-30 15:33:29 +00:00
class backblast {
2022-02-17 20:03:12 +00:00
thresholds [ ] = { { 1 , 6 } , { 1 , 5 } , { 0.55 , 5 } , { 0.55 , 2 } , { 0 , 2 } } ;
2016-06-30 15:33:29 +00:00
selectionSpecific = 0 ;
2022-02-17 20:03:12 +00:00
class Avulsion {
weighting [ ] = { { 0.30 , 0 } , { 0.30 , 1 } } ;
} ;
class Contusion {
weighting [ ] = { { 0.35 , 0 } , { 0.35 , 1 } } ;
} ;
class Cut {
weighting [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
} ;
2016-06-30 15:33:29 +00:00
} ;
class stab {
2022-02-17 20:03:12 +00:00
thresholds [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
2016-06-30 15:33:29 +00:00
selectionSpecific = 1 ;
2022-02-17 20:03:12 +00:00
class Cut {
weighting [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
} ;
class PunctureWound {
weighting [ ] = { { 0.02 , 1 } , { 0.02 , 0 } } ;
} ;
2016-06-30 15:33:29 +00:00
} ;
class punch {
2022-02-17 20:03:12 +00:00
thresholds [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
2016-06-30 15:33:29 +00:00
selectionSpecific = 1 ;
2022-02-17 20:03:12 +00:00
class Contusion {
weighting [ ] = { { 0.35 , 0 } , { 0.35 , 1 } } ;
} ;
class Crush {
weighting [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
} ;
class Laceration {
} ;
2016-06-30 15:33:29 +00:00
} ;
class ropeburn {
2022-02-17 20:03:12 +00:00
thresholds [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
2016-06-30 15:33:29 +00:00
selectionSpecific = 1 ;
2022-02-17 20:03:12 +00:00
class Abrasion {
weighting [ ] = { { 0.30 , 1 } } ;
} ;
} ;
class drowning {
//No related wounds as drowning should not cause wounds/bleeding. Can be extended for internal injuries if they are added.
thresholds [ ] = { { 0 , 0 } } ;
class woundHandlers { } ;
} ;
class fire {
// custom handling for environmental fire sources
// passes damage to "burn" so doesn't need its own wound stats
class woundHandlers {
ADDON = QFUNC ( woundsHandlerBurning ) ;
} ;
2016-06-30 15:33:29 +00:00
} ;
2021-10-14 15:49:27 +00:00
class burn {
thresholds [ ] = { { 0 , 1 } } ;
selectionSpecific = 0 ;
2022-02-17 20:03:12 +00:00
class ThermalBurn {
weighting [ ] = { { 0 , 1 } } ;
} ;
2019-03-21 18:33:51 +00:00
} ;
2016-06-30 15:33:29 +00:00
class unknown {
2022-02-17 20:03:12 +00:00
thresholds [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
class Abrasion {
weighting [ ] = { { 0.30 , 0 } , { 0.30 , 1 } } ;
} ;
class Cut {
weighting [ ] = { { 0.1 , 1 } , { 0.1 , 0 } } ;
} ;
class VelocityWound {
weighting [ ] = { { 0.35 , 1 } , { 0.35 , 0 } } ;
} ;
2016-06-30 15:33:29 +00:00
} ;
} ;
} ;