Suture Needle Holder: Difference between revisions

From PZwiki
mNo edit summary
m (Automated Formatting)
(35 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages|Suture_Needle_Holder}}
{{Header|Project Zomboid|Items|Equipment|Tools|First aid tools}}
{{header|The Game World|Items|Consumables|Medical Items|type=Medical|version=Version 39|incver=67.5}}{{Notice|Obsolete}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = Suture Needle Holder
{{Infobox item
|name_colour=Medical
|name=Suture Needle Holder
|name_text_colour=Medical
|model=SutureNeedleHolder_Model.png
|image = SutureNeedleHolder.png
|model_width=200px
|weight = 0.1
|icon=SutureNeedleHolder.png
|primary_use = Increase success rate of [[Health#Healing|stitching]]
|icon_name=Suture Needle Holder
|secondary_use = Remove glass and bullets
|weight=0.1
|class_name = Base.SutureNeedleHolder
|primary_use=Reduce pain from [[Health#Healing|stitching]]
}}{{quote|text=Used with Suture Needle to improve success-rate of deep wound treatment.|author=In-game tooltip}}A '''suture needle holder''' is an [[item]] used in [[First Aid|first aid]].
|secondary_use=Remove glass and bullets
|material=Metal
|material_value=9
|tags=RemoveBullet<br>RemoveGlass
|item_id=Base.SutureNeedleHolder
}}
{{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]].


==Usage==
==Usage==
A suture needle holder is used to increase the success-rate of [[Health#Healing|stitching]] [[Health#Types of Injuries|deep wounds]] with a suture needle.  
A suture needle holder is used to reduce pain when [[Health#Healing|stitching]] [[Health#Types of injuries|deep wounds]] without a suture needle.


A suture needle holder can also be used to remove glass shards and bullets from wounds.  
A suture needle holder can also be used to remove [[Broken Glass|glass shards]] and bullets from wounds.
 
Suture Needle Holder is not consumed on use, so you need only one.


==Distribution==
==Distribution==
The suture needle holder has been removed from the game and is not obtainable through natural means. The item can still be spawned in through using commands.
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,
}
}}}}


== Code ==
==See also==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
*[[First Aid]]
{{Retrieved|version=39|incver=67.5}}
<pre>    item SutureNeedleHolder
Weight = 0.1,
Type = Normal,
DisplayName = Suture Needle Holder,
Icon = SutureNeedleHolder,
MetalValue = 9,
Tooltip = Tooltip_SutureNeedleHolder,</pre>


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


{{Navbox/Consumables}}
[[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