Cotton Balls: Difference between revisions

From PZwiki
m (Minor cleanup)
m (Updated to 41.78.16)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|Consumables|Medical Items|type=Medical|version=Version 40|incver=43}}{{Infobox item custom
{{Languages}}{{Header|The Game World|Items|Consumables|Medical Items|type=Medical|version=Version 41|incver=78.16}}{{Infobox item custom
|display_name=Cotton Balls
|display_name=Cotton Balls
|name_colour=Medical
|name_colour=Medical
Line 45: Line 45:


''Cotton Balls'' [[File:CottonBalls.png]]
''Cotton Balls'' [[File:CottonBalls.png]]
{{Retrieved|version=40|incver=43}}
{{Retrieved|version=41|incver=78.16}}
<pre>
<pre>
item CottonBalls
    item CottonBalls
Weight = 0.1,
    {
Type = Normal,
        DisplayCategory = FirstAid,
DisplayName = Cotton Balls,
        Weight = 0.1,
Icon = CottonBalls,
        Type = Normal,
        DisplayName = Cotton Balls,
        Icon = CottonBalls,
        Medical = TRUE,
        WorldStaticModel = CottonBalls,
    }
</pre>
</pre>


''Cotton Balls Doused in Alcohol'' [[File:CottonBalls.png]]
''Cotton Balls Doused in Alcohol'' [[File:CottonBalls.png]]
{{Retrieved|version=40|incver=43}}
{{Retrieved|version=41|incver=78.16}}
<pre>
<pre>
item AlcoholedCottonBalls
    item AlcoholedCottonBalls
Type = Drainable,
    {
UseDelta = 1,
        DisplayCategory = FirstAid,
UseWhileEquipped = FALSE,
        Type             =         Drainable,
DisplayName = Cotton Balls Doused in Alcohol,
        UseDelta         =         1,
Icon = CottonBalls,
        UseWhileEquipped =           FALSE,
Weight = 0.1,
        DisplayName =     Cotton Balls Doused in Alcohol,
AlcoholPower = 4,
        Icon = CottonBalls,
Tooltip = Tooltip_AlcoholBandage,
        Weight = 0.1,
        AlcoholPower       =           4,
        Tooltip = Tooltip_AlcoholBandage,
        Medical = TRUE,
        ConsolidateOption = ContextMenu_Merge,
        WorldStaticModel = CottonBalls,
    }
</pre>
</pre>


Line 71: Line 82:
*[[First Aid]]
*[[First Aid]]
*[[Health]]
*[[Health]]
*[[Alcohol Wipes]]


{{Navbox medical}}
{{Navbox medical}}

Revision as of 00:03, 5 April 2023

Template:Infobox item custom

Used to sterilize wounds and aid recovery from infection.
— Cotton balls doused in alcohol in-game tooltip.

Cotton balls are an item used in first aid.

Usage

Main article: First Aid

Cotton balls can be disinfected with a bottle of disinfectant or whiskey, producing cotton balls doused in alcohol. They are used to disinfect a wound before applying a bandage reducing the chance of the wound becoming infected.

Alcohol doused cotton balls are single use items.

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
CottonBalls.png
Cotton Balls Doused in Alcohol
0 XP none CottonBalls.png
Cotton Balls
(consumed)
One of:
Alcohol.png Bottle of Disinfectant (1 unit)
WhiskeyFull.png Bourbon (10 units)

(consumed)

Distribution

Cotton balls can be found in first aid kits, medical cabinets, and in several places within a pharmacy.

Item IDs

Item name Class name
Cotton Balls Base.CottonBalls
Cotton Balls Doused in Alcohol Base.AlcoholedCottonBalls

Code

From newitems.txt (Project Zomboid directory/media/scripts/)

Cotton Balls CottonBalls.png Retrieved: Build 41.78.16

    item CottonBalls
    {
        DisplayCategory = FirstAid,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Cotton Balls,
        Icon	=	CottonBalls,
        Medical = TRUE,
        WorldStaticModel = CottonBalls,
    }

Cotton Balls Doused in Alcohol CottonBalls.png Retrieved: Build 41.78.16

    item AlcoholedCottonBalls
    {
        DisplayCategory = FirstAid,
        Type	            =	        Drainable,
        UseDelta	        =	        1,
        UseWhileEquipped	=           FALSE,
        DisplayName			=		    Cotton Balls Doused in Alcohol,
        Icon				=			CottonBalls,
        Weight				=			0.1,
        AlcoholPower        =           4,
        Tooltip = Tooltip_AlcoholBandage,
        Medical = TRUE,
        ConsolidateOption = ContextMenu_Merge,
        WorldStaticModel = CottonBalls,
    }

See also

Template:Navbox medical