Wooden Chair: Difference between revisions

From PZwiki
mNo edit summary
m (Automated Formatting)
 
(28 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Tiles|Comfort tiles}}
{{Notice|Improve}}
{{Page version|41.78.16}}
{{Items
{{Infobox tile
|image = Wooden chairA.png  
|name=Wooden Chair
|weight = ?
|model=Wooden_Chair1.png
}} <!--/infobox-->
|icon=Wooden_Chair1.png
A wooden chair.  
|icon_name=Makeshift Chair
|model2=Wooden_Chair2.png
|icon2=Wooden_Chair2.png
|icon_name2=Poor Quality Chair
|model3=Wooden_Chair3.png
|icon3=Wooden_Chair3.png
|icon_name3=Exceptionally Crafted Chair
|category=Movable
|weight=7.5
|size=1
<!--Properties-->
|type=Chair
|function=Rest
<!--Build-->
|build_skill=[[Carpentry]]
|build_level=2
|build_tool_tag=Hammer
|ingredients=<small>5 × [[File:Plank.png|20px|link=Plank]] [[Plank]]<br>4 × [[File:Nails.png|20px|link=Nails]] [[Nails]]</small>
<!--Move-->
|move_skill=[[Carpentry]]
|move_level=0
|move_tool_tag=Hammer
<!--Disassemble-->
|disassemble_skill=[[Carpentry]]
|disassemblelevel=0
|disassemble_tool_tag=Hammer
|disassemble_tool2=[[Screwdriver]]
<!--Technical details-->
|item_id=Movables.{TileID}
|tile_id=carpentry_01_36
|tile_id2=carpentry_01_40
|tile_id3=carpentry_01_45
}}
{{Quote|text=Rest those weary, infected legs.|author=In-game description}}
A '''wooden chair''' is a [[crafting|craftable]] piece of [[furniture]].


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 only serves as a decorative piece at this point in time. It can not actually be sat in.
==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 [[Sleep|sleeping]] quality is bad. It can also be used as a decorative item to increase realism and immersion for the player.


== Crafting ==
==Crafting==
{| class="wikitable sortable" style="text-align:center;"  
===Carpentry===
|-
{{Main|Carpentry}}
! Name  
{{Crafting/sandbox2
! class="unsortable" | Recipe
|wooden_chair
! class="unsortable" | Description
}}
{{RecipeLookup|1016}}
 
{| class="wikitable theme-red" style="text-align:center;"
! style="width: 150px;" | Name
! style="width: 80px;" | Sprite
! style="width: 120px;" | Level
|-
| Makeshift Chair
| [[File:Wooden_Chair1.png|64px|Makeshift Chair]]
| [[Carpentry]] 2
|-
| Poor Quality Chair
| [[File:Wooden_Chair2.png|64px|Poor Quality Chair]]
| [[Carpentry]] 4
|-
| Exceptionally Crafted Chair
| [[File:Wooden_Chair3.png|64px|Exceptionally Crafted Chair]]
| [[Carpentry]] 7
|}
|}


==Code==
{{CodeBox|
{{CodeSnip
  | lang = java
  | line = true
  | start = 183
  | source = newMoveables.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==
*[[Carpentry]]
*[[Furniture]]
*[[Large Table]]
{{Navbox construction|carpentry}}


[[Category:items]]
[[Category:Carpentry]]
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Seat Yourself Furniture (Project)]]

Latest revision as of 13:26, 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]
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)
Movables.{TileID}
Tile ID(s)
carpentry_01_36 carpentry_01_40 carpentry_01_45
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 Ingredients Tools Requirements Workstation XP
WoodenChair Carpentry.gif
Wooden Chair
Plank.png Plank ×5
Nails.png Nails ×4

Hammer.png
Hammer (tag)
Carpentry 2 none 0.75 Carpentry
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\newMoveables.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