Cotton Balls: Difference between revisions

From PZwiki
m (Automatic formatting)
m (Automated CodeBox update)
Line 96: Line 96:
   | code =
   | code =
item CottonBalls
item CottonBalls
{
    {
    DisplayCategory = FirstAid,
        DisplayCategory = FirstAid,
    Weight = 0.1,
        Weight = 0.1,
    Type = Normal,
        Type = Normal,
    DisplayName = Cotton Balls,
        DisplayName = Cotton Balls,
    Icon = CottonBalls,
        Icon = CottonBalls,
    Medical = TRUE,
        Medical = TRUE,
    WorldStaticModel = CottonBalls,
        WorldStaticModel = CottonBalls,
}
    }  
  }}
}}


''Cotton Balls Doused in Alcohol'' [[File:CottonBalls.png]]<br>
''Cotton Balls Doused in Alcohol'' [[File:CottonBalls.png]]<br>
Line 117: Line 117:
   | code =
   | code =
item AlcoholedCottonBalls
item AlcoholedCottonBalls
{
    {
    DisplayCategory = FirstAid,
        DisplayCategory = FirstAid,
    Type = Drainable,
        Type             =         Drainable,
    UseDelta = 1,
        UseDelta         =         1,
    UseWhileEquipped = FALSE,
        UseWhileEquipped =           FALSE,
    DisplayName = Cotton Balls Doused in Alcohol,
        DisplayName =     Cotton Balls Doused in Alcohol,
    Icon = CottonBalls,
        Icon = CottonBalls,
    Weight = 0.1,
        Weight = 0.1,
    AlcoholPower = 4,
        AlcoholPower       =           4,
    Tooltip = Tooltip_AlcoholBandage,
        Tooltip = Tooltip_AlcoholBandage,
    Medical = TRUE,
        Medical = TRUE,
    ConsolidateOption = ContextMenu_Merge,
        ConsolidateOption = ContextMenu_Merge,
    WorldStaticModel = CottonBalls,
        WorldStaticModel = CottonBalls,
}
    }  
  }}
}}
}}
}}



Revision as of 10:29, 26 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Cotton Balls
CottonBalls Model.png
General
Category
First Aid
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Disinfect wounds
Effect
Sterilize powerDisinfection
4
Technical
Item ID
Base.CottonBalls
Base.AlcoholedCottonBalls
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 bourbon, 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

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

Containers
Building/Room Container Rolls Chance
dentiststorage metal_shelves 4 1
metal_shelves 4 2
metal_shelves 4 1
metal_shelves 4 1
kennels counter 4 1
counter 4 2
counter 4 1
counter 4 1
laboratory crate 4 1
morgue counter 4 1

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

Code

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

Cotton Balls CottonBalls.png
Source: ProjectZomboid\media\scripts\newitems.txt

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
Source: ProjectZomboid\media\scripts\newitems.txt

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