Wooden Chair: Difference between revisions

From PZwiki
m (Automated navbox update)
(Version bump, rm stub, add code, body changes)
Line 1: Line 1:
{{Header|Project Zomboid|Tiles|Comfort tiles}}
{{Header|Project Zomboid|Tiles|Comfort tiles}}
{{Page version|40.43}}
{{Page version|41.78.16}}
{{Stub}}
{{Infobox tile
{{Infobox tile
|name = Wooden Chair
|name = Wooden Chair
Line 23: Line 22:
|build_level = 2
|build_level = 2
|build_tool_tag = Hammer
|build_tool_tag = Hammer
|ingredients = <small>1 × [[File:Plank.png|20px|link=Plank]] [[Plank]]<br>5 × [[File:Nails.png|20px|link=Nails]] [[Nails]]</small>
|ingredients = <small>5 × [[File:Plank.png|20px|link=Plank]] [[Plank]]<br>4 × [[File:Nails.png|20px|link=Nails]] [[Nails]]</small>
<!--Move-->
<!--Move-->
|move_skill = [[Carpentry]]
|move_skill = [[Carpentry]]
Line 35: Line 34:
|products =
|products =
<!--Technical details-->
<!--Technical details-->
|tile_id = Base.Movable
|item_id = Base.Movable
|tile_id = furniture_seating_indoor_02_5
}}
}}


Line 42: Line 42:


==Usage==
==Usage==
Currently the wooden chair is an item that the player is able to construct if they meet the necessary requirements. Chairs give a small amount of crafting experience and can be disassembled to reclaim the planks. The chair can be used to rest to regain stamina faster. The chair's sleeping quality is Bad, making it a poor choice to sleep on.
The wooden chair is a furniture tile that can be crafted by the player. It can be used to rest, which will regain stamina faster. The chair's [[Sleep|sleeping]] quality is bad. It can also be used as a decorative item to increase realism and immersion for the player.


==Crafting==
==Crafting==
===Carpentry===
===Carpentry===
{{Main|Carpentry}}
{{Main|Carpentry}}
Line 51: Line 50:
{{Crafting carpentry|307|ing=3}}
{{Crafting carpentry|307|ing=3}}
|}
|}
'''Crafting skill'''
 
{| class="wikitable theme-red" style="text-align:center;"
{| class="wikitable theme-red" style="text-align:center;"
! style="width: 150px;" | Name
! style="width: 150px;" | Name
Line 59: Line 58:
| Makeshift Chair
| Makeshift Chair
| [[File:Wooden_Chair1.png|64px|Makeshift Chair]]
| [[File:Wooden_Chair1.png|64px|Makeshift Chair]]
| [[Carpentry]] 0
| [[Carpentry]] 2
|-
|-
| Poor Quality Chair
| Poor Quality Chair
Line 70: Line 69:
|}
|}


{{Clear}}
==Code==
{{CodeBox|
{{CodeSnip
  | lang = java
  | line = true
  | start = 183
  | source = newMovables.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Mov_WoodenChair
{
DisplayCategory = Furniture,
Type = Moveable,
Icon = default,
Weight   = 0.5,
DisplayName = Wooden Chair,
WorldObjectSprite = furniture_seating_indoor_02_5,
}
}}
}}


==See also==
==See also==
*[[Carpentry]]
*[[Carpentry]]
*[[Furniture]]
*[[Furniture]]
*[[Large Table]]


{{Navbox construction|carpentry}}
{{Navbox construction|carpentry}}

Revision as of 23:54, 11 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Wooden Chair
Wooden Chair1.png
Wooden Chair2.png
Wooden Chair3.png
[[File:{{{icon4}}}|Wooden Chair|]]
[[File:{{{icon5}}}|Wooden Chair|]]
General
Category
Movable
EncumbranceMoodle Icon HeavyLoad.png
7.5
Size
1 tile
Function
Rest
Properties
Type
Chair
Build
Skill (level)
Tool(s)
Ingredients
5 × Plank.png Plank
4 × Nails.png Nails
Move
Skill (level)
Tool(s)
Disassemble
Skill (level)
Technical
Item ID(s)
Base.Movable
Tile ID(s)
furniture_seating_indoor_02_5
Rest those weary, infected legs.
— In-game description

A wooden chair is a craftable piece of furniture.

Usage

The wooden chair is a furniture tile that can be crafted by the player. It can be used to rest, which will regain stamina faster. The chair's sleeping quality is bad. It can also be used as a decorative item to increase realism and immersion for the player.

Crafting

Carpentry

Main article: Carpentry
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
WoodenChair Carpentry.gif
Wooden Chair
0.75 Carpentry Carpentry 2 Hammer.png
Hammer (tag)
(keep)
Plank.png
Plank x5
(consumed)
Nails.png
Nails x4
(consumed)
Name Sprite Level
Makeshift Chair Makeshift Chair Carpentry 2
Poor Quality Chair Poor Quality Chair Carpentry 4
Exceptionally Crafted Chair Exceptionally Crafted Chair Carpentry 7

Code

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

Source: ProjectZomboid\media\scripts\newMovables.txt

Retrieved: Build 41.78.16
item Mov_WoodenChair
	{
		DisplayCategory = Furniture,
		Type			= Moveable,
		Icon			= default,
		Weight		  	= 0.5,
		DisplayName		= Wooden Chair,
		WorldObjectSprite	= furniture_seating_indoor_02_5,
	}

See also