Doodle

From PZwiki
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Doodle
Empty Notebook Model.png
General
Category
Literature
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Writable
True
Total pages
1 page
Technical
Item ID
Base.Doodle

Doodles are writable literature items. They were used to be craftable and reduce boredom in the past.

Usage

A doodle can be used to write notes, using pen or pencil. Common uses are writing down important reminders, or leave messages in multiplayer servers. A doodle can be renamed[verify] and has a 1 writable page.

In build 27 it used to reduce boredom by 10, stress by 20 and unhapiness by 20. Following build 27, doodle could no longer be used to reduce boredom.

Fuel

It can also be used as a fuel for a fire, and lasts for 10 minutes.[verify]

Crafting

Formerly, a pencil or pen could be used with a sheet of paper, which were then consumed to create a doodle, but this has been removed in build 28.

Distribution

They spawn on desks as a part of table stories.

Trivia

Code

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

Code before removal Base.Doodle
Source: ProjectZomboid\media\scripts\items_literature.txt

item Doodle
		Weight		= 0.3,
		Type		= Literature,
		UnhappyChange	= -10,
		DisplayName	= Doodle,
		StressChange	= -15,
		Icon		= Paper,
		BoredomChange	= -10,

Code after removal Base.Doodle
Source: ProjectZomboid\media\scripts\items_literature.txt

Retrieved: Build 41.78.16
item Doodle
    {
        DisplayCategory = Literature,
        Weight	=	0.3,
        Type	=	Literature,
        DisplayName	=	Doodle,
        Icon	=	Paper,
        CanBeWrite  =   true,
        PageToWrite =   1,
        WorldStaticModel = EmptyNotebook,
    }

See also