Tweezers: Difference between revisions

From PZwiki
m (Distribution table update)
(39 intermediate revisions by 12 users not shown)
Line 1: Line 1:
Tweezers are fairly common medical items that are used to remove glass shards, and bullets. They can be found in [[Medicine cabinets|Medicine Cabinets]] and [[First Aid Kit|First Aid Kits]].
{{Header|Project Zomboid|Items|Equipment|Tools|First aid tools}}
{{Page version|41.78.16}}
{{Infobox item
|name=Tweezers
|model=Tweezers_Model.png
|icon=Tweezers.png
|category=FirstAid
|weight=0.1
|function=Remove glass shards and bullets
|material=Metal
|material_value=1
|tags=RemoveBullet<br>RemoveGlass
|item_id=Base.Tweezers
}}
{{Quote|text=Can be used to extract broken glass and bullets from the body.|author=In-game tooltip}}
'''Tweezers''' are an [[Items|item]] used in [[First Aid|first aid]].


==Usage==
Tweezers are used to remove [[Broken Glass|glass shards]] and bullets from wounds.


[[File:Tweezers.png|thumbnail|right|Tweezers]]
Tweezers are not consumed on use, so you need only one.
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Tweezers|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Tweezers distribution
        <span class="mw-customtoggle-togglebox-Tweezers" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-Tweezers">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | MedicalCache1
    | {{ll|MedicalBox}}
    | 4
    | 10.0
    |-
    | all
    | {{ll|Bag_DoctorBag}}
    | 1
    | 10.0
    |-
    | all
    | {{ll|junk}}
    | 1
    | 10.0
    |-
    | bathroom
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | bathroom
    | {{ll|medicine}}
    | 4
    | 10.0
    |-
    | bathroom
    | {{ll|shelves}}
    | 4
    | 10.0
    |-
    | dentiststorage
    | {{ll|metal_shelves}}
    | 4
    | 20.0
    |-
    | dentiststorage
    | {{ll|metal_shelves}}
    | 4
    | 10.0
    |-
    | kennels
    | {{ll|counter}}
    | 4
    | 20.0
    |-
    | kennels
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | morgue
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | stripclub
    | {{ll|dresser}}
    | 4
    | 10.0
    |}
</div>
<div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Vehicles}}
    ! Vehicle Type/Location
    ! Rolls
    ! Chance
    |-
    | AmbulanceTruckBed
    | 4
    | 10
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Tweezers" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Tweezers|41.78.16-->


==Code==
==Code==
<nowiki>
{{CodeBox |{{CodeSnip
  | lang = java
  | line = true
  | start = 2276
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Tweezers
item Tweezers
{
    {
  Weight = 0.1,
        DisplayCategory = FirstAid,
  Type = Normal,
        Weight = 0.1,
  DisplayName = Tweezers,
        Type = Normal,
  Icon = Tweezers,
        DisplayName = Tweezers,
  Tooltip = Tooltip_UseOnHealthPanel,
        Icon = Tweezers,
}</nowiki>
        Tooltip = Tooltip_Tweezers,
        MetalValue = 1,
        Medical = TRUE,
        WorldStaticModel = Tweezers,
Tags = RemoveBullet;RemoveGlass,
    }
}}}}
 
==See also==
*[[First Aid]]
 
{{Navbox items|equipment}}


[[Category:Items]]
[[Category:Medical items]]
[[Category:Medical Items]]
[[Category:Tools]]

Revision as of 16:54, 24 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]
Tweezers
Tweezers Model.png
General
Category
FirstAid
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Remove glass shards and bullets
Properties
Material
Metal
Metal quantity
1
Technical
Tags
RemoveBullet
RemoveGlass
Item ID
Base.Tweezers
Can be used to extract broken glass and bullets from the body.
— In-game tooltip

Tweezers are an item used in first aid.

Usage

Tweezers are used to remove glass shards and bullets from wounds.

Tweezers are not consumed on use, so you need only one.

Distribution

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

Tweezers distribution Show / Hide
Containers
Building / Room Container Rolls Chance
MedicalCache1 MedicalBox 4 10.0
all Bag_DoctorBag 1 10.0
all junk 1 10.0
bathroom counter 4 10.0
bathroom medicine 4 10.0
bathroom shelves 4 10.0
dentiststorage metal_shelves 4 20.0
dentiststorage metal_shelves 4 10.0
kennels counter 4 20.0
kennels counter 4 10.0
morgue counter 4 10.0
stripclub dresser 4 10.0
Vehicles
Vehicle Type/Location Rolls Chance
AmbulanceTruckBed 4 10

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 Tweezers
    {
        DisplayCategory = FirstAid,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Tweezers,
        Icon	=	Tweezers,
        Tooltip = Tooltip_Tweezers,
        MetalValue = 1,
        Medical = TRUE,
        WorldStaticModel = Tweezers,
		Tags = RemoveBullet;RemoveGlass,
    }

See also