Tissue: Difference between revisions

From PZwiki
m (Automatic formatting)
m (Automated Formatting)
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name =Tissue
|name=Tissue
|model=Tissue_Model.png
|model=Tissue_Model.png
|model_width=200px
|model_width=200px
Line 9: Line 9:
|category=First Aid
|category=First Aid
|weight=0.1
|weight=0.1
|function = Mute [[Moodles#Has a Cold|sneezes and coughs]]
|function=Mute [[Has a Cold|sneezes and coughs]]
|item_id = Base.Tissue
|item_id=Base.Tissue
}}
}}
{{quote|text=Equip to mute sneezes and coughs.|author=In-game tooltip}}
{{quote|text=Equip to mute sneezes and coughs.|author=In-game tooltip}}
A '''tissue''' can be equipped to mute sneezes and coughs
A '''tissue''' can be equipped to mute sneezes and coughs
Line 32: Line 31:
! style="width: 3.2em;" | Chance
! style="width: 3.2em;" | Chance
|-
|-
|all  
|all
|[[other]]  
|[[other]]
|1  
|1
|1
|1
|-
|-
|rowspan="3"|bedroom  
|rowspan="3"|bedroom
|[[dresser]]  
|[[dresser]]
|4  
|4
|1
|1
|-
|-
|[[plankstash]]  
|[[plankstash]]
|4  
|4
|1
|1
|-
|-
|[[sidetable]]  
|[[sidetable]]
|4  
|4
|1
|1
|}
|}
Line 55: Line 54:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 1239
   | source = items.txt
   | source = items.txt
   | retrieved = true
   | retrieved = true
Line 61: Line 61:
   | code =
   | code =
item Tissue
item Tissue
{
{
    DisplayCategory     = FirstAid,
    DisplayCategory = FirstAid,
    Weight             = 0.1,
Weight = 0.1,
    Type               = Drainable,
Type = Drainable,
    UseWhileEquipped   = FALSE,
UseWhileEquipped = FALSE,
    DisplayName         = Tissue,
DisplayName = Tissue,
    Icon               = Tissue,
Icon = Tissue,
    Tooltip             = Tooltip_tissue_tooltip,
Tooltip = Tooltip_tissue_tooltip,
    ConsolidateOption   = ContextMenu_Merge,
ConsolidateOption = ContextMenu_Merge,
    WorldStaticModel   = Tissue,
WorldStaticModel = Tissue,
}
}
  }}
}}
}}
}}


Line 78: Line 78:
*[[First Aid]]
*[[First Aid]]


{{Navbox equipment}}
{{Navbox items|first_aid_materials}}
{{Navbox medical}}
 
 


[[Category:First aid materials]]
[[Category:First aid materials]]

Revision as of 12:53, 14 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]
Tissue
Tissue Model.png
General
Category
First Aid
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Technical
Item ID
Base.Tissue
Equip to mute sneezes and coughs.
— In-game tooltip

A tissue can be equipped to mute sneezes and coughs

Usage

Tissue can be equipped to mute sneezes and coughs that are caused by staying out in the rain. Each time a sound is muted, the tissue deteriorates. After the tissue is sufficiently deteriorated, the player will have to use a new tissue.

A tissue has 10 uses before deteriorating. Works if equipped in primary or secondary slot (if two equipped, primary will receive damage).

Distribution

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

Containers
Building/Room Container Rolls Chance
all other 1 1
bedroom dresser 4 1
plankstash 4 1
sidetable 4 1

Code

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Tissue
	{
	    DisplayCategory = FirstAid,
		Weight	=	0.1,
		Type	=	Drainable,
		UseWhileEquipped	=	FALSE,
		DisplayName	=	Tissue,
		Icon	=	Tissue,
		Tooltip = Tooltip_tissue_tooltip,
		ConsolidateOption = ContextMenu_Merge,
		WorldStaticModel = Tissue,
	}

See also