Bandage

From PZwiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Bandage
Bandage Model.png
BandageDirty Model.png
Bandage Model.png
General
Category
Household
First Aid (sterile)
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Stop bleeding
Prevent/cure infection
Effect
AlcoholMoodle Icon Drunk.png
True (sterile)
Bandage powerMoodle Icon Bleeding.png
4
0.5 (dirty)
Technical
Item ID
Base.Bandage
Base.BandageDirty
Base.AlcoholBandage
Right click on your health panel to use.
— Bandage in-game tooltip.
Used to sterilize wounds and aid recovery from infection.
— Sterilized Bandage in-game tooltip.

A bandage is an item used in first aid.

Usage

Main article: First Aid

Basic usage

A bandage is primarily used to stop the player from bleeding, by applying it to the wound. It can be used on various injuries, including wounds and burns. After some time, depending on the wound and player's First Aid skill, the bandage will become a dirty bandage, which once removed will grant the player some first aid experience.

Wound infection

If a bleeding wound is left untreated, the player will continue to lose health until they eventually die. Leaving a wound untreated can also lead to it becoming infected depending on the player's clothing, the type of wound and whether a dirty bandage is left on. A dirty bandage can be left on a wound to stop the bleeding, however this will give the wound the highest possible chance of becoming infected. Wound infections do not affect the recovery time, threfore, since not having any bandage applied stops healing, it is reccomended to not remove badages, even if they get dirty.

An infected wound can be treated by applying a sterilized bandage to the wound. Sterilized bandages have the same rate of becoming dirty as regular bandages, but they improve the healing rate when used.

Types of wounds

In most cases, applying a bandage, whether it be sterilized or not, increases the rate of healing. The only exception to this rule are stitches. Applying a bandage to a stitch will actually decrease the healing rate, therefore taking longer to heal.

CandleLit.png
This section may have claims which require verification.
This table was last updated build 39 and does not take into account the changes to wounds in build 41.
Type of wound Healing rate
(unbandaged)
Healing rate
(bandaged)
Bandage life Other
Healing rate of bandaged wounds.
Scratch 100 15 800 N/A
Bite 500 10 10 N/A
Bleeding 200 20 30
5 (deep wound)
3x105
Glass
Deep wound 5000 500 10 3x105
Glass,Bullet
Burn 500 10 10 N/A
Infected N/A N/A 20 60
Sterilized Bandage
Stitch 20 +40 10 N/A

Note: the values in this table are arbitrary and are used purely as an example for comparing the different variables. The actual game values/mechanics are much more complicated than what is displayed here.

Crafting

Cleaning bandages

Dirty bandages can be cleaned with water, returning them to a regular bandage.


Product Ingredients Tools Requirements Workstation XP
Bandage.png
Bandage
BandageDirty.png Dirty Bandage ×1
WaterDrop.png Water ×1 unit(s)
none none none none
Rag.png
Ripped Sheets
RagDirty.png Dirty Rag ×1
WaterDrop.png Water ×1 unit(s)
none none none none

Disinfecting bandages

A bandage can be disinfected by either soaking it in bourbon or disinfectant, or boiling a pot of water and adding a bandage to it, which will also clean a dirty bandage.


Product Ingredients Tools Requirements Workstation XP
Bandage.png
Sterilized Bandage
One of:
Alcohol.png Bottle of Disinfectant ×3 unit(s)
WhiskeyFull.png Bourbon ×10 unit(s)
Pot Water.png Cooking Pot ×1
SaucepanEmpty.png Saucepan ×1
Each of:
Bandage.png Bandage ×1
none none none none
Rag.png
Sterilized Rag
One of:
Alcohol.png Bottle of Disinfectant ×3 unit(s)
WhiskeyFull.png Bourbon ×10 unit(s)
Pot Water.png Cooking Pot ×1
SaucepanEmpty.png Saucepan ×1
Each of:
Rag.png Ripped Sheets ×1
none none none none

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
MedicalCache1 MedicalBox 4 1
all militarycrate 4 1
bathroom counter 4 6
medicine 4 6
shelves 4 6
dentiststorage metal_shelves 4 1
metal_shelves 4 1
metal_shelves 4 2
metal_shelves 4 2
metal_shelves 4 1
metal_shelves 4 1
kennels counter 4 1
counter 4 1
counter 4 1
laboratory crate 4 1
prisoncells wardrobe 4 0.2

Bandages can be found in medical buildings and first aid kits.

Dirty bandages can be found in trash bins. Sterilized bandages cannot be found in the world.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Bandage Bandage.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Bandage
	{
	    DisplayCategory = FirstAid,
		Count	=	1,
		Weight	=	0.1,
		AlwaysWelcomeGift	=	true,
		Type	=	Normal,
		DisplayName	=	Bandage,
		ReplaceOnUse    =   BandageDirty,
		Icon	=	Bandage,
		CanBandage	=	true,
		BandagePower    =   4,
		Tooltip = Tooltip_UseOnHealthPanel,
		Medical = TRUE,
		WorldStaticModel = Bandage,
	}

Dirty Bandage BandageDirty.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item BandageDirty
    {
        DisplayCategory = FirstAid,
        Count	=	1,
        Weight	=	0.1,
        AlwaysWelcomeGift	=	true,
        Type	=	Normal,
        DisplayName	=	Dirty Bandage,
        Icon	=	BandageDirty,
        CanBandage	=	true,
        BandagePower    =   0.5,
        Medical = TRUE,
        WorldStaticModel = BandageDirty,
    }

Sterilized Bandage Bandage.png
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item AlcoholBandage
    {
        DisplayCategory = FirstAid,
        Count	=	1,
        Weight	=	0.1,
        AlwaysWelcomeGift	=	true,
        Type	=	Normal,
        DisplayName	=	Sterilized Bandage,
        ReplaceOnUse    =   BandageDirty,
        Alcoholic	=	TRUE,
        Icon	=	Bandage,
        CanBandage	=	true,
        BandagePower    =   4,
        Tooltip = Tooltip_AlcoholBandage,
        Medical = TRUE,
        WorldStaticModel = Bandage,
    }

See also