The full set of special effects a Treatment Test produces.

interface TreatmentOutcome {
    amputation?: AmputationInjury;
    bleeder: boolean;
    healingRate: number | "HEAL";
    infectable: boolean;
    permanentImpairmentEligible: boolean;
}

Properties

amputation?: AmputationInjury

The new edged wound an amputation inflicts, when the treatment is AMP.

bleeder: boolean

Whether the treatment leaves the wound bleeding.

healingRate: number | "HEAL"

The Healing Rate assigned, or TREATMENT_HEAL for an immediate heal.

infectable: boolean

Whether the poorly-treated wound is exposed to infection.

permanentImpairmentEligible: boolean

Whether the wound is eligible for permanent impairment.