Needle: Difference between revisions

From PZwiki
(Updated Needle page to match other medical pages, updated all info and categories. Linked to Medical Navbox, added General First Aid Link, changed description.)
m (Automated Formatting)
 
(40 intermediate revisions by 14 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Equipment|Tools|Tailoring tools}}
{{languages|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=Needle
<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=Needle_Model.png
{{Medical
|icon=Needle.png
|image = Needle.png
|icon_name=Needle
|primaryuse= Stitch up a Deep Wound
|category=Tool
|bandagepower = 0.0
|weight=0.1
|alcoholpower = 0.0
|primary_use=[[Crafting|Craft]] [[mattress]]
|weight = 0.1
|secondary_use=[[Health#Types of Injuries|Stitch deep wound]]
|material=Metal
|material_value=2
|tags=SewingNeedle
|item_id=Base.Needle
}}
}}
Needles can be used to stitch a deep wound. Alternatively if a needle is not available, a [[Suture Needle|suture needle]] can also be used, and it will cause the player less pain. Needles can be found within [[Medicine_cabinets|medicine cabinets]].
{{About|the sewing needle|the medical needle|Suture Needle}}
A '''needle''' is an item used in [[crafting]] and [[First Aid|first aid]].


A needle is a multi-use item, and unlike a suture needle, it will not disappear.
==Usage==
Needles can be used with [[thread]] to stitch a deep wound. Alternatively, a [[suture needle]] can be used to the same effect while causing less [[Pain|pain]] to its user. Unlike suture needles, a needle can be used multiple times.


Needles are also used for crafting house items like a [[mattress]].
A needle can also be used to craft a [[mattress]] and is used for [[Tailoring]]


== Crafting ==
==Crafting==
{| class="wikitable sortable" style="text-align:center;"  
{{Crafting/sandbox2
|-  
|mattress
! Name
}}
! class="unsortable" | Recipe
 
! class="unsortable" | Description
==Distribution==
{{RecipeLookup|4015}}
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
|-
|bedroom
|[[crate]]
|4
|2
|-
|kitchen
|[[counter]]
|4
|4
|-
|morgue
|[[counter]]
|4
|2
|-
|rowspan="2"|sewingstorage
|[[metal_shelves]]
|4
|1
|-
|[[metal_shelves]]
|4
|2
|}
|}
== Code ==
 
''Needle'' [[File:Needle.png]]
==Code==
<nowiki>
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 18
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Needle
item Needle
Weight = 0.1,
{
Type = Normal,
    DisplayCategory = Tool,
DisplayName = Needle,
Weight = 0.1,
Icon = Needle,
Type = Normal,
MetalValue = 2,
DisplayName =   Needle,
</nowiki>
Icon = Needle,
MetalValue = 2,
SurvivalGear = TRUE,
Medical = TRUE,
WorldStaticModel = Needle,
Tags = SewingNeedle,
}
}}
}}
 
==See also==
*[[First Aid]]


== See Also ==
{{Navbox items|equipment}}
[[First_Aid|General First Aid]]


{{Navbox/Consumables}}
[[Category:Medical items]]
[[Category:Consumables]]
[[Category:First aid tools]]
[[Category:Medical Items]]
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Items]]
[[Category:Tools]]
[[Category:Version 36]]

Latest revision as of 10:30, 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]
Needle
Needle Model.png
General
Category
Tool
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Properties
Material
Metal
Metal quantity
2
Technical
Tags
SewingNeedle
Item ID
Base.Needle
PlushSpiffo.pngThis article is about the sewing needle. For the medical needle, see Suture Needle.

A needle is an item used in crafting and first aid.

Usage

Needles can be used with thread to stitch a deep wound. Alternatively, a suture needle can be used to the same effect while causing less pain to its user. Unlike suture needles, a needle can be used multiple times.

A needle can also be used to craft a mattress and is used for Tailoring

Crafting

Product Ingredients Tools Requirements Workstation XP
Mattress.png
Mattress
Thread.png Thread ×2 unit(s)
Sheet.png Sheet ×5
Pillow.png Pillow ×5

Needle.png
Needle (tag)
none none none

Distribution

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

Containers
Building/Room Container Rolls Chance
bedroom crate 4 2
kitchen counter 4 4
morgue counter 4 2
sewingstorage metal_shelves 4 1
metal_shelves 4 2

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 Needle
	{
	    DisplayCategory = Tool,
		Weight	=	0.1,
		Type	=	Normal,
		DisplayName	=   Needle,
		Icon	=	Needle,
		MetalValue = 2,
		SurvivalGear = TRUE,
		Medical = TRUE,
		WorldStaticModel = Needle,
		Tags = SewingNeedle,
	}

See also