Suture Needle Holder: Difference between revisions

From PZwiki
(Fixed Navbar spacing)
m (Automated Formatting)
(37 intermediate revisions by 9 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Equipment|Tools|First aid tools}}
{{languages|Suture_Needle_Holder}}
{{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=Suture Needle Holder
<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=SutureNeedleHolder_Model.png
{{Medical
|model_width=200px
|image = SutureNeedleHolder.png
|icon=SutureNeedleHolder.png
|primaryuse= Remove Glass/Bullets
|icon_name=Suture Needle Holder
|bandagepower = 0.0
|weight=0.1
|alcoholpower = 0.0
|primary_use=Reduce pain from [[Health#Healing|stitching]]
|weight = 0.1
|secondary_use=Remove glass and bullets
|material=Metal
|material_value=9
|tags=RemoveBullet<br>RemoveGlass
|item_id=Base.SutureNeedleHolder
}}
}}
A Suture Needle Holder can be used to remove glass shards and bullets from wounds.  
{{Quote|text=Used with Suture Needle to improve success-rate of deep wound treatment.|author=In-game tooltip}}
A '''suture needle holder''' is an [[Items|item]] used in [[First Aid|first aid]].


<br><br><br><br><br><br><br><br><br><br>
==Usage==
== Code ==
A suture needle holder is used to reduce pain when [[Health#Healing|stitching]] [[Health#Types of injuries|deep wounds]] without a suture needle.
''Suture Needle Holder'' [[File:SutureNeedleHolder.png]]
<nowiki>
    item SutureNeedleHolder
Weight = 0.1,
Type = Normal,
DisplayName = Suture Needle Holder,
Icon = SutureNeedleHolder,
</nowiki>


== See Also ==
A suture needle holder can also be used to remove [[Broken Glass|glass shards]] and bullets from wounds.
[[First_Aid|General First Aid]]


{{Navbox/Consumables}}
Suture Needle Holder is not consumed on use, so you need only one.
[[Category:Medical Items]]
 
[[Category:Items]]
==Distribution==
[[Category:Version 34.28]]
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
|-
|MedicalCache1
|[[MedicalBox]]
|4
|1
|-
|rowspan="4"|dentiststorage
|[[metal_shelves]]
|4
|1
|-
|[[metal_shelves]]
|4
|1
|-
|[[metal_shelves]]
|4
|2
|-
|[[metal_shelves]]
|4
|2
|-
|rowspan="2"|kennels
|[[counter]]
|4
|1
|-
|[[counter]]
|4
|2
|-
|morgue
|[[counter]]
|4
|1
|}
 
==Code==
{{CodeBox |{{CodeSnip
  | lang = java
  | line = true
  | start = 880
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item SutureNeedleHolder
{
    DisplayCategory = FirstAid,
Weight = 0.1,
Type = Normal,
DisplayName = Suture Needle Holder,
Icon = SutureNeedleHolder,
MetalValue = 9,
Tooltip = Tooltip_SutureNeedleHolder,
Medical = TRUE,
WorldStaticModel = SutureNeedleHolder,
Tags = RemoveBullet;RemoveGlass,
}
}}}}
 
==See also==
*[[First Aid]]
 
{{Navbox items|equipment}}
 
[[Category:Medical items]]
[[Category:Tools]]

Revision as of 12:36, 14 April 2024

Project ZomboidItemsEquipmentToolsFirst aid toolsSuture Needle Holder
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Suture Needle Holder
SutureNeedleHolder Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Reduce pain from stitching
Remove glass and bullets
Properties
Material
Metal
Metal quantity
9
Technical
Tags
RemoveBullet
RemoveGlass
Item ID
Base.SutureNeedleHolder
Used with Suture Needle to improve success-rate of deep wound treatment.
— In-game tooltip

A suture needle holder is an item used in first aid.

Usage

A suture needle holder is used to reduce pain when stitching deep wounds without a suture needle.

A suture needle holder can also be used to remove glass shards and bullets from wounds.

Suture Needle Holder is not consumed on use, so you need only one.

Distribution

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

Containers
Building/Room Container Rolls Chance
MedicalCache1 MedicalBox 4 1
dentiststorage metal_shelves 4 1
metal_shelves 4 1
metal_shelves 4 2
metal_shelves 4 2
kennels counter 4 1
counter 4 2
morgue counter 4 1

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item SutureNeedleHolder
	{
	    DisplayCategory = FirstAid,
		Weight	=	0.1,
		Type	=	Normal,
		DisplayName	=	Suture Needle Holder,
		Icon	=	SutureNeedleHolder,
		MetalValue = 9,
		Tooltip = Tooltip_SutureNeedleHolder,
		Medical = TRUE,
		WorldStaticModel = SutureNeedleHolder,
		Tags = RemoveBullet;RemoveGlass,
	}

See also