Pillow: Difference between revisions

From PZwiki
m (minor)
(34 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages|Pillow}}
{{Header|Project Zomboid|Items|Materials}}
{{header|The Game World|Items|type=Construction|version=Version 39|incver=67.5}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = Pillow
{{Infobox item
|name_colour = Construction
|name=Pillow
|name_text_colour = Construction
|model=Pillow_Model.png
|image = Pillow.png
|icon=Pillow.png
|weight = 0.8
|icon_name=Pillow
|primary_use = Make [[mattress]]
|category=Material
|secondary_use = Smother [[Kate Smith|Kate]] <sup style="color:red">[[Version history#0.2.0r_RC2.5|(0.2.0r)]]</sup>
|weight=0.8
|class_name = Base.Pillow
|primary_use=Craft [[mattress]]es
}}A '''pillow''' is an item used in [[Carpentry Guide|Carpentry]].  
|item_id=Base.Pillow
}}
A '''pillow''' is an item used in [[carpentry]].


== Usage ==
==Usage==
The only current use is to [[#Crafting|craft]] a [[mattress]].
The only current use is to [[#Crafting|craft]] a [[mattress]].
{{clear}}
== 'Til Death Us Do Part ==
{{Main|'Til Death Us Do Part}}{{Spoilers}}
Prior to the removal of [[NPC]]s post [[Version history#0.2.0r_RC2.5|0.2.0r]], the pillow could be used to smother [[Bob Smith|Bob's]] wife, [[Kate Smith|Kate]]. This was a way for the player to skip the [[tutorial]].


This feature is expected to return with the addition of NPCs.
In [[build 42]], pillows are supposed to be decrease the chance of neck pain when [[sleep]]ing on low quality beds.{{sup|future}}<ref>[https://projectzomboid.com/blog/news/2023/03/eine-kleine-nachtmoozik/ eine kleine nachtmooZik - Project Zomboid]</ref>


== Crafting ==
==Crafting==
{{Crafting table header}}
{{Crafting/sandbox2
{{RecipeLookup|4015}}
|mattress
{{Crafting table footer}}
}}


== Distribution ==
==Distribution==
Pillows can be found in [[Containers#Bedroom Storage|wardrobes]] in bedrooms.  
The loot distributions can be found in the table(s) below.


== Code ==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
! colspan="4" | Containers
{{Retrieved|version=[[Steam#.27I_Will_Back_Up_My_Save.27_branch|41.27 IWBUMS]]}}
|-
<nowiki> item Pillow
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="5"|all
|[[wardrobe]]
|4
|8
|-
|[[wardrobe]]
|4
|8
|-
|[[wardrobe]]
|4
|8
|-
|[[wardrobe]]
|4
|8
|-
|[[wardrobe]]
|4
|8
|-
|rowspan="3"|bedroom
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|[[wardrobe]]
|4
|8
|-
|departmentstorage
|[[metal_shelves]]
|4
|1
|-
|rowspan="2"|motelroom
|[[metal_shelves]]
|4
|1
|-
|[[metal_shelves]]
|4
|2
|}
 
==Trivia==
*Prior to the removal of [[NPC]]s post [[Version history#0.2.0r RC2.5|0.2.0r]], the pillow could be used to smother [[Bob Smith|Bob]]'s wife, [[Kate Smith|Kate]]. This was a way for the player to skip the [[tutorial]].
 
==Code==
{{CodeBox|
{{CodeSnip
  | lang = java
  | line = true
  | start = 342
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Pillow
{
{
    DisplayCategory = Material,
Weight = 0.8,
Weight = 0.8,
Type = Normal,
Type = Normal,
Line 38: Line 104:
Icon = Pillow,
Icon = Pillow,
StaticModel = Pillow,
StaticModel = Pillow,
}</nowiki>
WorldStaticModel = Pillow_Ground,
}
}}
}}
 
==See also==
*[[Carpentry]]
*[[Mattress]]
 
{{Navbox items|carpentry_materials}}


== See also ==
==References==
* [[Carpentry Guide]]
<References />


[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Spiffo's Construction Crew (Project)]]

Revision as of 20:41, 19 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]
Pillow
Pillow Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Function
Technical
Item ID
Base.Pillow

A pillow is an item used in carpentry.

Usage

The only current use is to craft a mattress.

In build 42, pillows are supposed to be decrease the chance of neck pain when sleeping on low quality beds.Future[1]

Crafting

Product Ingredients Tools Requirements Workstation XP
Mattress.png
Mattress
Thread.png Thread ×2 unit(s)
Sheet.png Sheet ×5
Pillow.png Pillow ×5

Needle.png
Needle (tag)
none none none

Distribution

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

Containers
Building/Room Container Rolls Chance
all wardrobe 4 8
wardrobe 4 8
wardrobe 4 8
wardrobe 4 8
wardrobe 4 8
bedroom crate 4 1
crate 4 2
wardrobe 4 8
departmentstorage metal_shelves 4 1
motelroom metal_shelves 4 1
metal_shelves 4 2

Trivia

  • Prior to the removal of NPCs post 0.2.0r, the pillow could be used to smother Bob's wife, Kate. This was a way for the player to skip the tutorial.

Code

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Pillow
	{
	    DisplayCategory = Material,
		Weight	=	0.8,
		Type	=	Normal,
		DisplayName	=	Pillow,
		Icon	=	Pillow,
		StaticModel = Pillow,
		WorldStaticModel = Pillow_Ground,
	}

See also

References