Suture Needle Holder: Difference between revisions

From PZwiki
m (Automated {{Languages}} removal.)
m (Automated Formatting)
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Header/sandbox2|Project Zomboid|Items|Equipment|Tools|First aid tools}}
{{Header|Project Zomboid|Items|Equipment|Tools|First aid tools}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Suture Needle Holder
|name=Suture Needle Holder
|model=SutureNeedleHolder_Model.png
|model=SutureNeedleHolder_Model.png
|model_width=200px
|model_width=200px
Line 8: Line 8:
|icon_name=Suture Needle Holder
|icon_name=Suture Needle Holder
|weight=0.1
|weight=0.1
|primary_use=Increase success rate of [[Health#Healing|stitching]]
|primary_use=Reduce pain from [[Health#Healing|stitching]]
|secondary_use=Remove glass and bullets
|secondary_use=Remove glass and bullets
|material=Metal
|material=Metal
|material_value=9
|material_value=9
|tags=RemoveBullet<br>RemoveGlass
|tags=RemoveBullet<br>RemoveGlass
|class_name=Base.SutureNeedleHolder
|item_id=Base.SutureNeedleHolder
}}
}}
{{Quote|text=Used with Suture Needle to improve success-rate of deep wound treatment.|author=In-game tooltip}}
{{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]].
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 [[Broken Glass|glass shards]] and bullets from wounds.
A suture needle holder can also be used to remove [[Broken Glass|glass shards]] and bullets from wounds.
Line 25: Line 25:
Suture Needle Holder is not consumed on use, so you need only one.
Suture Needle Holder is not consumed on use, so you need only one.


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 32: Line 31:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="4"|dentiststorage
|MedicalCache1
| [[metal_shelves]]
|[[MedicalBox]]
| 4
|4
| 1
|1
|-
|rowspan="4"|dentiststorage
|[[metal_shelves]]
|4
|1
|-
|-
|[[metal_shelves]]
|[[metal_shelves]]
Line 54: Line 58:
|2
|2
|-
|-
| rowspan="2"|kennels
|rowspan="2"|kennels
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|-
|-
|[[counter]]
|[[counter]]
Line 63: Line 67:
|2
|2
|-
|-
| rowspan="1"|morgue
|morgue
| [[counter]]
|[[counter]]
| 4
|4
| 1
|1
|}
|}


==Code==
==Code==
{{CodeBox |{{CodeSnip
{{CodeBox |{{CodeSnip
|lang=java |line=true |start=880 |source=newitems.txt
  | lang = java
|retrieved=true |version=41.78.16 |date=2023-09-25
  | line = true
|code=
  | start = 880
    item SutureNeedleHolder
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item SutureNeedleHolder
{
{
    DisplayCategory = FirstAid,
    DisplayCategory = FirstAid,
Line 92: Line 100:
*[[First Aid]]
*[[First Aid]]


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


[[Category:Medical items]]
[[Category:Medical items]]
[[Category:Tools]]
[[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