Cotton Balls: Difference between revisions

From PZwiki
(Redesigned page, + Navbar, New description, confirmed info, +categories + crafting section)
m (Distribution table update)
(39 intermediate revisions by 11 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Medical items}}
{{languages|Bottle_of_Disinfectant}}
{{Page version|41.78.16}}
<div class="header" style="margin: 5px; align: right; background: #C3E4ED; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #9AC0CD"> <!-- Code for Background Colour -->
{{Infobox item
<div style="float: right;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
|name=Cotton Balls
<div style="float: left;background: #C3E4ED;border: 1px solid #9AC0CD; margin: -30pt -10.5pt">  '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Consumables|Consumables]] -> [[:Category:Medical Items|Medical Items]] -> [[{{PAGENAME}}]]  </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|model=CottonBalls_Model.png
{{Medical
|icon=CottonBalls.png
|image = Cotton Balls.png
|icon_name=Cotton Balls
|primaryuse= Used with disinfectant
|category=First Aid
|bandagepower = 0.0
|weight=0.1
|alcoholpower = 0.0
|function=Disinfect [[Health#Types of Injuries|wounds]]
|weight = 0.1
|alcohol_power=4
|item_id=Base.CottonBalls
|item_id2=Base.AlcoholedCottonBalls
}}
}}
Cotton Balls can be disinfected to prevent wound infection. This can be done by using the Cotton Balls with [[Bottle of Disinfectant]] or with a bottle of [[Whiskey|Whiskey]].
{{Quote|text=Used to sterilize wounds and aid recovery from infection.|author=Cotton balls doused in alcohol in-game tooltip.}}
'''Cotton balls''' are an [[Items|item]] used in [[First Aid|first aid]].


Cotton Balls of Disinfectant can be found in medical cabinets, and in several places within a pharmacy.
==Usage==
{{Main|First Aid}}
Cotton balls can be disinfected with a [[Bottle of Disinfectant|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 [[Health#Types_of_Injuries|infected]].


==Recipes==
Alcohol doused cotton balls are single use items.
{| class="wikitable sortable" style="text-align:center;"
|-
! class="unsortable" | Output
! class="unsortable" | Ingredients
! class="unsortable" | Description
! class="unsortable" | Skill Level
{{RecipeLookup|8002}}
|}


== Code ==
==Crafting==
<nowiki>
{{Crafting/sandbox2
    item CottonBalls
|cotton_balls_cotton_balls_doused_in_alcohol
         Weight = 0.1,
}}
         Type = Normal,
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|CottonBalls|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>CottonBalls distribution
        <span class="mw-customtoggle-togglebox-CottonBalls" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-CottonBalls">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | all
    | {{ll|Bag_DoctorBag}}
    | 1
    | 10.0
    |-
    | dentiststorage
    | {{ll|metal_shelves}}
    | 4
    | 20.0
    |-
    | dentiststorage
    | {{ll|metal_shelves}}
    | 4
    | 10.0
    |-
    | kennels
    | {{ll|counter}}
    | 4
    | 20.0
    |-
    | kennels
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | laboratory
    | {{ll|crate}}
    | 4
    | 10.0
    |-
    | morgue
    | {{ll|counter}}
    | 4
    | 10.0
    |}
</div>
<div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Vehicles}}
    ! Vehicle Type/Location
    ! Rolls
    ! Chance
    |-
    | AmbulanceTruckBed
    | 4
    | 10
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-CottonBalls" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|CottonBalls|41.78.16-->
Cotton balls can be found in [[First Aid Kit|first aid kits]], [[Containers#Cabinets|medical cabinets]], and in several places within a pharmacy.
 
==Code==
{{CodeBox|
''Cotton Balls'' [[File:CottonBalls.png]]<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 2221
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item CottonBalls
    {
        DisplayCategory = FirstAid,
         Weight = 0.1,
         Type = Normal,
         DisplayName = Cotton Balls,
         DisplayName = Cotton Balls,
         Icon = CottonBalls,
         Icon = CottonBalls,
</nowiki>
        Medical = TRUE,
        WorldStaticModel = CottonBalls,
    }
}}
 
''Cotton Balls Doused in Alcohol'' [[File:CottonBalls.png]]<br>
{{CodeSnip
  | lang = java
  | line = true
  | start = 2260
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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==
*[[First Aid]]
*[[Health]]
*[[Alcohol Wipes]]
 
{{Navbox items|first_aid_materials}}


== See Also ==
[[First_Aid|General First Aid]]


{{Navbox/Consumables}}
[[Category:First aid materials]]
[[Category:Consumables]]
[[Category:Medical Items]]
[[Category:Items]]
[[Category:Version 34.28]]

Revision as of 15:17, 24 April 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 Ingredients Tools Requirements Workstation XP
CottonBalls.png
Cotton Balls Doused in Alcohol
One of:
Alcohol.png Bottle of Disinfectant ×1 unit(s)
WhiskeyFull.png Bourbon ×10 unit(s)
Each of:
CottonBalls.png Cotton Balls ×1
none none none none

Distribution

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

CottonBalls distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all Bag_DoctorBag 1 10.0
dentiststorage metal_shelves 4 20.0
dentiststorage metal_shelves 4 10.0
kennels counter 4 20.0
kennels counter 4 10.0
laboratory crate 4 10.0
morgue counter 4 10.0
Vehicles
Vehicle Type/Location Rolls Chance
AmbulanceTruckBed 4 10

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