Splint: Difference between revisions

From PZwiki
(Redesigned page, + Navbox, + categories, confirmed info on splint was correct. + link to first aid)
m (Automated Formatting)
 
(30 intermediate revisions by 10 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Medical items}}
{{languages|Splint}}
{{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=Splint
<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=Splint_Model.png
{{Medical
|icon=Splint.png
|image = Splint.png
|category=FirstAid
|primaryuse= Scaffold a Broken Bone
|weight=1
|bandagepower = 0.0
|function=Quicken [[Health#Types of Injuries|fracture]] healing
|alcoholpower = 0.0
|item_id=Base.Splint
|weight = 1.0
}}
}}
A '''Splint''' is a crafted medical item can be used to heal a [[First_Aid#First_Aid_Flow|fracture]]. To apply a splint, right click the red fracture text in your [[health]] panel.
{{Quote|text=Aids recovery from broken bones. Reduces time taken to heal.|author=In-game tooltip.}}
A '''splint''' is an [[Items|item]] used in [[First Aid|first aid]].
 
==Usage==
The splint is used to reduce the time taken to heal a [[First_Aid#First_Aid_Flow|fracture]]. To apply a splint, right-click the red fracture text in the [[health]] panel, also splints make fractures heal 10x faster.
 
===Fracture===
{{Main|Health#Fracture}}
Fractures are often caused by falling from great heights, which greatly reduces the player's movement speed. A fracture will heal on its own over time, however a splint can be used to reduce this greatly, by approximately 10-fold. Each first aid level of the applying player will increase the healing rate by an additional factor of 5. This can be improved further with the use of a [[Comfrey Poultice|comfrey poultice]]. Upon successfully healing a fracture, the player will receive first aid experience.
 
==Crafting==
==Crafting==
{| class="wikitable sortable" style="text-align:center;"
{{Crafting/sandbox2
|-
|splint
! class="unsortable" | Output
}}
! class="unsortable" | Ingredients
 
! class="unsortable" | Description
==Distribution==
! class="unsortable" | Skill Level
Splints cannot be found in the [[Knox Country|world]] and therefore can only be obtained through [[crafting]].
{{RecipeLookup|8003}}
 
|}
== Code ==
''Splint'' [[File:Splint.png]]
<nowiki>
    item Splint
        Weight = 1,
        Type = Normal,
        DisplayName = Splint,
        Icon = Splint,
        Tooltip = Tooltip_UseOnHealthPanel,
</nowiki>
==Trivia==
==Trivia==
*Since the weight of a splint is 1.0, it is technically heavier to hold a crafted one than carry it's individual parts, however, this only holds true for using a Sturdy Stick or Tree Branch to craft it.
*Since the weight of a splint is 1.0, it is technically heavier to hold a crafted one than carry its individual parts, however, this only holds true for using a [[Sturdy Stick]] or [[Tree Branch]] to craft it.
 
==Code==
{{CodeBox |{{CodeSnip
  | lang = java
  | line = true
  | start = 2232
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Splint
    {
        DisplayCategory = FirstAid,
        Weight = 1,
        Type = Normal,
        DisplayName = Splint,
        Icon = Splint,
        Tooltip = Tooltip_Splint,
        MetalValue = 1,
        Medical = TRUE,
        WorldStaticModel = Splint,
    }
}}}}


== See Also ==
==See also==
[[First_Aid|General First Aid]]
*[[First Aid]]


{{Navbox/Consumables}}
{{Navbox items|medical}}
[[Category:Consumables]]
[[Category:Medical Items]]
[[Category:Items]]
[[Category:Version 34.28]]

Latest revision as of 12:21, 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]
Splint
Splint Model.png
General
Category
FirstAid
Encumbrance
Moodle Icon HeavyLoad.png
1
Function
Quicken fracture healing
Technical
Item ID
Base.Splint
Aids recovery from broken bones. Reduces time taken to heal.
— In-game tooltip.

A splint is an item used in first aid.

Usage

The splint is used to reduce the time taken to heal a fracture. To apply a splint, right-click the red fracture text in the health panel, also splints make fractures heal 10x faster.

Fracture

Main article: Health

Fractures are often caused by falling from great heights, which greatly reduces the player's movement speed. A fracture will heal on its own over time, however a splint can be used to reduce this greatly, by approximately 10-fold. Each first aid level of the applying player will increase the healing rate by an additional factor of 5. This can be improved further with the use of a comfrey poultice. Upon successfully healing a fracture, the player will receive first aid experience.

Crafting

Product Ingredients Tools Requirements Workstation XP
Splint.png
Splint
One of:
Plank.png Plank ×1
Branch.png Tree Branch ×1
TZ WoodenStick.png Sturdy Stick ×1
One of:
Rag.png Ripped Sheets ×1
RagDirty.png Dirty Rag ×1
none none none none

Distribution

Splints cannot be found in the world and therefore can only be obtained through crafting.

Trivia

  • Since the weight of a splint is 1.0, it is technically heavier to hold a crafted one than carry its individual parts, however, this only holds true for using a Sturdy Stick or Tree Branch to craft it.

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 Splint
    {
        DisplayCategory = FirstAid,
        Weight	=	1,
        Type	=	Normal,
        DisplayName	=	Splint,
        Icon	=	Splint,
        Tooltip = Tooltip_Splint,
        MetalValue = 1,
        Medical = TRUE,
        WorldStaticModel = Splint,
    }

See also