Table with Drawer: Difference between revisions

From PZwiki
m (→‎Usage: minor)
(Update names, add trivia, add entries to see also)
Line 5: Line 5:
|model = Table_with_Drawer1.png
|model = Table_with_Drawer1.png
|icon = Table_with_Drawer1.png
|icon = Table_with_Drawer1.png
|icon_name = Shoddy Table
|icon_name = Poorly Crafted Table
|model2 = Table_with_Drawer2.png
|model2 = Table_with_Drawer2.png
|icon2 = Table_with_Drawer2.png
|icon2 = Table_with_Drawer2.png
|icon_name2 = Medium Table
|icon_name2 = Crafted Table with Drawer
|model3 = Table_with_Drawer3.png
|model3 = Table_with_Drawer3.png
|icon3 = Table_with_Drawer3.png
|icon3 = Table_with_Drawer3.png
|icon_name3 = Quality Table
|icon_name3 = Quality Crafted Table with Drawer
|category = Movable
|category = Movable
|weight = 5
|weight = 5
Line 49: Line 49:


==Crafting==
==Crafting==
Crafting requires a [[Skills|carpentry skill]] of 5.
Crafting requires a [[carpentry]] skill of 5.


===Carpentry===
===Carpentry===
Line 57: Line 57:
|}
|}
'''Crafting skill'''
'''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
! style="width: 80px;" | Sprite
! style="width: 80px;" | Sprite
! style="width: 120px;" | Level
! style="width: 120px;" | Level
|-
|-
| Shoddy Table
| Poorly Crafted Table
| [[File:Table_with_Drawer1.png|64px|Shoddy Table]]
| [[File:Table_with_Drawer1.png|64px|Poorly Crafted Table]]
| [[Carpentry]] 0
| [[Carpentry]] 0
|-
|-
| Quality Table
| Crafted Table with Drawer
| [[File:Table_with_Drawer2.png|64px|Quality Table]]
| [[File:Table_with_Drawer2.png|64px|Crafted Table with Drawer]]
| [[Carpentry]] 4
| [[Carpentry]] 4
|-
|-
| Medium Counter
| Quality Crafted Table with Drawer
| [[File:Table_with_Drawer3.png|64px|Medium Counter]]
| [[File:Table_with_Drawer3.png|64px|Quality Crafted Table with Drawer]]
| [[Carpentry]] 7
| [[Carpentry]] 7
|}
|}
==Trivia==
*Currently, [https://github.com/TheIndieStone/ProjectZomboidTranslations/issues/383 due to a shared string], Poorly Crafted Table string is used for two items, the other being a [[Small Table|small table]].


==Code==
==Code==
Line 109: Line 112:
*[[Containers]]
*[[Containers]]
*[[Furniture]]
*[[Furniture]]
*[[Small Table]]
*[[Large Table]]


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

Revision as of 22:15, 21 March 2024

Project ZomboidTilesContainer tilesTable with Drawer
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Table with Drawer
Table with Drawer1.png
Table with Drawer2.png
Table with Drawer3.png
[[File:{{{icon4}}}|Table with Drawer|]]
[[File:{{{icon5}}}|Table with Drawer|]]
General
Category
Movable
EncumbranceMoodle Icon HeavyLoad.png
5
Size
1 tile
Properties
TypeCrate
Container
Capacity
10
Build
Skill (level)
Tool(s)
Ingredients
5 × Plank.png Plank
4 × Nails.png Nails
1 × Drawer.png Drawer
Move
Skill (level)
Tool(s)
Disassemble
Skill (level)
Tool(s)
Technical
Item ID(s)
Movables.{TileID}
Tile ID(s)
carpentry_02_0 carpentry_02_4 carpentry_02_8
Comes with a drawer to keep useful gear inside.
— In-game description

A table with drawer is a craftable container.

Usage

A table with drawer can be used to store up to 10 encumbrance worth of items. Due to its minimal storage, this container is used more for aesthetic purposes than practical reasons.

Crafting

Crafting requires a carpentry skill of 5.

Carpentry

Main article: Carpentry
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4
TablewithDrawer Carpentry.gif
Table with Drawer
1.25 Carpentry Carpentry 5 Hammer.png
Hammer (tag)
(keep)
Plank.png
Plank x5
(consumed)
Nails.png
Nails x4
(consumed)
Drawer.png
Drawer x1
(consumed)

Crafting skill

Name Sprite Level
Poorly Crafted Table Poorly Crafted Table Carpentry 0
Crafted Table with Drawer Crafted Table with Drawer Carpentry 4
Quality Crafted Table with Drawer Quality Crafted Table with Drawer Carpentry 7

Trivia

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide
Retrieved: Build 41.78.16
local drawerSprite = ISBuildMenu.getTableWithDrawerSprites(player);
	local drawerTableOption = subMenuTable:addOption(getText("ContextMenu_Table_with_Drawer"), worldobjects, ISBuildMenu.onSmallWoodTableWithDrawer, square, drawerSprite, player);
	local tooltip3 = ISBuildMenu.canBuild(5,4,0,0,0,5,drawerTableOption, player);
	-- we add that we need a Drawer too
	local drawer = ISBuildMenu.countMaterial(player, "Base.Drawer");
	if not playerInv:containsTypeRecurse("Drawer") then
		tooltip3.description = tooltip3.description .. ISBuildMenu.bhs .. getItemNameFromFullType("Base.Drawer") .. " " .. drawer .. "/1 <LINE>";
		if not ISBuildMenu.cheat then
			drawerTableOption.onSelect = nil;
			drawerTableOption.notAvailable = true;
		end
	else
		tooltip3.description = tooltip3.description .. ISBuildMenu.ghs .. getItemNameFromFullType("Base.Drawer") .. " " .. drawer .. "/1 <LINE>";
	end
	tooltip3:setName(getText("ContextMenu_Table_with_Drawer"));
	tooltip3.description = getText("Tooltip_craft_tableDrawerDesc") .. tooltip3.description;
	tooltip3:setTexture(drawerSprite.sprite);
	ISBuildMenu.requireHammer(drawerTableOption)

See also