Adhesive Bandages: Difference between revisions

From PZwiki
m (→‎See also: simplify link)
m (Minor)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|Consumables|Medical Items|type=Medical|version=Version 41|incver=78.16}}{{Infobox normal
{{Languages}}
{{Header|The Game World|Items|Consumables|Medical Items|type=Medical|version=Version 41|incver=78.16}}
{{Infobox normal
|display_name=Adhesive bandages
|display_name=Adhesive bandages
|name_colour=Medical
|name_colour=Medical
Line 8: Line 10:
|bandage_power=1.5
|bandage_power=1.5
|class_name=Base.Bandaid
|class_name=Base.Bandaid
}}{{quote|text=Right click on your health panel to use.|author=In-game tooltip.}}'''Adhesive bandages''', commonly known as '''bandaids''', are an [[item]] used in [[First Aid|first aid]].
}}
{{Quote|text=Right click on your health panel to use.|author=In-game tooltip.}}'''Adhesive bandages''', commonly known as '''bandaids''', are an [[item]] used in [[First Aid|first aid]].


==Usage==
==Usage==
Line 21: Line 24:
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=78.16}}
{{Retrieved|version=41|incver=78.16}}
<pre> item Bandaid
<pre>
item Bandaid
{
{
DisplayCategory = FirstAid,
DisplayCategory = FirstAid,
Line 33: Line 37:
         Medical = TRUE,
         Medical = TRUE,
         WorldStaticModel = BandAid,
         WorldStaticModel = BandAid,
}</pre>
}
</pre>


==See also==
==See also==

Revision as of 14:51, 15 July 2023

The Game WorldItemsConsumablesMedical ItemsAdhesive Bandages
Adhesive bandages
Adhesive bandages
General
Category Item
Encumbrance
Heavy Load
0.05
Function Bandage bleeding wounds
Bandage power
Bleeding
1.5
Technical details
Base ID Base.Bandaid
Right click on your health panel to use.
— In-game tooltip.

Adhesive bandages, commonly known as bandaids, are an item used in first aid.

Usage

First Aid

For main article, see First Aid

Adhesive bandages are capable of stemming an open wound, similar to a bandage. It is not as effective as a bandage, becoming "dirty" quicker, while also not having a "dirty variant", and will instead be consumed when it becomes dirty.

Distribution

Adhesive bandages can be found in vehicles, first aid kits, medicine cabinets, bathroom counters and in medical centres.

Code

From newitems.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.78.16

	item Bandaid
	{
	DisplayCategory = FirstAid,
	Type				=			Normal,
	DisplayName			=			Adhesive Bandages,
	Icon				=			Bandaid,
	Weight				=			0.05,
        CanBandage	=	true,
        BandagePower    =   1.5,
        Tooltip = Tooltip_UseOnHealthPanel,
        Medical = TRUE,
        WorldStaticModel = BandAid,
	}

See also

Template:Navbox medical