Tissue: Difference between revisions

From PZwiki
(Redesigned page, +Navbar, +categories, +link to medical aid, confirmed code as current)
m (Automated CodeBox update)
(29 intermediate revisions by 9 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Medical items}}
{{languages|Suture_Needle}}
{{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=Tissue
<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=Tissue_Model.png
{{Medical
|model_width=200px
|image = tissues.png  
|icon=Tissue.png
|primaryuse= Prevent Loud Coughing
|icon_name=Tissue
|bandagepower = 0.0
|category=First Aid
|alcoholpower = 0.0
|weight=0.1
|weight = 0.1
|function=Mute [[Moodles#Has a Cold|sneezes and coughs]]
|item_id=Base.Tissue
}}
}}


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. Tissues are found in house cupboards and bins.
{{quote|text=Equip to mute sneezes and coughs.|author=In-game tooltip}}
A '''tissue''' can be equipped to mute sneezes and coughs


<br><br><br><br><br><br><br><br>
==Usage==
== Code ==
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.
''Tissues'' [[File:tissues.png]]
<nowiki>
item Tissue
Weight = 0.1,
Type = Drainable,
UseWhileEquipped = FALSE,
DisplayName = Tissue,
Icon = Tissue,
Tooltip = Tooltip_tissue_tooltip,
</nowiki>


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


{| class="wikitable" width="550" style="text-align:center;"
==Distribution==
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|all
|[[other]]
|1
|1
|-
|rowspan="3"|bedroom
|[[dresser]]
|4
|1
|-
|-
! Alpha ||
|[[plankstash]]
|4
|1
|-
|-
| RC 2.9 || Added to the game.
|[[sidetable]]
|4
|1
|}
|}


== See Also ==
==Code==
[[First_Aid|General First Aid]]
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 1239
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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==
*[[First Aid]]
 
{{Navbox equipment}}
{{Navbox medical}}


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

Revision as of 13:52, 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]
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

Template:Navbox medical