Pillow: Difference between revisions

From PZwiki
mNo edit summary
m (minor)
(45 intermediate revisions by 13 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Materials}}
{{Items
{{Page version|41.78.16}}
|image = Pillow.png
{{Infobox item
|weight = 0.8
|name=Pillow
}}  
|model=Pillow_Model.png
The '''pillow''' can be found in the [[wardrobe]] at the beginning of the [[tutorial]]. It is only used if you wish to skip the tutorial. This is done by using the pillow to suffocate Kate when she is in bed.
|icon=Pillow.png
It is also used for crafting a [[mattress]].
|icon_name=Pillow
|category=Material
|weight=0.8
|primary_use=Craft [[mattress]]es
|item_id=Base.Pillow
}}
A '''pillow''' is an item used in [[carpentry]].


Using the '''pillow''' will place a [[picture of Kate]] into your inventory, which currently serves no purpose apart from having it for sentimental and aesthetic reasons.
==Usage==
The only current use is to [[#Crafting|craft]] a [[mattress]].


Some players have expressed confusion over the suffocation of Kate when they first play. They state that they were just trying to make her more comfortable, resulting in many humorous situations.
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==
{| class="wikitable sortable" style="text-align:center;"  
{{Crafting/sandbox2
|-  
|mattress
! Name
}}
! class="unsortable" | Recipe
 
! class="unsortable" | Description
==Distribution==
{{RecipeLookup|4015}}
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! 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
|}
|}


== Code ==
==Trivia==
<nowiki>item Pillow
*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]].
{
 
Type = Normal,
==Code==
DisplayName = Pillow,
{{CodeBox|
Icon = Pillow,
{{CodeSnip
Weight = 0.8
  | lang = java
}</nowiki>
  | line = true
[[Category:Version 0.2.0p]]
  | start = 342
[[Category:Unique]]
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Pillow
{
    DisplayCategory = Material,
Weight = 0.8,
Type = Normal,
DisplayName = Pillow,
Icon = Pillow,
StaticModel = Pillow,
WorldStaticModel = Pillow_Ground,
}
}}
}}
 
==See also==
*[[Carpentry]]
*[[Mattress]]
 
{{Navbox items|carpentry_materials}}
 
==References==
<References />
 
[[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