Adhesive Bandages: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
(infobox changes and new code section)
Line 2: Line 2:
{{Header|The Game World|Items|Consumables|Medical Items|type=Medical|version=Version 41|incver=78.16}}
{{Header|The Game World|Items|Consumables|Medical Items|type=Medical|version=Version 41|incver=78.16}}
{{Infobox item
{{Infobox item
|display_name=Adhesive bandages
|display_name=Adhesive Bandages
|name_colour=Medical
|model= <!-- model image to go here: BandAid_Model.png -->
|name_text_colour=Medical
|icon=Bandaid.png
|model=Bandaid.png
|category=FirstAid
|weight=0.05
|weight=0.05
|primary_use=[[Health#Bandaging|Bandage]] [[Moodles#Bleeding|bleeding]] wounds
|function=[[Health#Bandaging|Bandage]] [[Moodles#Bleeding|bleeding]] wounds
|bandage_power=1.5
|bandage_power=1.5
|class_name=Base.Bandaid
|class_name=Base.Bandaid
Line 22: Line 22:


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox |{{CodeSnip
{{Retrieved|version=41|incver=78.16}}
|lang=java |line=true |start=1593 |source=newitems.txt
<pre>
|retrieved=true |version=41 |incver=78.16 |date=2023-09-25
|code=
item Bandaid
item Bandaid
{
{
DisplayCategory = FirstAid,
    DisplayCategory = FirstAid,
Type = Normal,
Type = Normal,
DisplayName = Adhesive Bandages,
DisplayName = Adhesive Bandages,
Icon = Bandaid,
Icon = Bandaid,
Weight = 0.05,
Weight = 0.05,
         CanBandage = true,
         CanBandage = true,
         BandagePower    =  1.5,
         BandagePower    =  1.5,
Line 38: Line 39:
         WorldStaticModel = BandAid,
         WorldStaticModel = BandAid,
}
}
</pre>
}}}}


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

Revision as of 12:07, 25 September 2023

The Game WorldItemsConsumablesMedical ItemsAdhesive Bandages
Adhesive Bandages
[[File:||200px|class=pixelart]]
General
Category
FirstAid
Encumbrance
Moodle Icon HeavyLoad.png
0.05
Function
Effect
Bandage powerMoodle Icon Bleeding.png
1.5
Technical
Item 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

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16 (25 September 2023)
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