Doodle: Difference between revisions

From PZwiki
(PZ Updater automated execution(task: deploy ReLookup, eid: 452ce1aedd985e72e13e59c5c54ec320))
Line 18: Line 18:


== Crafting ==
== Crafting ==
{| class="pztable sortable" style="text-align:center;"
{{Crafting header|ing=2}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 4003 -->
|-
{{Crafting/core|ing=2
! Name
| product_image = [[File:Paper.png|link=Doodle|Doodle]] | product_name = [[Doodle]] | product_quantity = x1
! class="unsortable" | Recipe
| xp = <!-- Not present in the old template. Please fill in manually. -->
! class="unsortable" | Description
| sl = ''none''
{{RecipeLookup|4003}}
| req =
| f1 = [[File:Paper.png|link=Sheet of Paper|Sheet of Paper]] | i1 = [[Sheet of Paper]] | q1 = x1 | tag1 = (consumed)
| f2 = [[File:Pen.png]] | i2 = [[Pen]]<br>or<br>[[Pencil]] | q2 = x1 | tag2 = (consumed)
}}
|}
|}


== Code ==
== Code ==

Revision as of 04:07, 26 March 2022


BoxSmall.png
This feature has been removed from the game.
It has been replaced by something else.

Doodles were removed in Build 28 following the change to the Journal system. The Code is still within the item system but there is no longer a recipe to make a doodle.

Former Description

A quick drawing/message you made with a pencil and a piece of paper, it will take out a medium amount of boredom, stress, and unhappiness. It is crafted by putting a pencil and a sheet of paper in the crafting area. UPDATE: Following patch B27, Doodle can no longer be used to reduce boredom.

Former Effects

Boredom: -10
Stress: -20
Unhappy: -20

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Doodle
Doodle x1
none Sheet of Paper
Sheet of Paper x1
(consumed)
Pen.png
Pen
or
Pencil x1
(consumed)


Code

Code before Removal

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

Current code
From items_literature.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.50

	item Doodle
		Weight		= 0.3,
		Type		= Literature,
		DisplayName	= Doodle,
		Icon		= Paper,
		CanBeWrite  	= true,
		PageToWrite 	= 1,

Template:Navbox/Consumables